+++ /dev/null
-From f21e87df9f9b0eab5c1a0d6a87f936021584063a Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Sat, 24 Sep 2022 17:14:57 +0800
-Subject: IB/rdmavt: Add __init/__exit annotations to module init/exit funcs
-
-From: Xiu Jianfeng <xiujianfeng@huawei.com>
-
-[ Upstream commit 78657a445ca7603024348781c921f8ecaee10a49 ]
-
-Add missing __init/__exit annotations to module init/exit funcs.
-
-Fixes: 0194621b2253 ("IB/rdmavt: Create module framework and handle driver registration")
-Link: https://lore.kernel.org/r/20220924091457.52446-1-xiujianfeng@huawei.com
-Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com>
-Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/infiniband/sw/rdmavt/vt.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/drivers/infiniband/sw/rdmavt/vt.c b/drivers/infiniband/sw/rdmavt/vt.c
-index 03a367db38e6..25ae07373804 100644
---- a/drivers/infiniband/sw/rdmavt/vt.c
-+++ b/drivers/infiniband/sw/rdmavt/vt.c
-@@ -56,7 +56,7 @@
- MODULE_LICENSE("Dual BSD/GPL");
- MODULE_DESCRIPTION("RDMA Verbs Transport Library");
-
--static int rvt_init(void)
-+static int __init rvt_init(void)
- {
- /*
- * rdmavt does not need to do anything special when it starts up. All it
-@@ -66,7 +66,7 @@ static int rvt_init(void)
- }
- module_init(rvt_init);
-
--static void rvt_cleanup(void)
-+static void __exit rvt_cleanup(void)
- {
- /*
- * Nothing to do at exit time either. The module won't be able to be
---
-2.35.1
-
phy-qualcomm-call-clk_disable_unprepare-in-the-error.patch
firmware-google-test-spinlock-on-panic-path-to-avoid.patch
serial-8250-fix-restoring-termios-speed-after-suspen.patch
-ib-rdmavt-add-__init-__exit-annotations-to-module-in.patch
fsi-core-check-error-number-after-calling-ida_simple.patch
mfd-intel_soc_pmic-fix-an-error-handling-path-in-int.patch
mfd-fsl-imx25-fix-an-error-handling-path-in-mx25_tsa.patch
+++ /dev/null
-From 5ecdb25dee2df4e1c0000fda9cc3efcda174a666 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Sat, 24 Sep 2022 17:14:57 +0800
-Subject: IB/rdmavt: Add __init/__exit annotations to module init/exit funcs
-
-From: Xiu Jianfeng <xiujianfeng@huawei.com>
-
-[ Upstream commit 78657a445ca7603024348781c921f8ecaee10a49 ]
-
-Add missing __init/__exit annotations to module init/exit funcs.
-
-Fixes: 0194621b2253 ("IB/rdmavt: Create module framework and handle driver registration")
-Link: https://lore.kernel.org/r/20220924091457.52446-1-xiujianfeng@huawei.com
-Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com>
-Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/infiniband/sw/rdmavt/vt.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/drivers/infiniband/sw/rdmavt/vt.c b/drivers/infiniband/sw/rdmavt/vt.c
-index 541ee30727aa..e6d85fcc2624 100644
---- a/drivers/infiniband/sw/rdmavt/vt.c
-+++ b/drivers/infiniband/sw/rdmavt/vt.c
-@@ -57,7 +57,7 @@
- MODULE_LICENSE("Dual BSD/GPL");
- MODULE_DESCRIPTION("RDMA Verbs Transport Library");
-
--static int rvt_init(void)
-+static int __init rvt_init(void)
- {
- int ret = rvt_driver_cq_init();
-
-@@ -68,7 +68,7 @@ static int rvt_init(void)
- }
- module_init(rvt_init);
-
--static void rvt_cleanup(void)
-+static void __exit rvt_cleanup(void)
- {
- rvt_cq_exit();
- }
---
-2.35.1
-
staging-vt6655-fix-some-erroneous-memory-clean-up-lo.patch
firmware-google-test-spinlock-on-panic-path-to-avoid.patch
serial-8250-fix-restoring-termios-speed-after-suspen.patch
-ib-rdmavt-add-__init-__exit-annotations-to-module-in.patch
fsi-core-check-error-number-after-calling-ida_simple.patch
mfd-intel_soc_pmic-fix-an-error-handling-path-in-int.patch
mfd-fsl-imx25-fix-an-error-handling-path-in-mx25_tsa.patch
+++ /dev/null
-From f96d9633e0a4e6708bbd9d168edc2f008190a16c Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Sat, 24 Sep 2022 17:14:57 +0800
-Subject: IB/rdmavt: Add __init/__exit annotations to module init/exit funcs
-
-From: Xiu Jianfeng <xiujianfeng@huawei.com>
-
-[ Upstream commit 78657a445ca7603024348781c921f8ecaee10a49 ]
-
-Add missing __init/__exit annotations to module init/exit funcs.
-
-Fixes: 0194621b2253 ("IB/rdmavt: Create module framework and handle driver registration")
-Link: https://lore.kernel.org/r/20220924091457.52446-1-xiujianfeng@huawei.com
-Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com>
-Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/infiniband/sw/rdmavt/vt.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/drivers/infiniband/sw/rdmavt/vt.c b/drivers/infiniband/sw/rdmavt/vt.c
-index 1a1d7329fbb2..747de2e4f0eb 100644
---- a/drivers/infiniband/sw/rdmavt/vt.c
-+++ b/drivers/infiniband/sw/rdmavt/vt.c
-@@ -55,7 +55,7 @@
- MODULE_LICENSE("Dual BSD/GPL");
- MODULE_DESCRIPTION("RDMA Verbs Transport Library");
-
--static int rvt_init(void)
-+static int __init rvt_init(void)
- {
- /*
- * rdmavt does not need to do anything special when it starts up. All it
-@@ -65,7 +65,7 @@ static int rvt_init(void)
- }
- module_init(rvt_init);
-
--static void rvt_cleanup(void)
-+static void __exit rvt_cleanup(void)
- {
- /*
- * Nothing to do at exit time either. The module won't be able to be
---
-2.35.1
-
drivers-serial-jsm-fix-some-leaks-in-probe.patch
firmware-google-test-spinlock-on-panic-path-to-avoid.patch
serial-8250-fix-restoring-termios-speed-after-suspen.patch
-ib-rdmavt-add-__init-__exit-annotations-to-module-in.patch
mfd-intel_soc_pmic-fix-an-error-handling-path-in-int.patch
mfd-lp8788-fix-an-error-handling-path-in-lp8788_prob.patch
mfd-lp8788-fix-an-error-handling-path-in-lp8788_irq_.patch
+++ /dev/null
-From 03fcf6a87ec290029fff7ebb86862056af9c901d Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Sat, 24 Sep 2022 17:14:57 +0800
-Subject: IB/rdmavt: Add __init/__exit annotations to module init/exit funcs
-
-From: Xiu Jianfeng <xiujianfeng@huawei.com>
-
-[ Upstream commit 78657a445ca7603024348781c921f8ecaee10a49 ]
-
-Add missing __init/__exit annotations to module init/exit funcs.
-
-Fixes: 0194621b2253 ("IB/rdmavt: Create module framework and handle driver registration")
-Link: https://lore.kernel.org/r/20220924091457.52446-1-xiujianfeng@huawei.com
-Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com>
-Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/infiniband/sw/rdmavt/vt.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/drivers/infiniband/sw/rdmavt/vt.c b/drivers/infiniband/sw/rdmavt/vt.c
-index d1bbe66610cf..f2734809812d 100644
---- a/drivers/infiniband/sw/rdmavt/vt.c
-+++ b/drivers/infiniband/sw/rdmavt/vt.c
-@@ -57,7 +57,7 @@
- MODULE_LICENSE("Dual BSD/GPL");
- MODULE_DESCRIPTION("RDMA Verbs Transport Library");
-
--static int rvt_init(void)
-+static int __init rvt_init(void)
- {
- int ret = rvt_driver_cq_init();
-
-@@ -68,7 +68,7 @@ static int rvt_init(void)
- }
- module_init(rvt_init);
-
--static void rvt_cleanup(void)
-+static void __exit rvt_cleanup(void)
- {
- rvt_cq_exit();
- }
---
-2.35.1
-
clk-qcom-clk-rcg2-add-rcg2-mux-ops.patch
clk-qcom-apss-ipq6018-fix-apcs_alias0_clk_src.patch
clk-qcom-apss-ipq6018-mark-apcs_alias0_core_clk-as-c.patch
-ib-rdmavt-add-__init-__exit-annotations-to-module-in.patch
fsi-core-check-error-number-after-calling-ida_simple.patch
mfd-intel_soc_pmic-fix-an-error-handling-path-in-int.patch
mfd-fsl-imx25-fix-an-error-handling-path-in-mx25_tsa.patch
+++ /dev/null
-From 55d6a7a2d1eda054b07ffe7793166794cedbabe0 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Sat, 24 Sep 2022 17:14:57 +0800
-Subject: IB/rdmavt: Add __init/__exit annotations to module init/exit funcs
-
-From: Xiu Jianfeng <xiujianfeng@huawei.com>
-
-[ Upstream commit 78657a445ca7603024348781c921f8ecaee10a49 ]
-
-Add missing __init/__exit annotations to module init/exit funcs.
-
-Fixes: 0194621b2253 ("IB/rdmavt: Create module framework and handle driver registration")
-Link: https://lore.kernel.org/r/20220924091457.52446-1-xiujianfeng@huawei.com
-Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com>
-Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/infiniband/sw/rdmavt/vt.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/drivers/infiniband/sw/rdmavt/vt.c b/drivers/infiniband/sw/rdmavt/vt.c
-index 59481ae39505..d61f8de7f21c 100644
---- a/drivers/infiniband/sw/rdmavt/vt.c
-+++ b/drivers/infiniband/sw/rdmavt/vt.c
-@@ -15,7 +15,7 @@
- MODULE_LICENSE("Dual BSD/GPL");
- MODULE_DESCRIPTION("RDMA Verbs Transport Library");
-
--static int rvt_init(void)
-+static int __init rvt_init(void)
- {
- int ret = rvt_driver_cq_init();
-
-@@ -26,7 +26,7 @@ static int rvt_init(void)
- }
- module_init(rvt_init);
-
--static void rvt_cleanup(void)
-+static void __exit rvt_cleanup(void)
- {
- rvt_cq_exit();
- }
---
-2.35.1
-
clk-qcom-apss-ipq6018-mark-apcs_alias0_core_clk-as-c.patch
clk-qcom-gcc-sm6115-override-default-alpha-pll-regs.patch
rdma-rxe-fix-resize_finish-in-rxe_queue.c.patch
-ib-rdmavt-add-__init-__exit-annotations-to-module-in.patch
fsi-core-check-error-number-after-calling-ida_simple.patch
mfd-intel_soc_pmic-fix-an-error-handling-path-in-int.patch
mfd-fsl-imx25-fix-an-error-handling-path-in-mx25_tsa.patch
+++ /dev/null
-From 90c19f0c76d7edd9e5c09d5cc2dca6401d3a3104 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Sat, 24 Sep 2022 17:14:57 +0800
-Subject: IB/rdmavt: Add __init/__exit annotations to module init/exit funcs
-
-From: Xiu Jianfeng <xiujianfeng@huawei.com>
-
-[ Upstream commit 78657a445ca7603024348781c921f8ecaee10a49 ]
-
-Add missing __init/__exit annotations to module init/exit funcs.
-
-Fixes: 0194621b2253 ("IB/rdmavt: Create module framework and handle driver registration")
-Link: https://lore.kernel.org/r/20220924091457.52446-1-xiujianfeng@huawei.com
-Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com>
-Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/infiniband/sw/rdmavt/vt.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/drivers/infiniband/sw/rdmavt/vt.c b/drivers/infiniband/sw/rdmavt/vt.c
-index 59481ae39505..d61f8de7f21c 100644
---- a/drivers/infiniband/sw/rdmavt/vt.c
-+++ b/drivers/infiniband/sw/rdmavt/vt.c
-@@ -15,7 +15,7 @@
- MODULE_LICENSE("Dual BSD/GPL");
- MODULE_DESCRIPTION("RDMA Verbs Transport Library");
-
--static int rvt_init(void)
-+static int __init rvt_init(void)
- {
- int ret = rvt_driver_cq_init();
-
-@@ -26,7 +26,7 @@ static int rvt_init(void)
- }
- module_init(rvt_init);
-
--static void rvt_cleanup(void)
-+static void __exit rvt_cleanup(void)
- {
- rvt_cq_exit();
- }
---
-2.35.1
-
rdma-rxe-stop-lookup-of-partially-built-objects.patch
rdma-rxe-set-pd-early-in-mr-alloc-routines.patch
rdma-rxe-fix-resize_finish-in-rxe_queue.c.patch
-ib-rdmavt-add-__init-__exit-annotations-to-module-in.patch
fsi-core-check-error-number-after-calling-ida_simple.patch
mfd-intel_soc_pmic-fix-an-error-handling-path-in-int.patch
mfd-fsl-imx25-fix-an-error-handling-path-in-mx25_tsa.patch
+++ /dev/null
-From 8d003506fdf6984b45fd36d42514af1526ec960d Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Sat, 24 Sep 2022 17:14:57 +0800
-Subject: IB/rdmavt: Add __init/__exit annotations to module init/exit funcs
-
-From: Xiu Jianfeng <xiujianfeng@huawei.com>
-
-[ Upstream commit 78657a445ca7603024348781c921f8ecaee10a49 ]
-
-Add missing __init/__exit annotations to module init/exit funcs.
-
-Fixes: 0194621b2253 ("IB/rdmavt: Create module framework and handle driver registration")
-Link: https://lore.kernel.org/r/20220924091457.52446-1-xiujianfeng@huawei.com
-Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com>
-Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/infiniband/sw/rdmavt/vt.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/drivers/infiniband/sw/rdmavt/vt.c b/drivers/infiniband/sw/rdmavt/vt.c
-index 833f3f1b87f5..f69fffa6e613 100644
---- a/drivers/infiniband/sw/rdmavt/vt.c
-+++ b/drivers/infiniband/sw/rdmavt/vt.c
-@@ -57,7 +57,7 @@
- MODULE_LICENSE("Dual BSD/GPL");
- MODULE_DESCRIPTION("RDMA Verbs Transport Library");
-
--static int rvt_init(void)
-+static int __init rvt_init(void)
- {
- int ret = rvt_driver_cq_init();
-
-@@ -68,7 +68,7 @@ static int rvt_init(void)
- }
- module_init(rvt_init);
-
--static void rvt_cleanup(void)
-+static void __exit rvt_cleanup(void)
- {
- rvt_cq_exit();
- }
---
-2.35.1
-
firmware-google-test-spinlock-on-panic-path-to-avoid.patch
serial-8250-fix-restoring-termios-speed-after-suspen.patch
scsi-libsas-fix-use-after-free-bug-in-smp_execute_ta.patch
-ib-rdmavt-add-__init-__exit-annotations-to-module-in.patch
fsi-core-check-error-number-after-calling-ida_simple.patch
mfd-intel_soc_pmic-fix-an-error-handling-path-in-int.patch
mfd-fsl-imx25-fix-an-error-handling-path-in-mx25_tsa.patch
+++ /dev/null
-From 07026237915f2a67e8a5a22b2430dc22905484e2 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Sat, 24 Sep 2022 17:14:57 +0800
-Subject: IB/rdmavt: Add __init/__exit annotations to module init/exit funcs
-
-From: Xiu Jianfeng <xiujianfeng@huawei.com>
-
-[ Upstream commit 78657a445ca7603024348781c921f8ecaee10a49 ]
-
-Add missing __init/__exit annotations to module init/exit funcs.
-
-Fixes: 0194621b2253 ("IB/rdmavt: Create module framework and handle driver registration")
-Link: https://lore.kernel.org/r/20220924091457.52446-1-xiujianfeng@huawei.com
-Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com>
-Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/infiniband/sw/rdmavt/vt.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/drivers/infiniband/sw/rdmavt/vt.c b/drivers/infiniband/sw/rdmavt/vt.c
-index 59481ae39505..d61f8de7f21c 100644
---- a/drivers/infiniband/sw/rdmavt/vt.c
-+++ b/drivers/infiniband/sw/rdmavt/vt.c
-@@ -15,7 +15,7 @@
- MODULE_LICENSE("Dual BSD/GPL");
- MODULE_DESCRIPTION("RDMA Verbs Transport Library");
-
--static int rvt_init(void)
-+static int __init rvt_init(void)
- {
- int ret = rvt_driver_cq_init();
-
-@@ -26,7 +26,7 @@ static int rvt_init(void)
- }
- module_init(rvt_init);
-
--static void rvt_cleanup(void)
-+static void __exit rvt_cleanup(void)
- {
- rvt_cq_exit();
- }
---
-2.35.1
-
nvmet-auth-don-t-try-to-cancel-a-non-initialized-wor.patch
rdma-rxe-set-pd-early-in-mr-alloc-routines.patch
rdma-rxe-fix-resize_finish-in-rxe_queue.c.patch
-ib-rdmavt-add-__init-__exit-annotations-to-module-in.patch
fsi-core-check-error-number-after-calling-ida_simple.patch
mfd-intel_soc_pmic-fix-an-error-handling-path-in-int.patch
mfd-fsl-imx25-fix-an-error-handling-path-in-mx25_tsa.patch