diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2016-12-11 14:45:48 -0900 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2016-12-11 14:58:27 -0900 |
commit | 7f4191a202ea4558ca2d5eb8a47daea33c9999c7 (patch) | |
tree | 137f957291da895f78b43a8903db6f744d6e202c /bcache.c | |
parent | 4e158e155327d09868453ae9759a58284245175a (diff) |
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
Diffstat (limited to 'bcache.c')
-rw-r--r-- | bcache.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -30,7 +30,6 @@ static void usage(void) "\n" "Commands for formatting, startup and shutdown\n" " format Format a new filesystem\n" - " unlock Unlock an encrypted filesystem prior to running/mounting\n" " assemble Assemble an existing multi device filesystem\n" " incremental Incrementally assemble an existing multi device filesystem\n" " run Start a partially assembled filesystem\n" @@ -84,9 +83,6 @@ int main(int argc, char *argv[]) if (!strcmp(cmd, "device_remove")) return cmd_device_remove(argc, argv); - if (!strcmp(cmd, "unlock")) - return cmd_unlock(argc, argv); - usage(); return 0; } |