diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2022-03-05 17:06:24 -0500 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2022-03-05 17:06:24 -0500 |
commit | b797b087a9c47f95a70b4ed38c080af006280e16 (patch) | |
tree | 16545ec258666d62250c2c0e4b9ff324fc171882 /libbcachefs/sysfs.c | |
parent | 4568914cfbe371c65db7c9fb903f659478904782 (diff) |
Update bcachefs sources to 259ff91605 bcachefs: Don't keep around btree_paths unnecessarily
Diffstat (limited to 'libbcachefs/sysfs.c')
-rw-r--r-- | libbcachefs/sysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbcachefs/sysfs.c b/libbcachefs/sysfs.c index 3018250d..49e38859 100644 --- a/libbcachefs/sysfs.c +++ b/libbcachefs/sysfs.c @@ -597,7 +597,7 @@ SHOW(bch2_fs_opts_dir) int id = opt - bch2_opt_table; u64 v = bch2_opt_get_by_id(&c->opts, id); - bch2_opt_to_text(out, c, opt, v, OPT_SHOW_FULL_LIST); + bch2_opt_to_text(out, c, c->disk_sb.sb, opt, v, OPT_SHOW_FULL_LIST); pr_char(out, '\n'); return 0; |