diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2023-02-12 23:15:53 -0500 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-06-20 22:52:26 -0400 |
commit | 16d9bb0d05fa8bd47d0445e4039d3994895b5535 (patch) | |
tree | fbf21741dd8d9ccaba6fcaed512cb5ef10ebb4a4 /fs/bcachefs/debug.c | |
parent | 5145797398be4ac878c25a20134f64edaf8f2180 (diff) |
bcachefs: New backtrace utility code
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs/bcachefs/debug.c')
-rw-r--r-- | fs/bcachefs/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/bcachefs/debug.c b/fs/bcachefs/debug.c index fcefd55a5322..8f43581f3972 100644 --- a/fs/bcachefs/debug.c +++ b/fs/bcachefs/debug.c @@ -527,7 +527,7 @@ static ssize_t bch2_btree_transactions_read(struct file *file, char __user *buf, prt_printf(&i->buf, "backtrace:"); prt_newline(&i->buf); printbuf_indent_add(&i->buf, 2); - bch2_prt_backtrace(&i->buf, trans->locking_wait.task); + bch2_prt_task_backtrace(&i->buf, trans->locking_wait.task); printbuf_indent_sub(&i->buf, 2); prt_newline(&i->buf); |