Gets the offset of `address` in the L2 table.
(&self, address: u64)
| 1376 | |
| 1377 | // Gets the offset of `address` in the L2 table. |
| 1378 | fn l2_table_index(&self, address: u64) -> u64 { |
| 1379 | (address / self.raw_file.cluster_size()) % self.l2_entries |
| 1380 | } |
| 1381 | |
| 1382 | /// Attempts to set the corrupt bit, logging failures without propagating them. |
| 1383 | /// |
no test coverage detected