Commit e967133e authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

Document PathFilesystemConnector a bit more.

parent 9fe49c6f
package fuse
/*
PathFilesystemConnector is a lowlevel FUSE filesystem that translates
from inode numbers (as delivered by the kernel) to traditional path
names. The paths are then used as arguments for methods of
PathFilesystem instances.
PathFilesystemConnector supports mounts of different PathFilesystem
on top of each other's directories.
General todos:
- We are doing lookups (incurring GetAttr() costs) for internal
lookups (eg. after doing a symlink). We could probably do without
the GetAttr calls.
*/
import (
"fmt"
"log"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment