mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-20 03:30:09 +01:00
test-link: test bond with use_carrier=1
`use_carrier` is removed from kernel since 6.18 [1], and returns the following error if set to 0: > option obsolete, use_carrier cannot be disabled This causes a failure of test-link-linux, so let's set it to 1. [1] https://lore.kernel.org/all/2029487.1756512517@famine/
This commit is contained in:
parent
8e72e6b4fb
commit
d40e88fd02
1 changed files with 2 additions and 1 deletions
|
|
@ -123,7 +123,8 @@ software_add(NMLinkType link_type, const char *name)
|
|||
gboolean bond0_exists = !!nm_platform_link_get_by_ifname(NM_PLATFORM_GET, "bond0");
|
||||
int r;
|
||||
const NMPlatformLnkBond nm_platform_lnk_bond_default = {
|
||||
.mode = nmtst_rand_select(3, 1),
|
||||
.mode = nmtst_rand_select(3, 1),
|
||||
.use_carrier = 1,
|
||||
};
|
||||
|
||||
r = nm_platform_link_bond_add(NM_PLATFORM_GET, name, &nm_platform_lnk_bond_default, NULL);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue