summaryrefslogtreecommitdiff
path: root/cmd_list.c
AgeCommit message (Collapse)Author
2022-12-19Use bch2_err_str() instead of strerror()Kent Overstreet
This correctly prints out our private error codes. Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
2022-07-21cmd_list: Fix -m nodes_ondiskKent Overstreet
We were using malloc() for a buffer to be used for an O_DIRECT read - oops, that doesn't work. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
2022-07-11cmd_list: Fix indenting in -m nodes_ondiskKent Overstreet
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
2022-06-18Break up cmd_debug.c into multiple filesKent Overstreet
In the future, let's have one cmd_foo.c file per subcommand. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>