bcachefs: Add ability to redirect log output
authorKent Overstreet <kent.overstreet@linux.dev>
Tue, 5 Dec 2023 01:15:23 +0000 (20:15 -0500)
committerKent Overstreet <kent.overstreet@linux.dev>
Mon, 1 Jan 2024 16:47:40 +0000 (11:47 -0500)
commit2b41226d7f4b3b836a2a3e4ce08ab18ba03f0cd0
treef8fcc85547c7c832cd757d423388abf4e1774118
parentbbefcd910d9f992db2d8ba4b8f96a77d8fb131d7
bcachefs: Add ability to redirect log output

Upcoming patches are going to add two new ioctls for running fsck in the
kernel, but pretending that we're running our normal userspace fsck.

This patch adds some plumbing for redirecting our normal log messages
away from the dmesg log to a thread_with_file file descriptor - via a
struct log_output, which will be consumed by the fsck f_op's read method.

The new ioctls will allow for running fsck in the kernel against an
offline filesystem (without mounting it), and an online filesystem. For
an offline filesystem we need a way to pass in a pointer to the
log_output, which is done via a new hidden opts.h option.

For online fsck, we can set c->output directly, but only want to
redirect log messages from the thread running fsck - hence the new
c->output_filter method.

Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
fs/bcachefs/bcachefs.h
fs/bcachefs/opts.h
fs/bcachefs/recovery.c
fs/bcachefs/super.c