Struct xfs::VnodeStatistics [] [src]

pub struct VnodeStatistics {
    pub active: u32,
    pub alloc: u32,
    pub get: u32,
    pub hold: u32,
    pub rele: u32,
    pub reclaim: u32,
    pub remove: u32,
    pub free: u32,
}

Fields

active

Number of vnodes not on free lists.

alloc

Number of times vn_alloc called.

get

Number of times vn_get called.

hold

Number of times vn_hold called.

rele

Number of times vn_rele called.

reclaim

Number of times vn_reclaim called.

remove

Number of times vn_remove called.

free

Number of times vn_free called.