Searched refs:handle_ref_count (Results 1 – 1 of 1) sorted by relevance
/packages/modules/Virtualization/authfs/src/ |
D | fusefs.rs | 107 handle_ref_count: AtomicU64, field 116 InodeState { entry, handle_ref_count: AtomicU64::new(0), unlinked: false } in new() 119 fn new_with_ref_count(entry: AuthFsEntry, handle_ref_count: u64) -> Self { in new_with_ref_count() 120 InodeState { entry, handle_ref_count: AtomicU64::new(handle_ref_count), unlinked: false } in new_with_ref_count() 534 |InodeState { entry, handle_ref_count, .. }| { in lookup() 554 if handle_ref_count.fetch_add(1, Ordering::Relaxed) == u64::MAX { in lookup() 575 |InodeState { handle_ref_count, unlinked, .. }| { in forget() 576 let current = handle_ref_count.get_mut(); in forget()
|