Make pack_node() and calc_max_entries() public for dm-unit

This commit is contained in:
Joe Thornber 2021-02-26 15:25:53 +00:00
parent 763b2d14b2
commit d4299a00d0
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ use crate::write_batcher::*;
//------------------------------------------
fn pack_node<W: WriteBytesExt, V: Pack + Unpack>(node: &Node<V>, w: &mut W) -> Result<()> {
pub fn pack_node<W: WriteBytesExt, V: Pack + Unpack>(node: &Node<V>, w: &mut W) -> Result<()> {
match node {
Node::Internal {
header,
@ -60,7 +60,7 @@ fn pack_node<W: WriteBytesExt, V: Pack + Unpack>(node: &Node<V>, w: &mut W) -> R
//------------------------------------------
fn calc_max_entries<V: Unpack>() -> usize {
pub fn calc_max_entries<V: Unpack>() -> usize {
let elt_size = 8 + V::disk_size() as usize;
((BLOCK_SIZE - NodeHeader::disk_size() as usize) / elt_size) as usize
}