pub struct InodeClustering {
pub count: u32,
pub flushcnt: u32,
pub flushinode: u32,
}
Fields§
§count: u32
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: u32
Value from xs_icluster_flushcnt field of struct xfsstats.
flushinode: u32
This is the number of times that the inode clustering was not able to flush anything but the one inode it was called with.
Auto Trait Implementations§
impl Freeze for InodeClustering
impl RefUnwindSafe for InodeClustering
impl Send for InodeClustering
impl Sync for InodeClustering
impl Unpin for InodeClustering
impl UnwindSafe for InodeClustering
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more