mirror of
https://github.com/versity/scoutfs.git
synced 2026-02-11 21:11:08 +00:00
Update the internal structure of btree blocks to use the avl item index and hash table direct item lookup. Signed-off-by: Zach Brown <zab@versity.com>
10 lines
279 B
C
10 lines
279 B
C
#ifndef _LEAF_ITEM_HASH_H_
|
|
#define _LEAF_ITEM_HASH_H_
|
|
|
|
int leaf_item_hash_ind(struct scoutfs_key *key);
|
|
__le16 *leaf_item_hash_buckets(struct scoutfs_btree_block *bt);
|
|
void leaf_item_hash_insert(struct scoutfs_btree_block *bt,
|
|
struct scoutfs_key *key, __le16 off);
|
|
|
|
#endif
|