diff options
author | Maor Gottlieb <maorg@mellanox.com> | 2016-12-28 07:58:35 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-12-28 14:36:51 -0500 |
commit | 077b1e8069b9b74477b01d28f6b83774dc19a142 (patch) | |
tree | 942565436b4290774c9cd858a7de23635c33d10a /drivers/net | |
parent | d151d73dcc99de87c63bdefebcc4cb69de1cdc40 (diff) |
net/mlx5: Mask destination mac value in ethtool steering rules
We need to mask the destination mac value with the destination mac
mask when adding steering rule via ethtool.
Fixes: 1174fce8d1410 ('net/mlx5e: Support l3/l4 flow type specs in ethtool flow steering')
Signed-off-by: Maor Gottlieb <maorg@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/ethernet/mellanox/mlx5/core/en_fs_ethtool.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_fs_ethtool.c b/drivers/net/ethernet/mellanox/mlx5/core/en_fs_ethtool.c index 3691451c728c..d088effd7160 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/en_fs_ethtool.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/en_fs_ethtool.c | |||
@@ -247,6 +247,7 @@ static int set_flow_attrs(u32 *match_c, u32 *match_v, | |||
247 | } | 247 | } |
248 | if (fs->flow_type & FLOW_MAC_EXT && | 248 | if (fs->flow_type & FLOW_MAC_EXT && |
249 | !is_zero_ether_addr(fs->m_ext.h_dest)) { | 249 | !is_zero_ether_addr(fs->m_ext.h_dest)) { |
250 | mask_spec(fs->m_ext.h_dest, fs->h_ext.h_dest, ETH_ALEN); | ||
250 | ether_addr_copy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, | 251 | ether_addr_copy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, |
251 | outer_headers_c, dmac_47_16), | 252 | outer_headers_c, dmac_47_16), |
252 | fs->m_ext.h_dest); | 253 | fs->m_ext.h_dest); |