fileDescription is embedded by gofer implementations of vfs.FileDescriptionImpl. +stateify savable
| 2270 | // |
| 2271 | // +stateify savable |
| 2272 | type fileDescription struct { |
| 2273 | vfsfd vfs.FileDescription |
| 2274 | vfs.FileDescriptionDefaultImpl |
| 2275 | vfs.LockFD |
| 2276 | |
| 2277 | lockLogging sync.Once `state:"nosave"` |
| 2278 | } |
| 2279 | |
| 2280 | func (fd *fileDescription) filesystem() *filesystem { |
| 2281 | return fd.vfsfd.Mount().Filesystem().Impl().(*filesystem) |
nothing calls this directly
no outgoing calls
no test coverage detected