Dir defines the structure of a directory
| 101 | |
| 102 | // Dir defines the structure of a directory |
| 103 | type Dir struct { |
| 104 | super *Super |
| 105 | info *proto.InodeInfo |
| 106 | dcache *DentryCache |
| 107 | dctx *DirContexts |
| 108 | parentIno uint64 |
| 109 | name string |
| 110 | missCount uint32 |
| 111 | lastTime int64 |
| 112 | } |
| 113 | |
| 114 | // Functions that Dir needs to implement |
| 115 | var ( |
nothing calls this directly
no outgoing calls
no test coverage detected