We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d2be1b commit 7af04b7Copy full SHA for 7af04b7
services/pddb/src/backend/basis.rs
@@ -305,11 +305,13 @@ impl BasisCache {
305
// allocate a vpage offset for the dictionary
306
let dict_index = basis.dict_get_free_offset(hw);
307
let dict_offset = VirtAddr::new(dict_index as u64 * DICT_VSIZE).unwrap();
308
+ log::debug!("dict_add at VA 0x{:x?}", dict_offset);
309
let pp = basis.v2p_map.entry(dict_offset).or_insert_with(|| {
310
let mut ap = hw.try_fast_space_alloc().expect("No free space to allocate dict");
311
ap.set_valid(true);
312
ap
313
});
314
+ log::debug!("dict_add at PA 0x {:x?}", pp);
315
assert!(pp.valid(), "v2p returned an invalid page");
316
317
// create the cache entry
0 commit comments