diff options
-rw-r--r-- | queue-5.10/openvswitch-stricter-validation-for-the-userspace-ac.patch | 45 | ||||
-rw-r--r-- | queue-5.10/series | 1 | ||||
-rw-r--r-- | queue-5.15/openvswitch-stricter-validation-for-the-userspace-ac.patch | 45 | ||||
-rw-r--r-- | queue-5.15/series | 1 | ||||
-rw-r--r-- | queue-5.4/openvswitch-stricter-validation-for-the-userspace-ac.patch | 45 | ||||
-rw-r--r-- | queue-5.4/series | 1 | ||||
-rw-r--r-- | queue-6.1/openvswitch-stricter-validation-for-the-userspace-ac.patch | 45 | ||||
-rw-r--r-- | queue-6.1/series | 1 | ||||
-rw-r--r-- | queue-6.12/openvswitch-stricter-validation-for-the-userspace-ac.patch | 45 | ||||
-rw-r--r-- | queue-6.12/series | 1 | ||||
-rw-r--r-- | queue-6.15/openvswitch-stricter-validation-for-the-userspace-ac.patch | 45 | ||||
-rw-r--r-- | queue-6.15/series | 1 | ||||
-rw-r--r-- | queue-6.6/openvswitch-stricter-validation-for-the-userspace-ac.patch | 45 | ||||
-rw-r--r-- | queue-6.6/series | 1 |
14 files changed, 0 insertions, 322 deletions
diff --git a/queue-5.10/openvswitch-stricter-validation-for-the-userspace-ac.patch b/queue-5.10/openvswitch-stricter-validation-for-the-userspace-ac.patch deleted file mode 100644 index c75638ac11d..00000000000 --- a/queue-5.10/openvswitch-stricter-validation-for-the-userspace-ac.patch +++ /dev/null @@ -1,45 +0,0 @@ -From 32c313ac456fc5b0cf82938c9a2d2a2ded65e07d Mon Sep 17 00:00:00 2001 -From: Sasha Levin <sashal@kernel.org> -Date: Mon, 12 May 2025 10:08:24 +0200 -Subject: openvswitch: Stricter validation for the userspace action - -From: Eelco Chaudron <echaudro@redhat.com> - -[ Upstream commit 88906f55954131ed2d3974e044b7fb48129b86ae ] - -This change enhances the robustness of validate_userspace() by ensuring -that all Netlink attributes are fully contained within the parent -attribute. The previous use of nla_parse_nested_deprecated() could -silently skip trailing or malformed attributes, as it stops parsing at -the first invalid entry. - -By switching to nla_parse_deprecated_strict(), we make sure only fully -validated attributes are copied for later use. - -Signed-off-by: Eelco Chaudron <echaudro@redhat.com> -Reviewed-by: Simon Horman <horms@kernel.org> -Acked-by: Ilya Maximets <i.maximets@ovn.org> -Link: https://patch.msgid.link/67eb414e2d250e8408bb8afeb982deca2ff2b10b.1747037304.git.echaudro@redhat.com -Signed-off-by: Jakub Kicinski <kuba@kernel.org> -Signed-off-by: Sasha Levin <sashal@kernel.org> ---- - net/openvswitch/flow_netlink.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/net/openvswitch/flow_netlink.c b/net/openvswitch/flow_netlink.c -index 3f8f43dbf44fc..c8a5f5eba5c7b 100644 ---- a/net/openvswitch/flow_netlink.c -+++ b/net/openvswitch/flow_netlink.c -@@ -3007,7 +3007,8 @@ static int validate_userspace(const struct nlattr *attr) - struct nlattr *a[OVS_USERSPACE_ATTR_MAX + 1]; - int error; - -- error = nla_parse_nested_deprecated(a, OVS_USERSPACE_ATTR_MAX, attr, -+ error = nla_parse_deprecated_strict(a, OVS_USERSPACE_ATTR_MAX, -+ nla_data(attr), nla_len(attr), - userspace_policy, NULL); - if (error) - return error; --- -2.39.5 - diff --git a/queue-5.10/series b/queue-5.10/series index f3f99d57d8b..157d0873877 100644 --- a/queue-5.10/series +++ b/queue-5.10/series @@ -257,7 +257,6 @@ net-dlink-add-synchronization-for-stats-update.patch tcp-always-seek-for-minimal-rtt-in-tcp_rcv_rtt_updat.patch tcp-fix-initial-tp-rcvq_space.space-value-for-passiv.patch ipv4-route-use-this_cpu_inc-for-stats-on-preempt_rt.patch -openvswitch-stricter-validation-for-the-userspace-ac.patch net-atlantic-generate-software-timestamp-just-before.patch pinctrl-armada-37xx-propagate-error-from-armada_37xx.patch pinctrl-armada-37xx-propagate-error-from-armada_37xx.patch-24278 diff --git a/queue-5.15/openvswitch-stricter-validation-for-the-userspace-ac.patch b/queue-5.15/openvswitch-stricter-validation-for-the-userspace-ac.patch deleted file mode 100644 index e4d0b641dd5..00000000000 --- a/queue-5.15/openvswitch-stricter-validation-for-the-userspace-ac.patch +++ /dev/null @@ -1,45 +0,0 @@ -From 264f2f3d01dbe23a4aea695c646b3538f280722b Mon Sep 17 00:00:00 2001 -From: Sasha Levin <sashal@kernel.org> -Date: Mon, 12 May 2025 10:08:24 +0200 -Subject: openvswitch: Stricter validation for the userspace action - -From: Eelco Chaudron <echaudro@redhat.com> - -[ Upstream commit 88906f55954131ed2d3974e044b7fb48129b86ae ] - -This change enhances the robustness of validate_userspace() by ensuring -that all Netlink attributes are fully contained within the parent -attribute. The previous use of nla_parse_nested_deprecated() could -silently skip trailing or malformed attributes, as it stops parsing at -the first invalid entry. - -By switching to nla_parse_deprecated_strict(), we make sure only fully -validated attributes are copied for later use. - -Signed-off-by: Eelco Chaudron <echaudro@redhat.com> -Reviewed-by: Simon Horman <horms@kernel.org> -Acked-by: Ilya Maximets <i.maximets@ovn.org> -Link: https://patch.msgid.link/67eb414e2d250e8408bb8afeb982deca2ff2b10b.1747037304.git.echaudro@redhat.com -Signed-off-by: Jakub Kicinski <kuba@kernel.org> -Signed-off-by: Sasha Levin <sashal@kernel.org> ---- - net/openvswitch/flow_netlink.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/net/openvswitch/flow_netlink.c b/net/openvswitch/flow_netlink.c -index 7db0f8938c145..8e7238a4f5339 100644 ---- a/net/openvswitch/flow_netlink.c -+++ b/net/openvswitch/flow_netlink.c -@@ -3004,7 +3004,8 @@ static int validate_userspace(const struct nlattr *attr) - struct nlattr *a[OVS_USERSPACE_ATTR_MAX + 1]; - int error; - -- error = nla_parse_nested_deprecated(a, OVS_USERSPACE_ATTR_MAX, attr, -+ error = nla_parse_deprecated_strict(a, OVS_USERSPACE_ATTR_MAX, -+ nla_data(attr), nla_len(attr), - userspace_policy, NULL); - if (error) - return error; --- -2.39.5 - diff --git a/queue-5.15/series b/queue-5.15/series index f1956a1e5a7..47c132be66f 100644 --- a/queue-5.15/series +++ b/queue-5.15/series @@ -315,7 +315,6 @@ net-dlink-add-synchronization-for-stats-update.patch tcp-always-seek-for-minimal-rtt-in-tcp_rcv_rtt_updat.patch tcp-fix-initial-tp-rcvq_space.space-value-for-passiv.patch ipv4-route-use-this_cpu_inc-for-stats-on-preempt_rt.patch -openvswitch-stricter-validation-for-the-userspace-ac.patch net-atlantic-generate-software-timestamp-just-before.patch pinctrl-armada-37xx-propagate-error-from-armada_37xx.patch pinctrl-armada-37xx-propagate-error-from-armada_37xx.patch-10009 diff --git a/queue-5.4/openvswitch-stricter-validation-for-the-userspace-ac.patch b/queue-5.4/openvswitch-stricter-validation-for-the-userspace-ac.patch deleted file mode 100644 index 3e8cf31ea74..00000000000 --- a/queue-5.4/openvswitch-stricter-validation-for-the-userspace-ac.patch +++ /dev/null @@ -1,45 +0,0 @@ -From 4637c2c3b176a11f10a210aa423111bc3e360bdc Mon Sep 17 00:00:00 2001 -From: Sasha Levin <sashal@kernel.org> -Date: Mon, 12 May 2025 10:08:24 +0200 -Subject: openvswitch: Stricter validation for the userspace action - -From: Eelco Chaudron <echaudro@redhat.com> - -[ Upstream commit 88906f55954131ed2d3974e044b7fb48129b86ae ] - -This change enhances the robustness of validate_userspace() by ensuring -that all Netlink attributes are fully contained within the parent -attribute. The previous use of nla_parse_nested_deprecated() could -silently skip trailing or malformed attributes, as it stops parsing at -the first invalid entry. - -By switching to nla_parse_deprecated_strict(), we make sure only fully -validated attributes are copied for later use. - -Signed-off-by: Eelco Chaudron <echaudro@redhat.com> -Reviewed-by: Simon Horman <horms@kernel.org> -Acked-by: Ilya Maximets <i.maximets@ovn.org> -Link: https://patch.msgid.link/67eb414e2d250e8408bb8afeb982deca2ff2b10b.1747037304.git.echaudro@redhat.com -Signed-off-by: Jakub Kicinski <kuba@kernel.org> -Signed-off-by: Sasha Levin <sashal@kernel.org> ---- - net/openvswitch/flow_netlink.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/net/openvswitch/flow_netlink.c b/net/openvswitch/flow_netlink.c -index 4ad4c89886ee3..f1f7a0e34c7a9 100644 ---- a/net/openvswitch/flow_netlink.c -+++ b/net/openvswitch/flow_netlink.c -@@ -2912,7 +2912,8 @@ static int validate_userspace(const struct nlattr *attr) - struct nlattr *a[OVS_USERSPACE_ATTR_MAX + 1]; - int error; - -- error = nla_parse_nested_deprecated(a, OVS_USERSPACE_ATTR_MAX, attr, -+ error = nla_parse_deprecated_strict(a, OVS_USERSPACE_ATTR_MAX, -+ nla_data(attr), nla_len(attr), - userspace_policy, NULL); - if (error) - return error; --- -2.39.5 - diff --git a/queue-5.4/series b/queue-5.4/series index edc6303c566..2bfbac38fb6 100644 --- a/queue-5.4/series +++ b/queue-5.4/series @@ -165,7 +165,6 @@ net-dlink-add-synchronization-for-stats-update.patch tcp-always-seek-for-minimal-rtt-in-tcp_rcv_rtt_updat.patch tcp-fix-initial-tp-rcvq_space.space-value-for-passiv.patch ipv4-route-use-this_cpu_inc-for-stats-on-preempt_rt.patch -openvswitch-stricter-validation-for-the-userspace-ac.patch pinctrl-armada-37xx-propagate-error-from-armada_37xx.patch pinctrl-armada-37xx-propagate-error-from-armada_37xx.patch-32495 pinctrl-armada-37xx-propagate-error-from-armada_37xx.patch-23419 diff --git a/queue-6.1/openvswitch-stricter-validation-for-the-userspace-ac.patch b/queue-6.1/openvswitch-stricter-validation-for-the-userspace-ac.patch deleted file mode 100644 index db87b0b481e..00000000000 --- a/queue-6.1/openvswitch-stricter-validation-for-the-userspace-ac.patch +++ /dev/null @@ -1,45 +0,0 @@ -From 86b4bc82f93ca4048cbd09dff7bfdfd242f3a944 Mon Sep 17 00:00:00 2001 -From: Sasha Levin <sashal@kernel.org> -Date: Mon, 12 May 2025 10:08:24 +0200 -Subject: openvswitch: Stricter validation for the userspace action - -From: Eelco Chaudron <echaudro@redhat.com> - -[ Upstream commit 88906f55954131ed2d3974e044b7fb48129b86ae ] - -This change enhances the robustness of validate_userspace() by ensuring -that all Netlink attributes are fully contained within the parent -attribute. The previous use of nla_parse_nested_deprecated() could -silently skip trailing or malformed attributes, as it stops parsing at -the first invalid entry. - -By switching to nla_parse_deprecated_strict(), we make sure only fully -validated attributes are copied for later use. - -Signed-off-by: Eelco Chaudron <echaudro@redhat.com> -Reviewed-by: Simon Horman <horms@kernel.org> -Acked-by: Ilya Maximets <i.maximets@ovn.org> -Link: https://patch.msgid.link/67eb414e2d250e8408bb8afeb982deca2ff2b10b.1747037304.git.echaudro@redhat.com -Signed-off-by: Jakub Kicinski <kuba@kernel.org> -Signed-off-by: Sasha Levin <sashal@kernel.org> ---- - net/openvswitch/flow_netlink.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/net/openvswitch/flow_netlink.c b/net/openvswitch/flow_netlink.c -index 0ed3953dbe529..38a7346fc895a 100644 ---- a/net/openvswitch/flow_netlink.c -+++ b/net/openvswitch/flow_netlink.c -@@ -3033,7 +3033,8 @@ static int validate_userspace(const struct nlattr *attr) - struct nlattr *a[OVS_USERSPACE_ATTR_MAX + 1]; - int error; - -- error = nla_parse_nested_deprecated(a, OVS_USERSPACE_ATTR_MAX, attr, -+ error = nla_parse_deprecated_strict(a, OVS_USERSPACE_ATTR_MAX, -+ nla_data(attr), nla_len(attr), - userspace_policy, NULL); - if (error) - return error; --- -2.39.5 - diff --git a/queue-6.1/series b/queue-6.1/series index 09951378e9e..d194180716f 100644 --- a/queue-6.1/series +++ b/queue-6.1/series @@ -402,7 +402,6 @@ tcp-always-seek-for-minimal-rtt-in-tcp_rcv_rtt_updat.patch tcp-fix-initial-tp-rcvq_space.space-value-for-passiv.patch x86-sgx-prevent-attempts-to-reclaim-poisoned-pages.patch ipv4-route-use-this_cpu_inc-for-stats-on-preempt_rt.patch -openvswitch-stricter-validation-for-the-userspace-ac.patch net-atlantic-generate-software-timestamp-just-before.patch pinctrl-armada-37xx-propagate-error-from-armada_37xx.patch pinctrl-armada-37xx-propagate-error-from-armada_37xx.patch-760 diff --git a/queue-6.12/openvswitch-stricter-validation-for-the-userspace-ac.patch b/queue-6.12/openvswitch-stricter-validation-for-the-userspace-ac.patch deleted file mode 100644 index 55edb272302..00000000000 --- a/queue-6.12/openvswitch-stricter-validation-for-the-userspace-ac.patch +++ /dev/null @@ -1,45 +0,0 @@ -From 5eb2e3ac62831fae8647f65108d462cbfcef7a80 Mon Sep 17 00:00:00 2001 -From: Sasha Levin <sashal@kernel.org> -Date: Mon, 12 May 2025 10:08:24 +0200 -Subject: openvswitch: Stricter validation for the userspace action - -From: Eelco Chaudron <echaudro@redhat.com> - -[ Upstream commit 88906f55954131ed2d3974e044b7fb48129b86ae ] - -This change enhances the robustness of validate_userspace() by ensuring -that all Netlink attributes are fully contained within the parent -attribute. The previous use of nla_parse_nested_deprecated() could -silently skip trailing or malformed attributes, as it stops parsing at -the first invalid entry. - -By switching to nla_parse_deprecated_strict(), we make sure only fully -validated attributes are copied for later use. - -Signed-off-by: Eelco Chaudron <echaudro@redhat.com> -Reviewed-by: Simon Horman <horms@kernel.org> -Acked-by: Ilya Maximets <i.maximets@ovn.org> -Link: https://patch.msgid.link/67eb414e2d250e8408bb8afeb982deca2ff2b10b.1747037304.git.echaudro@redhat.com -Signed-off-by: Jakub Kicinski <kuba@kernel.org> -Signed-off-by: Sasha Levin <sashal@kernel.org> ---- - net/openvswitch/flow_netlink.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/net/openvswitch/flow_netlink.c b/net/openvswitch/flow_netlink.c -index 305daf57a4f9d..865d5e5a0784f 100644 ---- a/net/openvswitch/flow_netlink.c -+++ b/net/openvswitch/flow_netlink.c -@@ -3049,7 +3049,8 @@ static int validate_userspace(const struct nlattr *attr) - struct nlattr *a[OVS_USERSPACE_ATTR_MAX + 1]; - int error; - -- error = nla_parse_nested_deprecated(a, OVS_USERSPACE_ATTR_MAX, attr, -+ error = nla_parse_deprecated_strict(a, OVS_USERSPACE_ATTR_MAX, -+ nla_data(attr), nla_len(attr), - userspace_policy, NULL); - if (error) - return error; --- -2.39.5 - diff --git a/queue-6.12/series b/queue-6.12/series index d3ed481104b..f4edc2d229f 100644 --- a/queue-6.12/series +++ b/queue-6.12/series @@ -222,7 +222,6 @@ x86-sgx-prevent-attempts-to-reclaim-poisoned-pages.patch ipv4-route-use-this_cpu_inc-for-stats-on-preempt_rt.patch net-page_pool-don-t-recycle-into-cache-on-preempt_rt.patch xfrm-validate-assignment-of-maximal-possible-seq-num.patch -openvswitch-stricter-validation-for-the-userspace-ac.patch net-atlantic-generate-software-timestamp-just-before.patch pinctrl-armada-37xx-propagate-error-from-armada_37xx.patch pinctrl-armada-37xx-propagate-error-from-armada_37xx.patch-28044 diff --git a/queue-6.15/openvswitch-stricter-validation-for-the-userspace-ac.patch b/queue-6.15/openvswitch-stricter-validation-for-the-userspace-ac.patch deleted file mode 100644 index e2e2b12304e..00000000000 --- a/queue-6.15/openvswitch-stricter-validation-for-the-userspace-ac.patch +++ /dev/null @@ -1,45 +0,0 @@ -From 4c578798c09b3d4e1155135530bef737a03011d0 Mon Sep 17 00:00:00 2001 -From: Sasha Levin <sashal@kernel.org> -Date: Mon, 12 May 2025 10:08:24 +0200 -Subject: openvswitch: Stricter validation for the userspace action - -From: Eelco Chaudron <echaudro@redhat.com> - -[ Upstream commit 88906f55954131ed2d3974e044b7fb48129b86ae ] - -This change enhances the robustness of validate_userspace() by ensuring -that all Netlink attributes are fully contained within the parent -attribute. The previous use of nla_parse_nested_deprecated() could -silently skip trailing or malformed attributes, as it stops parsing at -the first invalid entry. - -By switching to nla_parse_deprecated_strict(), we make sure only fully -validated attributes are copied for later use. - -Signed-off-by: Eelco Chaudron <echaudro@redhat.com> -Reviewed-by: Simon Horman <horms@kernel.org> -Acked-by: Ilya Maximets <i.maximets@ovn.org> -Link: https://patch.msgid.link/67eb414e2d250e8408bb8afeb982deca2ff2b10b.1747037304.git.echaudro@redhat.com -Signed-off-by: Jakub Kicinski <kuba@kernel.org> -Signed-off-by: Sasha Levin <sashal@kernel.org> ---- - net/openvswitch/flow_netlink.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/net/openvswitch/flow_netlink.c b/net/openvswitch/flow_netlink.c -index 518be23e48ea9..ad64bb9ab5e25 100644 ---- a/net/openvswitch/flow_netlink.c -+++ b/net/openvswitch/flow_netlink.c -@@ -3049,7 +3049,8 @@ static int validate_userspace(const struct nlattr *attr) - struct nlattr *a[OVS_USERSPACE_ATTR_MAX + 1]; - int error; - -- error = nla_parse_nested_deprecated(a, OVS_USERSPACE_ATTR_MAX, attr, -+ error = nla_parse_deprecated_strict(a, OVS_USERSPACE_ATTR_MAX, -+ nla_data(attr), nla_len(attr), - userspace_policy, NULL); - if (error) - return error; --- -2.39.5 - diff --git a/queue-6.15/series b/queue-6.15/series index 3b389031287..d435b8e1e4a 100644 --- a/queue-6.15/series +++ b/queue-6.15/series @@ -351,7 +351,6 @@ ipv4-route-use-this_cpu_inc-for-stats-on-preempt_rt.patch net-page_pool-don-t-recycle-into-cache-on-preempt_rt.patch xfrm-validate-assignment-of-maximal-possible-seq-num.patch net-phy-marvell-88q2xxx-enable-temperature-measureme.patch -openvswitch-stricter-validation-for-the-userspace-ac.patch net-atlantic-generate-software-timestamp-just-before.patch pinctrl-armada-37xx-propagate-error-from-armada_37xx.patch pinctrl-armada-37xx-propagate-error-from-armada_37xx.patch-15232 diff --git a/queue-6.6/openvswitch-stricter-validation-for-the-userspace-ac.patch b/queue-6.6/openvswitch-stricter-validation-for-the-userspace-ac.patch deleted file mode 100644 index 8c6a4c9f4c1..00000000000 --- a/queue-6.6/openvswitch-stricter-validation-for-the-userspace-ac.patch +++ /dev/null @@ -1,45 +0,0 @@ -From ac6d7d66bda5c5276c39ddbc14fb44107a28aae2 Mon Sep 17 00:00:00 2001 -From: Sasha Levin <sashal@kernel.org> -Date: Mon, 12 May 2025 10:08:24 +0200 -Subject: openvswitch: Stricter validation for the userspace action - -From: Eelco Chaudron <echaudro@redhat.com> - -[ Upstream commit 88906f55954131ed2d3974e044b7fb48129b86ae ] - -This change enhances the robustness of validate_userspace() by ensuring -that all Netlink attributes are fully contained within the parent -attribute. The previous use of nla_parse_nested_deprecated() could -silently skip trailing or malformed attributes, as it stops parsing at -the first invalid entry. - -By switching to nla_parse_deprecated_strict(), we make sure only fully -validated attributes are copied for later use. - -Signed-off-by: Eelco Chaudron <echaudro@redhat.com> -Reviewed-by: Simon Horman <horms@kernel.org> -Acked-by: Ilya Maximets <i.maximets@ovn.org> -Link: https://patch.msgid.link/67eb414e2d250e8408bb8afeb982deca2ff2b10b.1747037304.git.echaudro@redhat.com -Signed-off-by: Jakub Kicinski <kuba@kernel.org> -Signed-off-by: Sasha Levin <sashal@kernel.org> ---- - net/openvswitch/flow_netlink.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/net/openvswitch/flow_netlink.c b/net/openvswitch/flow_netlink.c -index 089ab1826e1d5..eb85384a376be 100644 ---- a/net/openvswitch/flow_netlink.c -+++ b/net/openvswitch/flow_netlink.c -@@ -3035,7 +3035,8 @@ static int validate_userspace(const struct nlattr *attr) - struct nlattr *a[OVS_USERSPACE_ATTR_MAX + 1]; - int error; - -- error = nla_parse_nested_deprecated(a, OVS_USERSPACE_ATTR_MAX, attr, -+ error = nla_parse_deprecated_strict(a, OVS_USERSPACE_ATTR_MAX, -+ nla_data(attr), nla_len(attr), - userspace_policy, NULL); - if (error) - return error; --- -2.39.5 - diff --git a/queue-6.6/series b/queue-6.6/series index 98bd0fb2636..ff05fb87f38 100644 --- a/queue-6.6/series +++ b/queue-6.6/series @@ -153,7 +153,6 @@ tcp-always-seek-for-minimal-rtt-in-tcp_rcv_rtt_updat.patch tcp-fix-initial-tp-rcvq_space.space-value-for-passiv.patch x86-sgx-prevent-attempts-to-reclaim-poisoned-pages.patch ipv4-route-use-this_cpu_inc-for-stats-on-preempt_rt.patch -openvswitch-stricter-validation-for-the-userspace-ac.patch net-atlantic-generate-software-timestamp-just-before.patch pinctrl-armada-37xx-propagate-error-from-armada_37xx.patch pinctrl-armada-37xx-propagate-error-from-armada_37xx.patch-4152 |