net: core: Assert the size of netdev_featres_t

We have about 53 netdev_features_t bits defined and counting, add a
build time check to catch when an u64 type will not be enough and we
will have to convert that to a bitmap. This is done in
register_netdevice() for convenience.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Florian Fainelli
2018-04-27 13:11:14 -07:00
committed by David S. Miller
parent c1b28847f7
commit 3ac305c386
2 changed files with 7 additions and 0 deletions

View File

@ -7879,6 +7879,7 @@ int register_netdevice(struct net_device *dev)
int ret;
struct net *net = dev_net(dev);
netdev_features_size_check();
BUG_ON(dev_boot_phase);
ASSERT_RTNL();