From f5baaf48e3e82b1caf9f5cd1207d4d6feba3a2e5 Mon Sep 17 00:00:00 2001 From: Thomas Bertschinger Date: Mon, 15 Jan 2024 23:41:02 -0700 Subject: move Rust sources to top level, C sources into c_src 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 Signed-off-by: Kent Overstreet --- c_src/cmds.h | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 c_src/cmds.h (limited to 'c_src/cmds.h') diff --git a/c_src/cmds.h b/c_src/cmds.h new file mode 100644 index 00000000..64267dc4 --- /dev/null +++ b/c_src/cmds.h @@ -0,0 +1,63 @@ +/* + * Author: Kent Overstreet + * + * GPLv2 + */ + +#ifndef _CMDS_H +#define _CMDS_H + +#include "tools-util.h" + +int cmd_format(int argc, char *argv[]); +int cmd_show_super(int argc, char *argv[]); +int cmd_reset_counters(int argc, char *argv[]); +int cmd_set_option(int argc, char *argv[]); + +int cmd_fs_usage(int argc, char *argv[]); + +int device_usage(void); +int cmd_device_add(int argc, char *argv[]); +int cmd_device_remove(int argc, char *argv[]); +int cmd_device_online(int argc, char *argv[]); +int cmd_device_offline(int argc, char *argv[]); +int cmd_device_evacuate(int argc, char *argv[]); +int cmd_device_set_state(int argc, char *argv[]); +int cmd_device_resize(int argc, char *argv[]); +int cmd_device_resize_journal(int argc, char *argv[]); + +int data_usage(void); +int cmd_data_rereplicate(int argc, char *argv[]); +int cmd_data_job(int argc, char *argv[]); + +int cmd_unlock(int argc, char *argv[]); +int cmd_set_passphrase(int argc, char *argv[]); +int cmd_remove_passphrase(int argc, char *argv[]); + +int cmd_fsck(int argc, char *argv[]); + +int cmd_dump(int argc, char *argv[]); +int cmd_list_journal(int argc, char *argv[]); +int cmd_kill_btree_node(int argc, char *argv[]); + +int cmd_migrate(int argc, char *argv[]); +int cmd_migrate_superblock(int argc, char *argv[]); + +int cmd_version(int argc, char *argv[]); + +int cmd_setattr(int argc, char *argv[]); + +int subvolume_usage(void); +int cmd_subvolume_create(int argc, char *argv[]); +int cmd_subvolume_delete(int argc, char *argv[]); +int cmd_subvolume_snapshot(int argc, char *argv[]); + +int cmd_fusemount(int argc, char *argv[]); + +void bcachefs_usage(void); +int device_cmds(int argc, char *argv[]); +int fs_cmds(int argc, char *argv[]); +int data_cmds(int argc, char *argv[]); +int subvolume_cmds(int argc, char *argv[]); + +#endif /* _CMDS_H */ -- cgit v1.2.3