| 1419 | } |
| 1420 | |
| 1421 | uint64_t bcache_get_num_immutable(struct filemgr *file) |
| 1422 | { |
| 1423 | struct fnamedic_item *fname = file->bcache; |
| 1424 | if (fname) { |
| 1425 | return atomic_get_uint64_t(&fname->nimmutable); |
| 1426 | } |
| 1427 | return 0; |
| 1428 | |
| 1429 | } |
| 1430 | |
| 1431 | // LCOV_EXCL_START |
| 1432 | void bcache_print_items() |
no test coverage detected