Struct xfs::InodeClustering [] [src]

pub struct InodeClustering {
    pub count: u32,
    pub flushcnt: u32,
    pub flushinode: u32,
}

Fields

count

This is the number of calls to xfs_iflush which gets called when an inode is being flushed (such as by bdflush or tail pushing). xfs_iflush searches for other inodes in the same cluster which are dirty and flushable.

flushcnt

Value from xs_icluster_flushcnt field of struct xfsstats.

flushinode

This is the number of times that the inode clustering was not able to flush anything but the one inode it was called with.