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.
28 lines
1.1 KiB
28 lines
1.1 KiB
2 years ago
|
From 270e3f46d1fe474eb3b4cd6789520b36a740ef32 Mon Sep 17 00:00:00 2001
|
||
|
From: David Tardon <dtardon@redhat.com>
|
||
|
Date: Wed, 8 Dec 2021 09:49:24 +0100
|
||
|
Subject: [PATCH] Do not fail if the same alt. name is set again
|
||
|
|
||
|
This is a workaround for a kernel bug.
|
||
|
|
||
|
RHEL-only
|
||
|
|
||
|
Related: #2005008
|
||
|
---
|
||
|
src/udev/net/link-config.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/udev/net/link-config.c b/src/udev/net/link-config.c
|
||
|
index 5220f247f0..9046c5bd2a 100644
|
||
|
--- a/src/udev/net/link-config.c
|
||
|
+++ b/src/udev/net/link-config.c
|
||
|
@@ -526,7 +526,7 @@ int link_config_apply(link_config_ctx *ctx, link_config *config,
|
||
|
strv_uniq(altnames);
|
||
|
strv_sort(altnames);
|
||
|
r = rtnl_set_link_alternative_names(&ctx->rtnl, ifindex, altnames);
|
||
|
- if (r == -EOPNOTSUPP)
|
||
|
+ if (IN_SET(r, -EOPNOTSUPP, -EEXIST))
|
||
|
log_debug_errno(r, "Could not set AlternativeName= or apply AlternativeNamesPolicy= on %s, ignoring: %m", old_name);
|
||
|
else if (r < 0)
|
||
|
return log_warning_errno(r, "Could not set AlternativeName= or apply AlternativeNamesPolicy= on %s: %m", old_name);
|