diff options
author | Prashanth Sreenivasa <pks@delphix.com> | 2016-09-22 09:30:13 -0700 |
---|---|---|
committer | Prakash Surya <prakash.surya@delphix.com> | 2018-01-10 08:00:10 -0800 |
commit | 5cabbc6b49070407fb9610cfe73d4c0e0dea3e77 (patch) | |
tree | 2348a2b4993b5a1f269cff4e010fcbcac97f18b4 /usr/src/uts/common/fs/zfs/vdev_file.c | |
parent | eb9c32327f4caf584b309530acc3df1b67f1d286 (diff) | |
download | illumos-gate-5cabbc6b49070407fb9610cfe73d4c0e0dea3e77.tar.gz |
7614 zfs device evacuation/removal
Reviewed by: Alex Reece <alex@delphix.com>
Reviewed by: George Wilson <george.wilson@delphix.com>
Reviewed by: John Kennedy <john.kennedy@delphix.com>
Reviewed by: Prakash Surya <prakash.surya@delphix.com>
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed by: Richard Laager <rlaager@wiktel.com>
Reviewed by: Tim Chase <tim@chase2k.com>
Approved by: Garrett D'Amore <garrett@damore.org>
Diffstat (limited to 'usr/src/uts/common/fs/zfs/vdev_file.c')
-rw-r--r-- | usr/src/uts/common/fs/zfs/vdev_file.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr/src/uts/common/fs/zfs/vdev_file.c b/usr/src/uts/common/fs/zfs/vdev_file.c index 147e693967..f93b646fd8 100644 --- a/usr/src/uts/common/fs/zfs/vdev_file.c +++ b/usr/src/uts/common/fs/zfs/vdev_file.c @@ -262,6 +262,7 @@ vdev_ops_t vdev_file_ops = { NULL, vdev_file_hold, vdev_file_rele, + NULL, VDEV_TYPE_FILE, /* name of this vdev type */ B_TRUE /* leaf vdev */ }; @@ -280,6 +281,7 @@ vdev_ops_t vdev_disk_ops = { NULL, vdev_file_hold, vdev_file_rele, + NULL, VDEV_TYPE_DISK, /* name of this vdev type */ B_TRUE /* leaf vdev */ }; |