Struct procfs::sys::fs::DEntryState
source · pub struct DEntryState {
pub nr_dentry: u32,
pub nr_unused: u32,
pub age_limit: Duration,
pub want_pages: bool,
}
Expand description
Information about the status of the directory cache (dcache)
Fields§
§nr_dentry: u32
The number of allocated dentries (dcache entries)
Unused in Linux 2.2
nr_unused: u32
The number of unused dentries.
age_limit: Duration
The age after which dcache entries can be reclaimied when memory is short
want_pages: bool
Is true when the kernel has called shrink_dcache_pages()
and the dcache isn’t pruned yet.
Trait Implementations§
source§impl Clone for DEntryState
impl Clone for DEntryState
source§fn clone(&self) -> DEntryState
fn clone(&self) -> DEntryState
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more