2016-07-29 11:59:14 +00:00
|
|
|
;
|
|
|
|
; Supported features of the 'enic' network poll mode driver.
|
|
|
|
;
|
|
|
|
; Refer to default.ini for the full list of available PMD features.
|
|
|
|
;
|
|
|
|
[Features]
|
|
|
|
Link status = Y
|
2016-09-19 18:50:11 +00:00
|
|
|
Link status event = Y
|
2018-03-08 02:46:59 +00:00
|
|
|
Rx interrupt = Y
|
2016-07-29 11:59:14 +00:00
|
|
|
Queue start/stop = Y
|
2016-11-03 18:01:33 +00:00
|
|
|
MTU update = Y
|
2016-07-29 11:59:14 +00:00
|
|
|
Jumbo frame = Y
|
|
|
|
Scattered Rx = Y
|
2017-01-09 23:04:28 +00:00
|
|
|
TSO = Y
|
2016-07-29 11:59:14 +00:00
|
|
|
Promiscuous mode = Y
|
2018-05-03 19:37:11 +00:00
|
|
|
Allmulticast mode = Y
|
2016-07-29 11:59:14 +00:00
|
|
|
Unicast MAC filter = Y
|
2018-05-03 19:37:11 +00:00
|
|
|
Multicast MAC filter =
|
2016-07-29 11:59:14 +00:00
|
|
|
RSS hash = Y
|
net/enic: allow to change RSS settings
Currently, when more than 1 receive queues are configured, the driver
always enables RSS with the driver's own default hash type, key, and
RETA. The user is unable to change any of the RSS settings. Address
this by implementing the ethdev RSS API as follows.
Correctly report the RETA size, key size, and supported hash types
through rte_eth_dev_info.
During dev_configure(), initialize RSS according to the device's
mq_mode and rss_conf. Start with the default RETA, and use the default
key unless a custom key is provided.
Add the RETA and rss_conf query/set handlers to let the user change
RSS settings after the initial configuration. The hardware is able to
change hash type, key, and RETA individually. So, the handlers change
only the affected settings.
Refactor/rename several functions in order to make their intentions
clear. For example, remove all traces of RSS from
enicpmd_vlan_offload_set() as it is confusing.
Signed-off-by: Hyong Youb Kim <hyonkim@cisco.com>
Reviewed-by: John Daley <johndale@cisco.com>
2018-03-08 02:46:54 +00:00
|
|
|
RSS key update = Y
|
|
|
|
RSS reta update = Y
|
2018-07-18 02:15:30 +00:00
|
|
|
Inner RSS = Y
|
2017-04-27 00:52:10 +00:00
|
|
|
SR-IOV = Y
|
2016-07-29 11:59:14 +00:00
|
|
|
CRC offload = Y
|
|
|
|
VLAN offload = Y
|
2016-09-29 20:56:39 +00:00
|
|
|
Flow director = Y
|
2017-05-17 22:38:11 +00:00
|
|
|
Flow API = Y
|
2016-07-29 11:59:14 +00:00
|
|
|
L3 checksum offload = Y
|
|
|
|
L4 checksum offload = Y
|
2018-07-18 02:15:30 +00:00
|
|
|
Inner L3 checksum = Y
|
|
|
|
Inner L4 checksum = Y
|
2016-07-29 11:59:14 +00:00
|
|
|
Packet type parsing = Y
|
|
|
|
Basic stats = Y
|
2017-09-11 18:58:33 +00:00
|
|
|
Multiprocess aware = Y
|
2016-07-29 11:59:14 +00:00
|
|
|
BSD nic_uio = Y
|
|
|
|
Linux UIO = Y
|
|
|
|
Linux VFIO = Y
|
|
|
|
x86-32 = Y
|
|
|
|
x86-64 = Y
|
|
|
|
Usage doc = Y
|