diff options
author | David Sterba <dsterba@suse.com> | 2020-09-29 15:56:39 +0300 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2020-12-08 17:53:50 +0300 |
commit | ab1405aa2522ae61958fc874432bce24d48942b1 (patch) | |
tree | d2a507e3cb1eb5e1e12a78684c298f3f676b9875 /fs/btrfs/super.c | |
parent | 387824afd7210376a577b3c3e2f74618e3ef43a4 (diff) | |
download | linux-ab1405aa2522ae61958fc874432bce24d48942b1.tar.xz |
btrfs: generate lockdep keyset names at compile time
The names in btrfs_lockdep_keysets are generated from a simple pattern
using snprintf but we can generate them directly with some macro magic
and remove the helpers.
Reviewed-by: Josef Bacik <josef@toxicpanda.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/super.c')
-rw-r--r-- | fs/btrfs/super.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index 1ffa50bae1dd..9f51b0a22b14 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c @@ -2572,8 +2572,6 @@ static int __init init_btrfs_fs(void) if (err) goto free_end_io_wq; - btrfs_init_lockdep(); - btrfs_print_mod_info(); err = btrfs_run_sanity_tests(); |