diff options
author | Jakob Unterwurzacher | 2018-07-01 15:48:53 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2018-07-01 20:56:22 +0200 |
commit | 1a18d8e6098633f27c228f6ebce8881a061df54c (patch) | |
tree | 971092918f01b2754d0e13ebfa6a3c3cc8587378 /fsck.go | |
parent | 283184dd5aed89b19c15cbc9ca9ec23d96784049 (diff) |
fsck: rename "CorruptItems" channel to "MitigatedCorruptions"
Make it clear that this channel is only used to report corruptions
that are transparently mitigated and do not return an error to
the user.
Diffstat (limited to 'fsck.go')
-rw-r--r-- | fsck.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -38,7 +38,7 @@ func (ck *fsckObj) dir(path string) { go func() { for { select { - case item := <-ck.fs.CorruptItems: + case item := <-ck.fs.MitigatedCorruptions: fmt.Printf("fsck: corrupt entry in dir %q: %q\n", path, item) ck.markCorrupt(filepath.Join(path, item)) case <-done: @@ -102,7 +102,7 @@ func (ck *fsckObj) file(path string) { go func() { for { select { - case item := <-ck.fs.CorruptItems: + case item := <-ck.fs.MitigatedCorruptions: fmt.Printf("fsck: corrupt file %q (inode %s)\n", path, item) ck.markCorrupt(path) case <-done: @@ -132,7 +132,7 @@ func (ck *fsckObj) xattrs(path string) { go func() { for { select { - case item := <-ck.fs.CorruptItems: + case item := <-ck.fs.MitigatedCorruptions: fmt.Printf("fsck: corrupt xattr name on file %q: %q\n", path, item) ck.markCorrupt(path + " xattr:" + item) case <-done: @@ -164,7 +164,7 @@ func fsck(args *argContainer) { args.allow_other = false pfs, wipeKeys := initFuseFrontend(args) fs := pfs.(*fusefrontend.FS) - fs.CorruptItems = make(chan string) + fs.MitigatedCorruptions = make(chan string) ck := fsckObj{ fs: fs, } |