+++ /dev/null
-From c7d9ed4ca22f619061f14e3b2b99dbaec0ec1955 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Wed, 23 Nov 2022 15:18:28 +0100
-Subject: net: loopback: use NET_NAME_PREDICTABLE for name_assign_type
-
-From: Rasmus Villemoes <linux@rasmusvillemoes.dk>
-
-[ Upstream commit 31d929de5a112ee1b977a89c57de74710894bbbf ]
-
-When the name_assign_type attribute was introduced (commit
-685343fc3ba6, "net: add name_assign_type netdev attribute"), the
-loopback device was explicitly mentioned as one which would make use
-of NET_NAME_PREDICTABLE:
-
- The name_assign_type attribute gives hints where the interface name of a
- given net-device comes from. These values are currently defined:
-...
- NET_NAME_PREDICTABLE:
- The ifname has been assigned by the kernel in a predictable way
- that is guaranteed to avoid reuse and always be the same for a
- given device. Examples include statically created devices like
- the loopback device [...]
-
-Switch to that so that reading /sys/class/net/lo/name_assign_type
-produces something sensible instead of returning -EINVAL.
-
-Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
-Reviewed-by: Jacob Keller <jacob.e.keller@intel.com>
-Signed-off-by: David S. Miller <davem@davemloft.net>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/net/loopback.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/net/loopback.c b/drivers/net/loopback.c
-index 30612497643c..daef41ce2349 100644
---- a/drivers/net/loopback.c
-+++ b/drivers/net/loopback.c
-@@ -206,7 +206,7 @@ static __net_init int loopback_net_init(struct net *net)
- int err;
-
- err = -ENOMEM;
-- dev = alloc_netdev(0, "lo", NET_NAME_UNKNOWN, loopback_setup);
-+ dev = alloc_netdev(0, "lo", NET_NAME_PREDICTABLE, loopback_setup);
- if (!dev)
- goto out;
-
---
-2.35.1
-
asoc-ops-check-bounds-for-second-channel-in-snd_soc_.patch
can-sja1000-fix-size-of-ocr_mode_mask-define.patch
can-mcba_usb-fix-termination-command-argument.patch
-net-loopback-use-net_name_predictable-for-name_assig.patch
+++ /dev/null
-From 7bb8ba1f4b99cb06a42cba9d4972e877a4adc1e1 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Wed, 23 Nov 2022 15:18:28 +0100
-Subject: net: loopback: use NET_NAME_PREDICTABLE for name_assign_type
-
-From: Rasmus Villemoes <linux@rasmusvillemoes.dk>
-
-[ Upstream commit 31d929de5a112ee1b977a89c57de74710894bbbf ]
-
-When the name_assign_type attribute was introduced (commit
-685343fc3ba6, "net: add name_assign_type netdev attribute"), the
-loopback device was explicitly mentioned as one which would make use
-of NET_NAME_PREDICTABLE:
-
- The name_assign_type attribute gives hints where the interface name of a
- given net-device comes from. These values are currently defined:
-...
- NET_NAME_PREDICTABLE:
- The ifname has been assigned by the kernel in a predictable way
- that is guaranteed to avoid reuse and always be the same for a
- given device. Examples include statically created devices like
- the loopback device [...]
-
-Switch to that so that reading /sys/class/net/lo/name_assign_type
-produces something sensible instead of returning -EINVAL.
-
-Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
-Reviewed-by: Jacob Keller <jacob.e.keller@intel.com>
-Signed-off-by: David S. Miller <davem@davemloft.net>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/net/loopback.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/net/loopback.c b/drivers/net/loopback.c
-index d192936b76cf..7863918592db 100644
---- a/drivers/net/loopback.c
-+++ b/drivers/net/loopback.c
-@@ -210,7 +210,7 @@ static __net_init int loopback_net_init(struct net *net)
- int err;
-
- err = -ENOMEM;
-- dev = alloc_netdev(0, "lo", NET_NAME_UNKNOWN, loopback_setup);
-+ dev = alloc_netdev(0, "lo", NET_NAME_PREDICTABLE, loopback_setup);
- if (!dev)
- goto out;
-
---
-2.35.1
-
pinctrl-meditatek-startup-with-the-irqs-disabled.patch
can-sja1000-fix-size-of-ocr_mode_mask-define.patch
can-mcba_usb-fix-termination-command-argument.patch
-net-loopback-use-net_name_predictable-for-name_assig.patch
+++ /dev/null
-From c5e2c0da142613b20323b8a4029bf63f8a04bcb4 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Wed, 23 Nov 2022 15:18:28 +0100
-Subject: net: loopback: use NET_NAME_PREDICTABLE for name_assign_type
-
-From: Rasmus Villemoes <linux@rasmusvillemoes.dk>
-
-[ Upstream commit 31d929de5a112ee1b977a89c57de74710894bbbf ]
-
-When the name_assign_type attribute was introduced (commit
-685343fc3ba6, "net: add name_assign_type netdev attribute"), the
-loopback device was explicitly mentioned as one which would make use
-of NET_NAME_PREDICTABLE:
-
- The name_assign_type attribute gives hints where the interface name of a
- given net-device comes from. These values are currently defined:
-...
- NET_NAME_PREDICTABLE:
- The ifname has been assigned by the kernel in a predictable way
- that is guaranteed to avoid reuse and always be the same for a
- given device. Examples include statically created devices like
- the loopback device [...]
-
-Switch to that so that reading /sys/class/net/lo/name_assign_type
-produces something sensible instead of returning -EINVAL.
-
-Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
-Reviewed-by: Jacob Keller <jacob.e.keller@intel.com>
-Signed-off-by: David S. Miller <davem@davemloft.net>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/net/loopback.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/net/loopback.c b/drivers/net/loopback.c
-index 1b65f0f975cf..f04f9a87840e 100644
---- a/drivers/net/loopback.c
-+++ b/drivers/net/loopback.c
-@@ -194,7 +194,7 @@ static __net_init int loopback_net_init(struct net *net)
- int err;
-
- err = -ENOMEM;
-- dev = alloc_netdev(0, "lo", NET_NAME_UNKNOWN, loopback_setup);
-+ dev = alloc_netdev(0, "lo", NET_NAME_PREDICTABLE, loopback_setup);
- if (!dev)
- goto out;
-
---
-2.35.1
-
block-unhash-blkdev-part-inode-when-the-part-is-deleted.patch
asoc-ops-check-bounds-for-second-channel-in-snd_soc_.patch
can-sja1000-fix-size-of-ocr_mode_mask-define.patch
-net-loopback-use-net_name_predictable-for-name_assig.patch
+++ /dev/null
-From d923a2750a9bcf9b35c2c3fba12a9f20a339653a Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Wed, 23 Nov 2022 15:18:28 +0100
-Subject: net: loopback: use NET_NAME_PREDICTABLE for name_assign_type
-
-From: Rasmus Villemoes <linux@rasmusvillemoes.dk>
-
-[ Upstream commit 31d929de5a112ee1b977a89c57de74710894bbbf ]
-
-When the name_assign_type attribute was introduced (commit
-685343fc3ba6, "net: add name_assign_type netdev attribute"), the
-loopback device was explicitly mentioned as one which would make use
-of NET_NAME_PREDICTABLE:
-
- The name_assign_type attribute gives hints where the interface name of a
- given net-device comes from. These values are currently defined:
-...
- NET_NAME_PREDICTABLE:
- The ifname has been assigned by the kernel in a predictable way
- that is guaranteed to avoid reuse and always be the same for a
- given device. Examples include statically created devices like
- the loopback device [...]
-
-Switch to that so that reading /sys/class/net/lo/name_assign_type
-produces something sensible instead of returning -EINVAL.
-
-Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
-Reviewed-by: Jacob Keller <jacob.e.keller@intel.com>
-Signed-off-by: David S. Miller <davem@davemloft.net>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/net/loopback.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/net/loopback.c b/drivers/net/loopback.c
-index a1c77cc00416..498e5c8013ef 100644
---- a/drivers/net/loopback.c
-+++ b/drivers/net/loopback.c
-@@ -208,7 +208,7 @@ static __net_init int loopback_net_init(struct net *net)
- int err;
-
- err = -ENOMEM;
-- dev = alloc_netdev(0, "lo", NET_NAME_UNKNOWN, loopback_setup);
-+ dev = alloc_netdev(0, "lo", NET_NAME_PREDICTABLE, loopback_setup);
- if (!dev)
- goto out;
-
---
-2.35.1
-
pinctrl-meditatek-startup-with-the-irqs-disabled.patch
can-sja1000-fix-size-of-ocr_mode_mask-define.patch
can-mcba_usb-fix-termination-command-argument.patch
-net-loopback-use-net_name_predictable-for-name_assig.patch
asoc-cs42l51-correct-pga-volume-minimum-value.patch
nvme-pci-clear-the-prp2-field-when-not-used.patch
+++ /dev/null
-From bc3f35b00fd13e632eb05b76a8d95a0d8ca601c0 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Wed, 23 Nov 2022 15:18:28 +0100
-Subject: net: loopback: use NET_NAME_PREDICTABLE for name_assign_type
-
-From: Rasmus Villemoes <linux@rasmusvillemoes.dk>
-
-[ Upstream commit 31d929de5a112ee1b977a89c57de74710894bbbf ]
-
-When the name_assign_type attribute was introduced (commit
-685343fc3ba6, "net: add name_assign_type netdev attribute"), the
-loopback device was explicitly mentioned as one which would make use
-of NET_NAME_PREDICTABLE:
-
- The name_assign_type attribute gives hints where the interface name of a
- given net-device comes from. These values are currently defined:
-...
- NET_NAME_PREDICTABLE:
- The ifname has been assigned by the kernel in a predictable way
- that is guaranteed to avoid reuse and always be the same for a
- given device. Examples include statically created devices like
- the loopback device [...]
-
-Switch to that so that reading /sys/class/net/lo/name_assign_type
-produces something sensible instead of returning -EINVAL.
-
-Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
-Reviewed-by: Jacob Keller <jacob.e.keller@intel.com>
-Signed-off-by: David S. Miller <davem@davemloft.net>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/net/loopback.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/net/loopback.c b/drivers/net/loopback.c
-index a1c77cc00416..498e5c8013ef 100644
---- a/drivers/net/loopback.c
-+++ b/drivers/net/loopback.c
-@@ -208,7 +208,7 @@ static __net_init int loopback_net_init(struct net *net)
- int err;
-
- err = -ENOMEM;
-- dev = alloc_netdev(0, "lo", NET_NAME_UNKNOWN, loopback_setup);
-+ dev = alloc_netdev(0, "lo", NET_NAME_PREDICTABLE, loopback_setup);
- if (!dev)
- goto out;
-
---
-2.35.1
-
can-sja1000-fix-size-of-ocr_mode_mask-define.patch
can-mcba_usb-fix-termination-command-argument.patch
net-fec-don-t-reset-irq-coalesce-settings-to-default.patch
-net-loopback-use-net_name_predictable-for-name_assig.patch
asoc-cs42l51-correct-pga-volume-minimum-value.patch
perf-fix-perf_pending_task-uaf.patch
nvme-pci-clear-the-prp2-field-when-not-used.patch
+++ /dev/null
-From bd95408243ab72688b1c4121ce6e488fb2582584 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Wed, 23 Nov 2022 15:18:28 +0100
-Subject: net: loopback: use NET_NAME_PREDICTABLE for name_assign_type
-
-From: Rasmus Villemoes <linux@rasmusvillemoes.dk>
-
-[ Upstream commit 31d929de5a112ee1b977a89c57de74710894bbbf ]
-
-When the name_assign_type attribute was introduced (commit
-685343fc3ba6, "net: add name_assign_type netdev attribute"), the
-loopback device was explicitly mentioned as one which would make use
-of NET_NAME_PREDICTABLE:
-
- The name_assign_type attribute gives hints where the interface name of a
- given net-device comes from. These values are currently defined:
-...
- NET_NAME_PREDICTABLE:
- The ifname has been assigned by the kernel in a predictable way
- that is guaranteed to avoid reuse and always be the same for a
- given device. Examples include statically created devices like
- the loopback device [...]
-
-Switch to that so that reading /sys/class/net/lo/name_assign_type
-produces something sensible instead of returning -EINVAL.
-
-Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
-Reviewed-by: Jacob Keller <jacob.e.keller@intel.com>
-Signed-off-by: David S. Miller <davem@davemloft.net>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/net/loopback.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/net/loopback.c b/drivers/net/loopback.c
-index 14545a8797a8..7788f72c262e 100644
---- a/drivers/net/loopback.c
-+++ b/drivers/net/loopback.c
-@@ -206,7 +206,7 @@ static __net_init int loopback_net_init(struct net *net)
- int err;
-
- err = -ENOMEM;
-- dev = alloc_netdev(0, "lo", NET_NAME_UNKNOWN, loopback_setup);
-+ dev = alloc_netdev(0, "lo", NET_NAME_PREDICTABLE, loopback_setup);
- if (!dev)
- goto out;
-
---
-2.35.1
-
pinctrl-meditatek-startup-with-the-irqs-disabled.patch
can-sja1000-fix-size-of-ocr_mode_mask-define.patch
can-mcba_usb-fix-termination-command-argument.patch
-net-loopback-use-net_name_predictable-for-name_assig.patch
+++ /dev/null
-From fa4bf0c84668bf742839a163733332eeb7b1cd81 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Wed, 23 Nov 2022 15:18:28 +0100
-Subject: net: loopback: use NET_NAME_PREDICTABLE for name_assign_type
-
-From: Rasmus Villemoes <linux@rasmusvillemoes.dk>
-
-[ Upstream commit 31d929de5a112ee1b977a89c57de74710894bbbf ]
-
-When the name_assign_type attribute was introduced (commit
-685343fc3ba6, "net: add name_assign_type netdev attribute"), the
-loopback device was explicitly mentioned as one which would make use
-of NET_NAME_PREDICTABLE:
-
- The name_assign_type attribute gives hints where the interface name of a
- given net-device comes from. These values are currently defined:
-...
- NET_NAME_PREDICTABLE:
- The ifname has been assigned by the kernel in a predictable way
- that is guaranteed to avoid reuse and always be the same for a
- given device. Examples include statically created devices like
- the loopback device [...]
-
-Switch to that so that reading /sys/class/net/lo/name_assign_type
-produces something sensible instead of returning -EINVAL.
-
-Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
-Reviewed-by: Jacob Keller <jacob.e.keller@intel.com>
-Signed-off-by: David S. Miller <davem@davemloft.net>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/net/loopback.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/net/loopback.c b/drivers/net/loopback.c
-index 14e8d04cb434..2e9742952c4e 100644
---- a/drivers/net/loopback.c
-+++ b/drivers/net/loopback.c
-@@ -211,7 +211,7 @@ static __net_init int loopback_net_init(struct net *net)
- int err;
-
- err = -ENOMEM;
-- dev = alloc_netdev(0, "lo", NET_NAME_UNKNOWN, loopback_setup);
-+ dev = alloc_netdev(0, "lo", NET_NAME_PREDICTABLE, loopback_setup);
- if (!dev)
- goto out;
-
---
-2.35.1
-
can-sja1000-fix-size-of-ocr_mode_mask-define.patch
can-mcba_usb-fix-termination-command-argument.patch
net-fec-don-t-reset-irq-coalesce-settings-to-default.patch
-net-loopback-use-net_name_predictable-for-name_assig.patch
asoc-cs42l51-correct-pga-volume-minimum-value.patch
perf-fix-perf_pending_task-uaf.patch
nvme-pci-clear-the-prp2-field-when-not-used.patch