errorFS.LookUpInode

geesefs-0-30-9
Aaron Jacobs 2015-08-04 08:45:51 +10:00
parent c71b2cbf33
commit 54db03b63d
1 changed files with 27 additions and 5 deletions

View File

@ -31,6 +31,12 @@ const FooContents = "xxxx"
const fooInodeID = fuseops.RootInodeID + 1
var fooAttrs = fuseops.InodeAttributes{
Nlink: 1,
Size: uint64(len(FooContents)),
Mode: 0444,
}
// A file system whose sole contents are a file named "foo" containing the
// string defined by FooContents.
//
@ -103,11 +109,7 @@ func (fs *errorFS) GetInodeAttributes(
}
case op.Inode == fooInodeID:
op.Attributes = fuseops.InodeAttributes{
Nlink: 1,
Size: uint64(len(FooContents)),
Mode: 0444,
}
op.Attributes = fooAttrs
default:
err = fmt.Errorf("Unknown inode: %d", op.Inode)
@ -116,3 +118,23 @@ func (fs *errorFS) GetInodeAttributes(
return
}
// LOCKS_EXCLUDED(fs.mu)
func (fs *errorFS) LookUpInode(
ctx context.Context,
op *fuseops.LookUpInodeOp) (err error) {
if fs.transformError(op, &err) {
return
}
// Is this a known inode?
if !(op.Parent == fuseops.RootInodeID && op.Name == "foo") {
err = syscall.ENOENT
return
}
op.Entry.Child = fooInodeID
op.Entry.Attributes = fooAttrs
return
}