diff options
author | Martin K. Petersen <[email protected]> | 2015-04-14 16:56:23 -0400 |
---|---|---|
committer | James Bottomley <[email protected]> | 2015-04-16 10:36:14 -0700 |
commit | e727c42bd55794765c460b7ac2b6cc969f2a9698 (patch) | |
tree | dd02fc5cafdbeb30a90ee9a700df301f887b26f4 | |
parent | 0351b8f81392c6dbbbb036e5c8f73ceff68726e9 (diff) |
sd: Unregister integrity profile
The new integrity code did not correctly unregister the profile for SD
disks. Call blk_integrity_unregister() when we release a disk.
Signed-off-by: Martin K. Petersen <[email protected]>
Reported-by: Sagi Grimberg <[email protected]>
Tested-by: Sagi Grimberg <[email protected]>
Cc: [email protected] # v3.17+
Signed-off-by: James Bottomley <[email protected]>
-rw-r--r-- | drivers/scsi/sd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c index dcc42446f58a..79beebf53302 100644 --- a/drivers/scsi/sd.c +++ b/drivers/scsi/sd.c @@ -3076,6 +3076,7 @@ static void scsi_disk_release(struct device *dev) ida_remove(&sd_index_ida, sdkp->index); spin_unlock(&sd_index_lock); + blk_integrity_unregister(disk); disk->private_data = NULL; put_disk(disk); put_device(&sdkp->device->sdev_gendev); |