1 // SPDX-License-Identifier: GPL-2.0-only
3 #include <linux/ethtool_netlink.h>
4 #include <linux/bitmap.h>
8 /* Some bitmaps are internally represented as an array of unsigned long, some
9 * as an array of u32 (some even as single u32 for now). To avoid the need of
10 * wrappers on caller side, we provide two set of functions: those with "32"
11 * suffix in their names expect u32 based bitmaps, those without it expect
12 * unsigned long bitmaps.
15 static u32 ethnl_lower_bits(unsigned int n)
17 return ~(u32)0 >> (32 - n % 32);
20 static u32 ethnl_upper_bits(unsigned int n)
22 return ~(u32)0 << (n % 32);
26 * ethnl_bitmap32_clear() - Clear u32 based bitmap
27 * @dst: bitmap to clear
28 * @start: beginning of the interval
29 * @end: end of the interval
30 * @mod: set if bitmap was modified
32 * Clear @nbits bits of a bitmap with indices @start <= i < @end
34 static void ethnl_bitmap32_clear(u32 *dst, unsigned int start, unsigned int end,
37 unsigned int start_word = start / 32;
38 unsigned int end_word = end / 32;
46 mask = ethnl_upper_bits(start);
47 if (end_word == start_word) {
48 mask &= ethnl_lower_bits(end);
49 if (dst[start_word] & mask) {
50 dst[start_word] &= ~mask;
55 if (dst[start_word] & mask) {
56 dst[start_word] &= ~mask;
62 for (i = start_word; i < end_word; i++) {
69 mask = ethnl_lower_bits(end);
70 if (dst[end_word] & mask) {
71 dst[end_word] &= ~mask;
78 * ethnl_bitmap32_not_zero() - Check if any bit is set in an interval
79 * @map: bitmap to test
80 * @start: beginning of the interval
81 * @end: end of the interval
83 * Return: true if there is non-zero bit with index @start <= i < @end,
84 * false if the whole interval is zero
86 static bool ethnl_bitmap32_not_zero(const u32 *map, unsigned int start,
89 unsigned int start_word = start / 32;
90 unsigned int end_word = end / 32;
97 mask = ethnl_upper_bits(start);
98 if (end_word == start_word) {
99 mask &= ethnl_lower_bits(end);
100 return map[start_word] & mask;
102 if (map[start_word] & mask)
107 if (!memchr_inv(map + start_word, '\0',
108 (end_word - start_word) * sizeof(u32)))
112 return map[end_word] & ethnl_lower_bits(end);
116 * ethnl_bitmap32_update() - Modify u32 based bitmap according to value/mask
118 * @dst: bitmap to update
119 * @nbits: bit size of the bitmap
120 * @value: values to set
121 * @mask: mask of bits to set
122 * @mod: set to true if bitmap is modified, preserve if not
124 * Set bits in @dst bitmap which are set in @mask to values from @value, leave
125 * the rest untouched. If destination bitmap was modified, set @mod to true,
126 * leave as it is if not.
128 static void ethnl_bitmap32_update(u32 *dst, unsigned int nbits,
129 const u32 *value, const u32 *mask, bool *mod)
132 u32 real_mask = mask ? *mask : ~(u32)0;
136 real_mask &= ethnl_lower_bits(nbits);
137 new_value = (*dst & ~real_mask) | (*value & real_mask);
138 if (new_value != *dst) {
153 static bool ethnl_bitmap32_test_bit(const u32 *map, unsigned int index)
155 return map[index / 32] & (1U << (index % 32));
159 * ethnl_bitset32_size() - Calculate size of bitset nested attribute
160 * @val: value bitmap (u32 based)
161 * @mask: mask bitmap (u32 based, optional)
162 * @nbits: bit length of the bitset
163 * @names: array of bit names (optional)
164 * @compact: assume compact format for output
166 * Estimate length of netlink attribute composed by a later call to
167 * ethnl_put_bitset32() call with the same arguments.
169 * Return: negative error code or attribute length estimate
171 int ethnl_bitset32_size(const u32 *val, const u32 *mask, unsigned int nbits,
172 ethnl_string_array_t names, bool compact)
174 unsigned int len = 0;
178 len += nla_total_size(sizeof(u32));
180 len += nla_total_size(sizeof(u32));
183 unsigned int nwords = DIV_ROUND_UP(nbits, 32);
186 len += (mask ? 2 : 1) * nla_total_size(nwords * sizeof(u32));
188 unsigned int bits_len = 0;
189 unsigned int bit_len, i;
191 for (i = 0; i < nbits; i++) {
192 const char *name = names ? names[i] : NULL;
194 if (!ethnl_bitmap32_test_bit(mask ?: val, i))
197 bit_len = nla_total_size(sizeof(u32));
200 bit_len += ethnl_strz_size(name);
202 if (mask && ethnl_bitmap32_test_bit(val, i))
203 bit_len += nla_total_size(0);
206 bits_len += nla_total_size(bit_len);
209 len += nla_total_size(bits_len);
213 return nla_total_size(len);
217 * ethnl_put_bitset32() - Put a bitset nest into a message
218 * @skb: skb with the message
219 * @attrtype: attribute type for the bitset nest
220 * @val: value bitmap (u32 based)
221 * @mask: mask bitmap (u32 based, optional)
222 * @nbits: bit length of the bitset
223 * @names: array of bit names (optional)
224 * @compact: use compact format for the output
226 * Compose a nested attribute representing a bitset. If @mask is null, simple
227 * bitmap (bit list) is created, if @mask is provided, represent a value/mask
228 * pair. Bit names are only used in verbose mode and when provided by calller.
230 * Return: 0 on success, negative error value on error
232 int ethnl_put_bitset32(struct sk_buff *skb, int attrtype, const u32 *val,
233 const u32 *mask, unsigned int nbits,
234 ethnl_string_array_t names, bool compact)
239 nest = nla_nest_start(skb, attrtype);
243 if (!mask && nla_put_flag(skb, ETHTOOL_A_BITSET_NOMASK))
244 goto nla_put_failure;
245 if (nla_put_u32(skb, ETHTOOL_A_BITSET_SIZE, nbits))
246 goto nla_put_failure;
248 unsigned int nwords = DIV_ROUND_UP(nbits, 32);
249 unsigned int nbytes = nwords * sizeof(u32);
252 attr = nla_reserve(skb, ETHTOOL_A_BITSET_VALUE, nbytes);
254 goto nla_put_failure;
255 dst = nla_data(attr);
256 memcpy(dst, val, nbytes);
258 dst[nwords - 1] &= ethnl_lower_bits(nbits);
261 attr = nla_reserve(skb, ETHTOOL_A_BITSET_MASK, nbytes);
263 goto nla_put_failure;
264 dst = nla_data(attr);
265 memcpy(dst, mask, nbytes);
267 dst[nwords - 1] &= ethnl_lower_bits(nbits);
273 bits = nla_nest_start(skb, ETHTOOL_A_BITSET_BITS);
275 goto nla_put_failure;
276 for (i = 0; i < nbits; i++) {
277 const char *name = names ? names[i] : NULL;
279 if (!ethnl_bitmap32_test_bit(mask ?: val, i))
281 attr = nla_nest_start(skb, ETHTOOL_A_BITSET_BITS_BIT);
283 goto nla_put_failure;
284 if (nla_put_u32(skb, ETHTOOL_A_BITSET_BIT_INDEX, i))
285 goto nla_put_failure;
287 ethnl_put_strz(skb, ETHTOOL_A_BITSET_BIT_NAME, name))
288 goto nla_put_failure;
289 if (mask && ethnl_bitmap32_test_bit(val, i) &&
290 nla_put_flag(skb, ETHTOOL_A_BITSET_BIT_VALUE))
291 goto nla_put_failure;
292 nla_nest_end(skb, attr);
294 nla_nest_end(skb, bits);
297 nla_nest_end(skb, nest);
301 nla_nest_cancel(skb, nest);
305 static const struct nla_policy bitset_policy[] = {
306 [ETHTOOL_A_BITSET_NOMASK] = { .type = NLA_FLAG },
307 [ETHTOOL_A_BITSET_SIZE] = NLA_POLICY_MAX(NLA_U32,
308 ETHNL_MAX_BITSET_SIZE),
309 [ETHTOOL_A_BITSET_BITS] = { .type = NLA_NESTED },
310 [ETHTOOL_A_BITSET_VALUE] = { .type = NLA_BINARY },
311 [ETHTOOL_A_BITSET_MASK] = { .type = NLA_BINARY },
314 static const struct nla_policy bit_policy[] = {
315 [ETHTOOL_A_BITSET_BIT_INDEX] = { .type = NLA_U32 },
316 [ETHTOOL_A_BITSET_BIT_NAME] = { .type = NLA_NUL_STRING },
317 [ETHTOOL_A_BITSET_BIT_VALUE] = { .type = NLA_FLAG },
321 * ethnl_bitset_is_compact() - check if bitset attribute represents a compact
323 * @bitset: nested attribute representing a bitset
324 * @compact: pointer for return value
326 * Return: 0 on success, negative error code on failure
328 int ethnl_bitset_is_compact(const struct nlattr *bitset, bool *compact)
330 struct nlattr *tb[ARRAY_SIZE(bitset_policy)];
333 ret = nla_parse_nested(tb, ARRAY_SIZE(bitset_policy) - 1, bitset,
334 bitset_policy, NULL);
338 if (tb[ETHTOOL_A_BITSET_BITS]) {
339 if (tb[ETHTOOL_A_BITSET_VALUE] || tb[ETHTOOL_A_BITSET_MASK])
344 if (!tb[ETHTOOL_A_BITSET_SIZE] || !tb[ETHTOOL_A_BITSET_VALUE])
352 * ethnl_name_to_idx() - look up string index for a name
353 * @names: array of ETH_GSTRING_LEN sized strings
354 * @n_names: number of strings in the array
355 * @name: name to look up
357 * Return: index of the string if found, -ENOENT if not found
359 static int ethnl_name_to_idx(ethnl_string_array_t names, unsigned int n_names,
367 for (i = 0; i < n_names; i++) {
368 /* names[i] may not be null terminated */
369 if (!strncmp(names[i], name, ETH_GSTRING_LEN) &&
370 strlen(name) <= ETH_GSTRING_LEN)
377 static int ethnl_parse_bit(unsigned int *index, bool *val, unsigned int nbits,
378 const struct nlattr *bit_attr, bool no_mask,
379 ethnl_string_array_t names,
380 struct netlink_ext_ack *extack)
382 struct nlattr *tb[ARRAY_SIZE(bit_policy)];
385 ret = nla_parse_nested(tb, ARRAY_SIZE(bit_policy) - 1, bit_attr,
390 if (tb[ETHTOOL_A_BITSET_BIT_INDEX]) {
393 idx = nla_get_u32(tb[ETHTOOL_A_BITSET_BIT_INDEX]);
395 NL_SET_ERR_MSG_ATTR(extack,
396 tb[ETHTOOL_A_BITSET_BIT_INDEX],
397 "bit index too high");
400 name = names ? names[idx] : NULL;
401 if (tb[ETHTOOL_A_BITSET_BIT_NAME] && name &&
402 strncmp(nla_data(tb[ETHTOOL_A_BITSET_BIT_NAME]), name,
403 nla_len(tb[ETHTOOL_A_BITSET_BIT_NAME]))) {
404 NL_SET_ERR_MSG_ATTR(extack, bit_attr,
405 "bit index and name mismatch");
408 } else if (tb[ETHTOOL_A_BITSET_BIT_NAME]) {
409 idx = ethnl_name_to_idx(names, nbits,
410 nla_data(tb[ETHTOOL_A_BITSET_BIT_NAME]));
412 NL_SET_ERR_MSG_ATTR(extack,
413 tb[ETHTOOL_A_BITSET_BIT_NAME],
414 "bit name not found");
418 NL_SET_ERR_MSG_ATTR(extack, bit_attr,
419 "neither bit index nor name specified");
424 *val = no_mask || tb[ETHTOOL_A_BITSET_BIT_VALUE];
429 ethnl_update_bitset32_verbose(u32 *bitmap, unsigned int nbits,
430 const struct nlattr *attr, struct nlattr **tb,
431 ethnl_string_array_t names,
432 struct netlink_ext_ack *extack, bool *mod)
434 struct nlattr *bit_attr;
439 if (tb[ETHTOOL_A_BITSET_VALUE]) {
440 NL_SET_ERR_MSG_ATTR(extack, tb[ETHTOOL_A_BITSET_VALUE],
441 "value only allowed in compact bitset");
444 if (tb[ETHTOOL_A_BITSET_MASK]) {
445 NL_SET_ERR_MSG_ATTR(extack, tb[ETHTOOL_A_BITSET_MASK],
446 "mask only allowed in compact bitset");
450 no_mask = tb[ETHTOOL_A_BITSET_NOMASK];
452 ethnl_bitmap32_clear(bitmap, 0, nbits, mod);
454 nla_for_each_nested(bit_attr, tb[ETHTOOL_A_BITSET_BITS], rem) {
455 bool old_val, new_val;
458 if (nla_type(bit_attr) != ETHTOOL_A_BITSET_BITS_BIT) {
459 NL_SET_ERR_MSG_ATTR(extack, bit_attr,
460 "only ETHTOOL_A_BITSET_BITS_BIT allowed in ETHTOOL_A_BITSET_BITS");
463 ret = ethnl_parse_bit(&idx, &new_val, nbits, bit_attr, no_mask,
467 old_val = bitmap[idx / 32] & ((u32)1 << (idx % 32));
468 if (new_val != old_val) {
470 bitmap[idx / 32] |= ((u32)1 << (idx % 32));
472 bitmap[idx / 32] &= ~((u32)1 << (idx % 32));
480 static int ethnl_compact_sanity_checks(unsigned int nbits,
481 const struct nlattr *nest,
483 struct netlink_ext_ack *extack)
485 bool no_mask = tb[ETHTOOL_A_BITSET_NOMASK];
486 unsigned int attr_nbits, attr_nwords;
487 const struct nlattr *test_attr;
489 if (no_mask && tb[ETHTOOL_A_BITSET_MASK]) {
490 NL_SET_ERR_MSG_ATTR(extack, tb[ETHTOOL_A_BITSET_MASK],
491 "mask not allowed in list bitset");
494 if (!tb[ETHTOOL_A_BITSET_SIZE]) {
495 NL_SET_ERR_MSG_ATTR(extack, nest,
496 "missing size in compact bitset");
499 if (!tb[ETHTOOL_A_BITSET_VALUE]) {
500 NL_SET_ERR_MSG_ATTR(extack, nest,
501 "missing value in compact bitset");
504 if (!no_mask && !tb[ETHTOOL_A_BITSET_MASK]) {
505 NL_SET_ERR_MSG_ATTR(extack, nest,
506 "missing mask in compact nonlist bitset");
510 attr_nbits = nla_get_u32(tb[ETHTOOL_A_BITSET_SIZE]);
511 attr_nwords = DIV_ROUND_UP(attr_nbits, 32);
512 if (nla_len(tb[ETHTOOL_A_BITSET_VALUE]) != attr_nwords * sizeof(u32)) {
513 NL_SET_ERR_MSG_ATTR(extack, tb[ETHTOOL_A_BITSET_VALUE],
514 "bitset value length does not match size");
517 if (tb[ETHTOOL_A_BITSET_MASK] &&
518 nla_len(tb[ETHTOOL_A_BITSET_MASK]) != attr_nwords * sizeof(u32)) {
519 NL_SET_ERR_MSG_ATTR(extack, tb[ETHTOOL_A_BITSET_MASK],
520 "bitset mask length does not match size");
523 if (attr_nbits <= nbits)
526 test_attr = no_mask ? tb[ETHTOOL_A_BITSET_VALUE] :
527 tb[ETHTOOL_A_BITSET_MASK];
528 if (ethnl_bitmap32_not_zero(nla_data(test_attr), nbits, attr_nbits)) {
529 NL_SET_ERR_MSG_ATTR(extack, test_attr,
530 "cannot modify bits past kernel bitset size");
537 * ethnl_update_bitset32() - Apply a bitset nest to a u32 based bitmap
538 * @bitmap: bitmap to update
539 * @nbits: size of the updated bitmap in bits
540 * @attr: nest attribute to parse and apply
541 * @names: array of bit names; may be null for compact format
542 * @extack: extack for error reporting
543 * @mod: set this to true if bitmap is modified, leave as it is if not
545 * Apply bitset netsted attribute to a bitmap. If the attribute represents
546 * a bit list, @bitmap is set to its contents; otherwise, bits in mask are
547 * set to values from value. Bitmaps in the attribute may be longer than
548 * @nbits but the message must not request modifying any bits past @nbits.
550 * Return: negative error code on failure, 0 on success
552 int ethnl_update_bitset32(u32 *bitmap, unsigned int nbits,
553 const struct nlattr *attr, ethnl_string_array_t names,
554 struct netlink_ext_ack *extack, bool *mod)
556 struct nlattr *tb[ARRAY_SIZE(bitset_policy)];
557 unsigned int change_bits;
563 ret = nla_parse_nested(tb, ARRAY_SIZE(bitset_policy) - 1, attr,
564 bitset_policy, extack);
568 if (tb[ETHTOOL_A_BITSET_BITS])
569 return ethnl_update_bitset32_verbose(bitmap, nbits, attr, tb,
571 ret = ethnl_compact_sanity_checks(nbits, attr, tb, extack);
575 no_mask = tb[ETHTOOL_A_BITSET_NOMASK];
576 change_bits = min_t(unsigned int,
577 nla_get_u32(tb[ETHTOOL_A_BITSET_SIZE]), nbits);
578 ethnl_bitmap32_update(bitmap, change_bits,
579 nla_data(tb[ETHTOOL_A_BITSET_VALUE]),
581 nla_data(tb[ETHTOOL_A_BITSET_MASK]),
583 if (no_mask && change_bits < nbits)
584 ethnl_bitmap32_clear(bitmap, change_bits, nbits, mod);
590 * ethnl_parse_bitset() - Compute effective value and mask from bitset nest
591 * @val: unsigned long based bitmap to put value into
592 * @mask: unsigned long based bitmap to put mask into
593 * @nbits: size of @val and @mask bitmaps
594 * @attr: nest attribute to parse and apply
595 * @names: array of bit names; may be null for compact format
596 * @extack: extack for error reporting
598 * Provide @nbits size long bitmaps for value and mask so that
599 * x = (val & mask) | (x & ~mask) would modify any @nbits sized bitmap x
600 * the same way ethnl_update_bitset() with the same bitset attribute would.
602 * Return: negative error code on failure, 0 on success
604 int ethnl_parse_bitset(unsigned long *val, unsigned long *mask,
605 unsigned int nbits, const struct nlattr *attr,
606 ethnl_string_array_t names,
607 struct netlink_ext_ack *extack)
609 struct nlattr *tb[ARRAY_SIZE(bitset_policy)];
610 const struct nlattr *bit_attr;
617 ret = nla_parse_nested(tb, ARRAY_SIZE(bitset_policy) - 1, attr,
618 bitset_policy, extack);
621 no_mask = tb[ETHTOOL_A_BITSET_NOMASK];
623 if (!tb[ETHTOOL_A_BITSET_BITS]) {
624 unsigned int change_bits;
626 ret = ethnl_compact_sanity_checks(nbits, attr, tb, extack);
630 change_bits = nla_get_u32(tb[ETHTOOL_A_BITSET_SIZE]);
631 if (change_bits > nbits)
633 bitmap_from_arr32(val, nla_data(tb[ETHTOOL_A_BITSET_VALUE]),
635 if (change_bits < nbits)
636 bitmap_clear(val, change_bits, nbits - change_bits);
638 bitmap_fill(mask, nbits);
640 bitmap_from_arr32(mask,
641 nla_data(tb[ETHTOOL_A_BITSET_MASK]),
643 if (change_bits < nbits)
644 bitmap_clear(mask, change_bits,
645 nbits - change_bits);
651 if (tb[ETHTOOL_A_BITSET_VALUE]) {
652 NL_SET_ERR_MSG_ATTR(extack, tb[ETHTOOL_A_BITSET_VALUE],
653 "value only allowed in compact bitset");
656 if (tb[ETHTOOL_A_BITSET_MASK]) {
657 NL_SET_ERR_MSG_ATTR(extack, tb[ETHTOOL_A_BITSET_MASK],
658 "mask only allowed in compact bitset");
662 bitmap_zero(val, nbits);
664 bitmap_fill(mask, nbits);
666 bitmap_zero(mask, nbits);
668 nla_for_each_nested(bit_attr, tb[ETHTOOL_A_BITSET_BITS], rem) {
672 ret = ethnl_parse_bit(&idx, &bit_val, nbits, bit_attr, no_mask,
679 __set_bit(idx, mask);
685 #if BITS_PER_LONG == 64 && defined(__BIG_ENDIAN)
687 /* 64-bit big endian architectures are the only case when u32 based bitmaps
688 * and unsigned long based bitmaps have different memory layout so that we
689 * cannot simply cast the latter to the former and need actual wrappers
690 * converting the latter to the former.
692 * To reduce the number of slab allocations, the wrappers use fixed size local
693 * variables for bitmaps up to ETHNL_SMALL_BITMAP_BITS bits which is the
694 * majority of bitmaps used by ethtool.
696 #define ETHNL_SMALL_BITMAP_BITS 128
697 #define ETHNL_SMALL_BITMAP_WORDS DIV_ROUND_UP(ETHNL_SMALL_BITMAP_BITS, 32)
699 int ethnl_bitset_size(const unsigned long *val, const unsigned long *mask,
700 unsigned int nbits, ethnl_string_array_t names,
703 u32 small_mask32[ETHNL_SMALL_BITMAP_WORDS];
704 u32 small_val32[ETHNL_SMALL_BITMAP_WORDS];
709 if (nbits > ETHNL_SMALL_BITMAP_BITS) {
710 unsigned int nwords = DIV_ROUND_UP(nbits, 32);
712 val32 = kmalloc_array(2 * nwords, sizeof(u32), GFP_KERNEL);
715 mask32 = val32 + nwords;
718 mask32 = small_mask32;
721 bitmap_to_arr32(val32, val, nbits);
723 bitmap_to_arr32(mask32, mask, nbits);
726 ret = ethnl_bitset32_size(val32, mask32, nbits, names, compact);
728 if (nbits > ETHNL_SMALL_BITMAP_BITS)
734 int ethnl_put_bitset(struct sk_buff *skb, int attrtype,
735 const unsigned long *val, const unsigned long *mask,
736 unsigned int nbits, ethnl_string_array_t names,
739 u32 small_mask32[ETHNL_SMALL_BITMAP_WORDS];
740 u32 small_val32[ETHNL_SMALL_BITMAP_WORDS];
745 if (nbits > ETHNL_SMALL_BITMAP_BITS) {
746 unsigned int nwords = DIV_ROUND_UP(nbits, 32);
748 val32 = kmalloc_array(2 * nwords, sizeof(u32), GFP_KERNEL);
751 mask32 = val32 + nwords;
754 mask32 = small_mask32;
757 bitmap_to_arr32(val32, val, nbits);
759 bitmap_to_arr32(mask32, mask, nbits);
762 ret = ethnl_put_bitset32(skb, attrtype, val32, mask32, nbits, names,
765 if (nbits > ETHNL_SMALL_BITMAP_BITS)
771 int ethnl_update_bitset(unsigned long *bitmap, unsigned int nbits,
772 const struct nlattr *attr, ethnl_string_array_t names,
773 struct netlink_ext_ack *extack, bool *mod)
775 u32 small_bitmap32[ETHNL_SMALL_BITMAP_WORDS];
776 u32 *bitmap32 = small_bitmap32;
777 bool u32_mod = false;
780 if (nbits > ETHNL_SMALL_BITMAP_BITS) {
781 unsigned int dst_words = DIV_ROUND_UP(nbits, 32);
783 bitmap32 = kmalloc_array(dst_words, sizeof(u32), GFP_KERNEL);
788 bitmap_to_arr32(bitmap32, bitmap, nbits);
789 ret = ethnl_update_bitset32(bitmap32, nbits, attr, names, extack,
792 bitmap_from_arr32(bitmap, bitmap32, nbits);
796 if (nbits > ETHNL_SMALL_BITMAP_BITS)
804 /* On little endian 64-bit and all 32-bit architectures, an unsigned long
805 * based bitmap can be interpreted as u32 based one using a simple cast.
808 int ethnl_bitset_size(const unsigned long *val, const unsigned long *mask,
809 unsigned int nbits, ethnl_string_array_t names,
812 return ethnl_bitset32_size((const u32 *)val, (const u32 *)mask, nbits,
816 int ethnl_put_bitset(struct sk_buff *skb, int attrtype,
817 const unsigned long *val, const unsigned long *mask,
818 unsigned int nbits, ethnl_string_array_t names,
821 return ethnl_put_bitset32(skb, attrtype, (const u32 *)val,
822 (const u32 *)mask, nbits, names, compact);
825 int ethnl_update_bitset(unsigned long *bitmap, unsigned int nbits,
826 const struct nlattr *attr, ethnl_string_array_t names,
827 struct netlink_ext_ack *extack, bool *mod)
829 return ethnl_update_bitset32((u32 *)bitmap, nbits, attr, names, extack,
833 #endif /* BITS_PER_LONG == 64 && defined(__BIG_ENDIAN) */