diff options
author | Jorgen Lundman <[email protected]> | 2020-06-17 03:43:33 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2020-06-16 11:43:33 -0700 |
commit | d366c8fd7a163f17e8984952d8f0aeb550844e8a (patch) | |
tree | f11bf4c5d9850912dbeb088cb465c7afa0ef3998 /module/os | |
parent | ba54b180a5b496af29f8dd6eada3f0bd82d9b883 (diff) |
Make struct vdev_disk_t be platform private
Linux defines different vdev_disk_t members to macOS, but they are
only used in vdev_disk.c so move the declaration there.
Reviewed-by: Ryan Moeller <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Jorgen Lundman <[email protected]>
Closes #10452
Diffstat (limited to 'module/os')
-rw-r--r-- | module/os/linux/zfs/vdev_disk.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/module/os/linux/zfs/vdev_disk.c b/module/os/linux/zfs/vdev_disk.c index b514df3bc..5869b474d 100644 --- a/module/os/linux/zfs/vdev_disk.c +++ b/module/os/linux/zfs/vdev_disk.c @@ -37,6 +37,11 @@ #include <linux/msdos_fs.h> #include <linux/vfs_compat.h> +typedef struct vdev_disk { + struct block_device *vd_bdev; + krwlock_t vd_lock; +} vdev_disk_t; + /* * Unique identifier for the exclusive vdev holder. */ |