diff options
| author | chrislu <chris.lu@gmail.com> | 2022-02-18 00:47:15 -0800 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2022-02-18 00:47:15 -0800 |
| commit | d62370d4e0ceaacce64e990d234e86605676729c (patch) | |
| tree | 9d12eb06b390857bab970fbfaa2fbe7279483f72 | |
| parent | e8ce30fdc591df1cb86e7923e851414ca37453b3 (diff) | |
| download | seaweedfs-d62370d4e0ceaacce64e990d234e86605676729c.tar.xz seaweedfs-d62370d4e0ceaacce64e990d234e86605676729c.zip | |
add todo
| -rw-r--r-- | weed/mount/weedfs_file_io.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/weed/mount/weedfs_file_io.go b/weed/mount/weedfs_file_io.go index 7c8d1babc..8ecf5039f 100644 --- a/weed/mount/weedfs_file_io.go +++ b/weed/mount/weedfs_file_io.go @@ -64,6 +64,7 @@ func (wfs *WFS) Open(cancel <-chan struct{}, in *fuse.OpenIn, out *fuse.OpenOut) fileHandle, code := wfs.AcquireHandle(in.NodeId, in.Uid, in.Gid) if code == fuse.OK { out.Fh = uint64(fileHandle.fh) + // TODO https://github.com/libfuse/libfuse/blob/master/include/fuse_common.h#L64 } return code } |
