]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
Drop openvswitch-stricter-validation-for-the-userspace-ac.patch
authorSasha Levin <sashal@kernel.org>
Sat, 21 Jun 2025 08:09:57 +0000 (04:09 -0400)
committerSasha Levin <sashal@kernel.org>
Sat, 21 Jun 2025 08:10:25 +0000 (04:10 -0400)
Signed-off-by: Sasha Levin <sashal@kernel.org>
14 files changed:
queue-5.10/openvswitch-stricter-validation-for-the-userspace-ac.patch [deleted file]
queue-5.10/series
queue-5.15/openvswitch-stricter-validation-for-the-userspace-ac.patch [deleted file]
queue-5.15/series
queue-5.4/openvswitch-stricter-validation-for-the-userspace-ac.patch [deleted file]
queue-5.4/series
queue-6.1/openvswitch-stricter-validation-for-the-userspace-ac.patch [deleted file]
queue-6.1/series
queue-6.12/openvswitch-stricter-validation-for-the-userspace-ac.patch [deleted file]
queue-6.12/series
queue-6.15/openvswitch-stricter-validation-for-the-userspace-ac.patch [deleted file]
queue-6.15/series
queue-6.6/openvswitch-stricter-validation-for-the-userspace-ac.patch [deleted file]
queue-6.6/series

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 (file)
index c75638a..0000000
+++ /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
-
index f3f99d57d8b9f66eacb2bb70249b15e3d543228c..157d087387757ccd7af7c12db14db91654d3de6a 100644 (file)
@@ -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 (file)
index e4d0b64..0000000
+++ /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
-
index f1956a1e5a7a98129c4cc1d5c3768856c5c5690a..47c132be66ff2d6c1e05a99a9afbda7151e51c8e 100644 (file)
@@ -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 (file)
index 3e8cf31..0000000
+++ /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
-
index edc6303c566ca4c5d453d77448898e17970ecfff..2bfbac38fb653f8e123f3a6bd04f1a6cbb27a300 100644 (file)
@@ -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 (file)
index db87b0b..0000000
+++ /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
-
index 09951378e9e847eca8d36010a233a0fe7f2ad3a5..d194180716ffdf4663bc1aca0228c55686e11137 100644 (file)
@@ -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 (file)
index 55edb27..0000000
+++ /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
-
index d3ed481104bd034a09f342d42ccbf959dc2f5e85..f4edc2d229fb55f4b7e9909b4591e43e87dfd7ca 100644 (file)
@@ -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 (file)
index e2e2b12..0000000
+++ /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
-
index 3b389031287a60084951db2969b9230805f77550..d435b8e1e4a432474960b927f093c440310429ff 100644 (file)
@@ -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 (file)
index 8c6a4c9..0000000
+++ /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
-
index 98bd0fb2636ceb40b8f481c71ab8e47c0900b380..ff05fb87f38d648b70b555b747c901428a13a1a8 100644 (file)
@@ -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