File tree 3 files changed +573
-0
lines changed
3 files changed +573
-0
lines changed Original file line number Diff line number Diff line change @@ -164,6 +164,13 @@ bool rust_helper_refcount_dec_and_test(refcount_t *r)
164
164
}
165
165
EXPORT_SYMBOL_GPL (rust_helper_refcount_dec_and_test );
166
166
167
+ void rust_helper_rb_link_node (struct rb_node * node , struct rb_node * parent ,
168
+ struct rb_node * * rb_link )
169
+ {
170
+ rb_link_node (node , parent , rb_link );
171
+ }
172
+ EXPORT_SYMBOL_GPL (rust_helper_rb_link_node );
173
+
167
174
/* We use bindgen's --size_t-is-usize option to bind the C size_t type
168
175
* as the Rust usize type, so we can use it in contexts where Rust
169
176
* expects a usize like slice (array) indices. usize is defined to be
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ pub mod traits;
55
55
56
56
pub mod linked_list;
57
57
mod raw_list;
58
+ pub mod rbtree;
58
59
59
60
#[ doc( hidden) ]
60
61
pub mod module_param;
You can’t perform that action at this time.
0 commit comments