mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-24 00:00:19 +03:00
This moves the Rust sources out of rust_src/ and into the top level. Running the bcachefs executable out of the development tree is now: $ ./target/release/bcachefs command or $ cargo run --profile release -- command instead of "./bcachefs command". Building and installing is still: $ make && make install Signed-off-by: Thomas Bertschinger <tahbertschinger@gmail.com> Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
17 lines
325 B
C
17 lines
325 B
C
#ifndef _LINUX_RCULIST_H
|
|
#define _LINUX_RCULIST_H
|
|
|
|
#include <urcu/rculist.h>
|
|
|
|
|
|
#include <urcu/rcuhlist.h>
|
|
|
|
#define hlist_add_head_rcu cds_hlist_add_head_rcu
|
|
#define hlist_del_rcu cds_hlist_del_rcu
|
|
|
|
#define hlist_for_each_rcu cds_hlist_for_each_rcu
|
|
#define hlist_for_each_entry_rcu cds_hlist_for_each_entry_rcu_2
|
|
|
|
|
|
#endif
|