Home
last modified time | relevance | path

Searched refs:LockedCacheSpace (Results 1 – 1 of 1) sorted by relevance

/DragonOS/kernel/src/driver/block/cache/
H A Dcached_block_device.rs13 static mut CSPACE: Option<LockedCacheSpace> = None;
30 unsafe fn space() -> Result<&'static mut LockedCacheSpace, BlockCacheError> { in space()
44 CSPACE = Some(LockedCacheSpace::new(CacheSpace::new())); in init()
195 struct LockedCacheSpace(RwLock<CacheSpace>); struct
197 impl LockedCacheSpace { impl
199 LockedCacheSpace(RwLock::new(space)) in new()