diff options
| author | chrislu <chris.lu@gmail.com> | 2022-02-13 06:02:21 -0800 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2022-02-13 06:02:21 -0800 |
| commit | 24290fed9d7f827b1098408fa291818b778740c5 (patch) | |
| tree | c0703c10b2b45a570c07a7db7a3e5ad4a290256c | |
| parent | 6200b6abb10eb2559166be8890718102ad8b4c1c (diff) | |
| download | seaweedfs-24290fed9d7f827b1098408fa291818b778740c5.tar.xz seaweedfs-24290fed9d7f827b1098408fa291818b778740c5.zip | |
add comments
| -rw-r--r-- | weed/mount/weedfs_file_mkrm.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/weed/mount/weedfs_file_mkrm.go b/weed/mount/weedfs_file_mkrm.go index 089cb540d..218ce24f1 100644 --- a/weed/mount/weedfs_file_mkrm.go +++ b/weed/mount/weedfs_file_mkrm.go @@ -21,6 +21,9 @@ import ( * will be called instead. */ func (wfs *WFS) Create(cancel <-chan struct{}, in *fuse.CreateIn, name string, out *fuse.CreateOut) (code fuse.Status) { + // if implemented, need to use + // inode := wfs.inodeToPath.Lookup(entryFullPath) + // to ensure nlookup counter return fuse.ENOSYS } |
