Commit d9faa58 1 parent 1f4a1d7 commit d9faa58 Copy full SHA for d9faa58
File tree 2 files changed +13
-0
lines changed
2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 69
69
filename
70
70
FIXME
71
71
FlexCounter
72
+ genetlink
72
73
getInstance
73
74
getSwitchId
74
75
getVid
@@ -111,10 +112,12 @@ metadata
111
112
mlnx
112
113
mpls
113
114
MTU
115
+ multicast
114
116
mutex
115
117
mutexes
116
118
namespace
117
119
namespaces
120
+ netdev
118
121
NHG
119
122
nhgm
120
123
nlog
Original file line number Diff line number Diff line change @@ -1122,6 +1122,16 @@ sai_status_t vs_create_hostif_tap_interface(
1122
1122
return SAI_STATUS_FAILURE;
1123
1123
}
1124
1124
1125
+ /* The genetlink host interface is created to associate trap group to genetlink family and multicast group
1126
+ * created by driver. It does not create any netdev interface. Hence skipping tap interface creation
1127
+ */
1128
+ if (attr_type->value .s32 == SAI_HOSTIF_TYPE_GENETLINK)
1129
+ {
1130
+ SWSS_LOG_DEBUG (" Skipping tap create for hostif type genetlink" );
1131
+
1132
+ return SAI_STATUS_SUCCESS;
1133
+ }
1134
+
1125
1135
if (attr_type->value .s32 != SAI_HOSTIF_TYPE_NETDEV)
1126
1136
{
1127
1137
SWSS_LOG_ERROR (" only SAI_HOSTIF_TYPE_NETDEV is supported" );
You can’t perform that action at this time.
0 commit comments