[dpdk-dev] net/e1000: support MAC filters for i210 and i211 chips
Checks
Commit Message
i210 and i211 also support unicast MAC filters.
The patch was tested on i210 based hw, for i211
support was looked up in the specs.
Signed-off-by: Markus Theil <markus.theil@tu-ilmenau.de>
---
drivers/net/e1000/igb_ethdev.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
Comments
Hi,
> -----Original Message-----
> From: Markus Theil [mailto:markus.theil@tu-ilmenau.de]
> Sent: Thursday, May 18, 2017 2:06 AM
> To: Lu, Wenzhuo
> Cc: dev@dpdk.org; Markus Theil
> Subject: [PATCH] net/e1000: support MAC filters for i210 and i211 chips
>
> i210 and i211 also support unicast MAC filters.
> The patch was tested on i210 based hw, for i211 support was looked up in
> the specs.
>
> Signed-off-by: Markus Theil <markus.theil@tu-ilmenau.de>
Acked-by: Wenzhuo Lu <wenzhuo.lu@intel.com>
Thanks for this patch.
On 5/18/2017 2:23 AM, Lu, Wenzhuo wrote:
> Hi,
>
>
>> -----Original Message-----
>> From: Markus Theil [mailto:markus.theil@tu-ilmenau.de]
>> Sent: Thursday, May 18, 2017 2:06 AM
>> To: Lu, Wenzhuo
>> Cc: dev@dpdk.org; Markus Theil
>> Subject: [PATCH] net/e1000: support MAC filters for i210 and i211 chips
>>
>> i210 and i211 also support unicast MAC filters.
>> The patch was tested on i210 based hw, for i211 support was looked up in
>> the specs.
>>
>> Signed-off-by: Markus Theil <markus.theil@tu-ilmenau.de>
> Acked-by: Wenzhuo Lu <wenzhuo.lu@intel.com>
Applied to dpdk-next-net/master, thanks.
(patch title updated to net/igb: ..)
>
> Thanks for this patch.
>
@@ -3551,7 +3551,8 @@ eth_igb_rss_reta_query(struct rte_eth_dev *dev,
#define MAC_TYPE_FILTER_SUP(type) do {\
if ((type) != e1000_82580 && (type) != e1000_i350 &&\
- (type) != e1000_82576)\
+ (type) != e1000_82576 && (type) != e1000_i210 &&\
+ (type) != e1000_i211)\
return -ENOTSUP;\
} while (0)