summaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorZhu Wang <wangzhu9@huawei.com>2023-08-22 01:52:54 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-08-30 16:31:56 +0200
commit11c867081830344f31cc879707359ca0473e7002 (patch)
tree26dcd6cb5d9de826f80158bed8d4e7b8a5882217 /include/linux
parent247661752b75832d2bdd61bc24edeb51e8f859be (diff)
downloadlinux-stable-11c867081830344f31cc879707359ca0473e7002.tar.gz
linux-stable-11c867081830344f31cc879707359ca0473e7002.tar.bz2
linux-stable-11c867081830344f31cc879707359ca0473e7002.zip
scsi: core: raid_class: Remove raid_component_add()
commit 60c5fd2e8f3c42a5abc565ba9876ead1da5ad2b7 upstream. The raid_component_add() function was added to the kernel tree via patch "[SCSI] embryonic RAID class" (2005). Remove this function since it never has had any callers in the Linux kernel. And also raid_component_release() is only used in raid_component_add(), so it is also removed. Signed-off-by: Zhu Wang <wangzhu9@huawei.com> Link: https://lore.kernel.org/r/20230822015254.184270-1-wangzhu9@huawei.com Reviewed-by: Bart Van Assche <bvanassche@acm.org> Fixes: 04b5b5cb0136 ("scsi: core: Fix possible memory leak if device_add() fails") Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/raid_class.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/raid_class.h b/include/linux/raid_class.h
index ec8655514283..c868bb927c3d 100644
--- a/include/linux/raid_class.h
+++ b/include/linux/raid_class.h
@@ -78,7 +78,3 @@ DEFINE_RAID_ATTRIBUTE(enum raid_state, state)
struct raid_template *raid_class_attach(struct raid_function_template *);
void raid_class_release(struct raid_template *);
-
-int __must_check raid_component_add(struct raid_template *, struct device *,
- struct device *);
-