summaryrefslogtreecommitdiff
path: root/cmd_list_journal.c
AgeCommit message (Collapse)Author
2023-12-18Update bcachefs sources to 1a739db0b256 bcachefs; guard against overflow in ↵Kent Overstreet
btree node split Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
2023-11-27cmd_list_journal: Apply star_start_of_lines() correctlyKent Overstreet
In list_journal, we note which journal entries are being ignored - this was forgetting to mark entries newer than the newest flush. Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
2023-10-19Update bcachefs sources to 24bdb6fed91c bcachefs: bch2_btree_id_str()Kent Overstreet
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
2023-08-01cmd_list_journal: Tweak extent matchingKent Overstreet
Extents can now additionally be matched by the end position, the same as normal keys. Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
2023-07-15Update bcachefs sources to e14d7c7195 bcachefs: Compression levelsKent Overstreet
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
2023-03-04Update bcachefs sources to 171da96d76 bcachefs: Drop some anonymous structs, ↵Kent Overstreet
unions
2023-02-21cmd_list_journal: Highlight entries matching transaction filterKent Overstreet
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
2023-02-12cmd_list_journal: Add filter optionsKent Overstreet
Instead of having to use grep, this adds the ability to print out only transactions that update a particular key, or to filter out entirely keys except those updating certain btrees. Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
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-11-13cmd_kill_btree_node.cKent Overstreet
This factors out cmd_kill_btree_node into its own file - it was in cmd_list_journal.c, which wsa rather silly. Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
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>