bcachefs-tools/bcache.h
Kent Overstreet 7f4191a202 add support for maximum journal entry size
also rip out prototype crypto support code - real code is in the dev
branch, with the new superblock format
2016-12-11 14:58:27 -09:00

27 lines
577 B
C

/*
* Author: Kent Overstreet <kent.overstreet@gmail.com>
*
* GPLv2
*/
#ifndef _BCACHE_H
#define _BCACHE_H
#include "util.h"
int cmd_format(int argc, char *argv[]);
int cmd_assemble(int argc, char *argv[]);
int cmd_incremental(int argc, char *argv[]);
int cmd_run(int argc, char *argv[]);
int cmd_stop(int argc, char *argv[]);
int cmd_fs_show(int argc, char *argv[]);
int cmd_fs_set(int argc, char *argv[]);
int cmd_device_show(int argc, char *argv[]);
int cmd_device_add(int argc, char *argv[]);
int cmd_device_remove(int argc, char *argv[]);
#endif /* _BCACHE_H */