You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.9 KiB
51 lines
1.9 KiB
8 months ago
|
From 33351e103734188a4a30b88e7f2ea0613d628599 Mon Sep 17 00:00:00 2001
|
||
|
From: Jan Macku <jamacku@redhat.com>
|
||
|
Date: Thu, 16 Feb 2023 15:56:52 +0100
|
||
|
Subject: [PATCH] udev/net_id: introduce naming scheme for RHEL-8.8
|
||
|
|
||
|
RHEL-only
|
||
|
|
||
|
Resolves: #2170499
|
||
|
---
|
||
|
man/systemd.net-naming-scheme.xml | 6 ++++++
|
||
|
src/udev/udev-builtin-net_id.c | 2 ++
|
||
|
2 files changed, 8 insertions(+)
|
||
|
|
||
|
diff --git a/man/systemd.net-naming-scheme.xml b/man/systemd.net-naming-scheme.xml
|
||
|
index a567483995..3cc7719e99 100644
|
||
|
--- a/man/systemd.net-naming-scheme.xml
|
||
|
+++ b/man/systemd.net-naming-scheme.xml
|
||
|
@@ -328,6 +328,12 @@
|
||
|
for that, the limit is increased to now 65535.</para></listitem>
|
||
|
</varlistentry>
|
||
|
|
||
|
+ <varlistentry>
|
||
|
+ <term><constant>rhel-8.8</constant></term>
|
||
|
+
|
||
|
+ <para>Same as naming scheme <constant>rhel-8.7</constant>.</para>
|
||
|
+ </varlistentry>
|
||
|
+
|
||
|
<para>Note that <constant>latest</constant> may be used to denote the latest scheme known to this
|
||
|
particular version of systemd.</para>
|
||
|
</variablelist>
|
||
|
diff --git a/src/udev/udev-builtin-net_id.c b/src/udev/udev-builtin-net_id.c
|
||
|
index df84acf27c..ef2bb1b08e 100644
|
||
|
--- a/src/udev/udev-builtin-net_id.c
|
||
|
+++ b/src/udev/udev-builtin-net_id.c
|
||
|
@@ -141,6 +141,7 @@ typedef enum NamingSchemeFlags {
|
||
|
NAMING_RHEL_8_5 = NAMING_RHEL_8_4,
|
||
|
NAMING_RHEL_8_6 = NAMING_RHEL_8_4,
|
||
|
NAMING_RHEL_8_7 = NAMING_RHEL_8_4|NAMING_SLOT_FUNCTION_ID|NAMING_16BIT_INDEX,
|
||
|
+ NAMING_RHEL_8_8 = NAMING_RHEL_8_7,
|
||
|
|
||
|
_NAMING_SCHEME_FLAGS_INVALID = -1,
|
||
|
} NamingSchemeFlags;
|
||
|
@@ -161,6 +162,7 @@ static const NamingScheme naming_schemes[] = {
|
||
|
{ "rhel-8.5", NAMING_RHEL_8_5 },
|
||
|
{ "rhel-8.6", NAMING_RHEL_8_6 },
|
||
|
{ "rhel-8.7", NAMING_RHEL_8_7 },
|
||
|
+ { "rhel-8.8", NAMING_RHEL_8_8 },
|
||
|
/* … add more schemes here, as the logic to name devices is updated … */
|
||
|
};
|
||
|
|