6cfc035196
Signed-off-by: Gris Ge <fge@redhat.com>
39 lines
1.1 KiB
Diff
39 lines
1.1 KiB
Diff
From b37434e3228b269728e9d7875993417de54d1330 Mon Sep 17 00:00:00 2001
|
|
From: Gris Ge <fge@redhat.com>
|
|
Date: Thu, 15 Dec 2022 17:11:07 +0800
|
|
Subject: [PATCH] iface: Include VRF as support type
|
|
|
|
We accidentally forgot VRF as supported type.
|
|
The existing VRF test was skipped by CI hence not been found initially.
|
|
|
|
Manually run the test in RHEL host works well.
|
|
|
|
Signed-off-by: Gris Ge <fge@redhat.com>
|
|
---
|
|
rust/src/lib/query_apply/iface.rs | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/rust/src/lib/query_apply/iface.rs b/rust/src/lib/query_apply/iface.rs
|
|
index a379960b..888bcbb4 100644
|
|
--- a/rust/src/lib/query_apply/iface.rs
|
|
+++ b/rust/src/lib/query_apply/iface.rs
|
|
@@ -259,7 +259,7 @@ impl Interface {
|
|
}
|
|
|
|
impl InterfaceType {
|
|
- pub(crate) const SUPPORTED_LIST: [InterfaceType; 13] = [
|
|
+ pub(crate) const SUPPORTED_LIST: [InterfaceType; 14] = [
|
|
InterfaceType::Bond,
|
|
InterfaceType::LinuxBridge,
|
|
InterfaceType::Dummy,
|
|
@@ -273,5 +273,6 @@ impl InterfaceType {
|
|
InterfaceType::Vxlan,
|
|
InterfaceType::InfiniBand,
|
|
InterfaceType::Loopback,
|
|
+ InterfaceType::Vrf,
|
|
];
|
|
}
|
|
--
|
|
2.39.0
|
|
|