From: Eric Dumazet eric.dumazet@gmail.com Date: Sat, 16 Feb 2019 13:01:28 -0800
This commit added a call to fls64(), but not the needed include.
This might break some uses I think.
I suggest the following fix :
diff --git a/include/linux/netdev_features.h b/include/linux/netdev_features.h index c50cedb65cf56fe7d722a5a321b714ed83f449a0..d3f61011f4346e4ea80b61f88bd24541dd006014 100644 --- a/include/linux/netdev_features.h +++ b/include/linux/netdev_features.h @@ -11,6 +11,7 @@ #define _LINUX_NETDEV_FEATURES_H #include <linux/types.h> +#include <linux/bitops.h> #include <asm/byteorder.h> typedef u64 netdev_features_t;
Ok I'm build testing that right now, thanks.
====================
From 8681ef1f3d295bd3600315325f3b3396d76d02f6 Mon Sep 17 00:00:00 2001
From: "David S. Miller" davem@davemloft.net Date: Sat, 16 Feb 2019 13:44:39 -0800 Subject: [PATCH] net: Add header for usage of fls64()
Fixes: 3b89ea9c5902 ("net: Fix for_each_netdev_feature on Big endian") Suggested-by: Eric Dumazet eric.dumazet@gmail.com Signed-off-by: David S. Miller davem@davemloft.net --- include/linux/netdev_features.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/linux/netdev_features.h b/include/linux/netdev_features.h index fce28562bed2..4c76fe2c8488 100644 --- a/include/linux/netdev_features.h +++ b/include/linux/netdev_features.h @@ -11,6 +11,7 @@ #define _LINUX_NETDEV_FEATURES_H
#include <linux/types.h> +#include <linux/bitops.h> #include <asm/byteorder.h>
typedef u64 netdev_features_t;