Skip to main content

CachedDevice

Struct CachedDevice 

Source
pub struct CachedDevice { /* private fields */ }
Expand description

LRU-cached BlockDevice. Pass-through for is_writable + size_bytes; caches block-aligned reads, invalidates on writes.

Implementations§

Source§

impl CachedDevice

Source

pub fn new( inner: Arc<dyn BlockDevice>, block_size: u32, capacity: usize, ) -> Self

Wrap inner with an LRU of capacity blocks. Pick capacity based on workload: 64 blocks (256 KiB at 4 KiB) is a reasonable default for general use; bigger directory walks benefit from 256+.

Source

pub fn stats(&self) -> (u64, u64)

Snapshot (hits, misses) — useful for benchmarks and tests.

Trait Implementations§

Source§

impl BlockDevice for CachedDevice

Source§

fn read_at(&self, offset: u64, buf: &mut [u8]) -> Result<()>

Read exactly buf.len() bytes starting at offset (bytes from start of device).
Source§

fn size_bytes(&self) -> u64

Total device size in bytes (for bounds-checking).
Source§

fn write_at(&self, offset: u64, buf: &[u8]) -> Result<()>

Write exactly buf.len() bytes at offset. Default: returns an error for read-only devices. Writable devices override this.
Source§

fn flush(&self) -> Result<()>

Flush any pending writes to stable storage. Default: no-op for read-only devices; writable devices should implement fsync semantics.
Source§

fn is_writable(&self) -> bool

Reports whether write_at is likely to succeed. Used by the mount path to decide whether journal replay is possible.
Source§

fn populate_cache(&self, block: u64, bytes: Vec<u8>)

Buffer-cache hook: stash bytes for block so a subsequent read_at returns those bytes instead of reading from physical storage. Used by commit_block_buffer to make journaled metadata visible to readers before the journal is checkpointed back to the data area on disk. Read more
Source§

fn unpin_all(&self)

Buffer-cache hook: tell the device the journal has been checkpointed, so any blocks pinned via populate_cache are now consistent with disk and can be evicted under normal LRU pressure. No-op for un-cached devices.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.