diff options
author | Brian Behlendorf <[email protected]> | 2017-05-02 09:46:18 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2017-05-02 09:46:18 -0700 |
commit | 7dae2c81e7b2e68a596c5b431444be0fae308156 (patch) | |
tree | 7581727a7905b990c1f823592c47e9a0a50e1942 /include/sys/zfs_vfsops.h | |
parent | 153b2285545509c082be56dbf3ba5041de5d6e48 (diff) |
Linux 4.12 compat: super_setup_bdi_name()
All filesystems were converted to dynamically allocated BDIs. The
destruction of backing_dev_info structures is handled as part of
super block destruction. Refactor the code to abstract away the
details of creating and destroying a BDI.
Reviewed-by: Chunwei Chen <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #6089
Diffstat (limited to 'include/sys/zfs_vfsops.h')
-rw-r--r-- | include/sys/zfs_vfsops.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/sys/zfs_vfsops.h b/include/sys/zfs_vfsops.h index aeecc472d..2326da422 100644 --- a/include/sys/zfs_vfsops.h +++ b/include/sys/zfs_vfsops.h @@ -75,7 +75,6 @@ typedef struct zfs_mnt { struct zfsvfs { vfs_t *z_vfs; /* generic fs struct */ struct super_block *z_sb; /* generic super_block */ - struct backing_dev_info z_bdi; /* generic backing dev info */ struct zfsvfs *z_parent; /* parent fs */ objset_t *z_os; /* objset reference */ uint64_t z_flags; /* super_block flags */ |