From 626b1945eb42f1d2b0a581673952a9b528210850 Mon Sep 17 00:00:00 2001 From: Kent Overstreet Date: Tue, 3 Dec 2024 23:06:56 -0500 Subject: [PATCH] fix build haven't merged inode_alloc_cursor yet Signed-off-by: Kent Overstreet --- bch_bindgen/src/bkey.rs | 2 -- 1 file changed, 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!(), } }