Skip to content

Commit 6906ebb

Browse files
committed
sync to upstream 1148c4098e91 ("Merge branch 'selftests-net-groundwork-for-ynl-based-tests'")
Signed-off-by: Jakub Kicinski <[email protected]>
1 parent 8649f9e commit 6906ebb

File tree

6 files changed

+899
-0
lines changed

6 files changed

+899
-0
lines changed

generated/ethtool-user.c

+14
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,20 @@ const char *ethtool_stringset_str(enum ethtool_stringset value)
9090
return ethtool_stringset_strmap[value];
9191
}
9292

93+
static const char * const ethtool_header_flags_strmap[] = {
94+
[0] = "compact-bitsets",
95+
[1] = "omit-reply",
96+
[2] = "stats",
97+
};
98+
99+
const char *ethtool_header_flags_str(int value)
100+
{
101+
value = ffs(value) - 1;
102+
if (value < 0 || value >= (int)YNL_ARRAY_SIZE(ethtool_header_flags_strmap))
103+
return NULL;
104+
return ethtool_header_flags_strmap[value];
105+
}
106+
93107
/* Policies */
94108
struct ynl_policy_attr ethtool_header_policy[ETHTOOL_A_HEADER_MAX + 1] = {
95109
[ETHTOOL_A_HEADER_DEV_INDEX] = { .name = "dev-index", .type = YNL_PT_U32, },

0 commit comments

Comments
 (0)