BtreeBlockMap2Stats contain statistics on B-tree v2 block map operations.
| 268 | |
| 269 | // BtreeBlockMap2Stats contain statistics on B-tree v2 block map operations. |
| 270 | type BtreeBlockMap2Stats struct { |
| 271 | Lookup uint32 |
| 272 | Compare uint32 |
| 273 | Insrec uint32 |
| 274 | Delrec uint32 |
| 275 | NewRoot uint32 |
| 276 | KillRoot uint32 |
| 277 | Increment uint32 |
| 278 | Decrement uint32 |
| 279 | Lshift uint32 |
| 280 | Rshift uint32 |
| 281 | Split uint32 |
| 282 | Join uint32 |
| 283 | Alloc uint32 |
| 284 | Free uint32 |
| 285 | Moves uint32 |
| 286 | } |
| 287 | |
| 288 | // BtreeInode2Stats contain statistics on B-tree v2 inode allocations. |
| 289 | type BtreeInode2Stats struct { |
nothing calls this directly
no outgoing calls
no test coverage detected