mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
net/mlx4_en: Fix compilation error when CONFIG_INET isn't defined
ip_eth_mc_map function can't be used when CONFIG_INET isn't defined. Fixed compilation error by adding CONFIG_INET define check before using the function. Signed-off-by: Hadar Hen Zion <hadarh@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
377d97393d
commit
f9d96862ca
1 changed files with 4 additions and 0 deletions
|
@ -711,6 +711,7 @@ static int mlx4_en_ethtool_add_mac_rule_by_ipv4(struct mlx4_en_priv *priv,
|
||||||
struct mlx4_spec_list *spec_l2,
|
struct mlx4_spec_list *spec_l2,
|
||||||
__be32 ipv4_dst)
|
__be32 ipv4_dst)
|
||||||
{
|
{
|
||||||
|
#ifdef CONFIG_INET
|
||||||
__be64 be_mac = 0;
|
__be64 be_mac = 0;
|
||||||
unsigned char mac[ETH_ALEN];
|
unsigned char mac[ETH_ALEN];
|
||||||
|
|
||||||
|
@ -726,6 +727,9 @@ static int mlx4_en_ethtool_add_mac_rule_by_ipv4(struct mlx4_en_priv *priv,
|
||||||
}
|
}
|
||||||
|
|
||||||
return mlx4_en_ethtool_add_mac_rule(cmd, rule_list_h, spec_l2, &mac[0]);
|
return mlx4_en_ethtool_add_mac_rule(cmd, rule_list_h, spec_l2, &mac[0]);
|
||||||
|
#else
|
||||||
|
return -EINVAL;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
static int add_ip_rule(struct mlx4_en_priv *priv,
|
static int add_ip_rule(struct mlx4_en_priv *priv,
|
||||||
|
|
Loading…
Add table
Reference in a new issue