diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2024-12-03 23:06:56 -0500 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2024-12-03 23:07:00 -0500 |
commit | 626b1945eb42f1d2b0a581673952a9b528210850 (patch) | |
tree | 15f5e48093b4535175961d373281fefbd785b977 | |
parent | 077677e61cf597c4e29c83296b1c5409cc0947b2 (diff) |
fix build
haven't merged inode_alloc_cursor yet
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r-- | bch_bindgen/src/bkey.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/bch_bindgen/src/bkey.rs b/bch_bindgen/src/bkey.rs index 2a012508..91d515b7 100644 --- a/bch_bindgen/src/bkey.rs +++ b/bch_bindgen/src/bkey.rs @@ -50,7 +50,6 @@ pub enum BkeyValC<'a> { logged_op_truncate(&'a c::bch_logged_op_truncate), logged_op_finsert(&'a c::bch_logged_op_finsert), accounting(&'a c::bch_accounting), - inode_alloc_cursor(&'a c::bch_inode_alloc_cursor), } impl<'a, 'b> BkeySC<'a> { @@ -107,7 +106,6 @@ impl<'a, 'b> BkeySC<'a> { KEY_TYPE_logged_op_truncate => logged_op_truncate(transmute(self.v)), KEY_TYPE_logged_op_finsert => logged_op_finsert(transmute(self.v)), KEY_TYPE_accounting => accounting(transmute(self.v)), - KEY_TYPE_inode_alloc_cursor => inode_alloc_cursor(transmute(self.v)), KEY_TYPE_MAX => unreachable!(), } } |