aboutsummaryrefslogtreecommitdiff
path: root/internal/inomap
diff options
context:
space:
mode:
authorJakob Unterwurzacher2020-05-03 19:59:47 +0200
committerJakob Unterwurzacher2020-05-03 20:01:12 +0200
commit91f5c242a8f4527f3266c09d7f18ff997593bafa (patch)
tree9cc0c8561b8e8c173cf079e85f47ba0636c99913 /internal/inomap
parent518771e4e247762f60c5594de427a8c86f19bd57 (diff)
inomap: remove leftover debug output
This was committed by accident.
Diffstat (limited to 'internal/inomap')
-rw-r--r--internal/inomap/inomap.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/internal/inomap/inomap.go b/internal/inomap/inomap.go
index 0ca43e4..d3177ae 100644
--- a/internal/inomap/inomap.go
+++ b/internal/inomap/inomap.go
@@ -15,7 +15,6 @@
package inomap
import (
- "fmt"
"log"
"sync"
"syscall"
@@ -73,9 +72,6 @@ func (m *InoMap) spill(in QIno) (out uint64) {
func (m *InoMap) Translate(in QIno) (out uint64) {
m.Lock()
defer m.Unlock()
- defer func() {
- fmt.Printf("Translate: %v -> %d\n", in, out)
- }()
if in.Ino > maxPassthruIno {
out = m.spill(in)