diff options
author | Manish Chopra <manish.chopra@cavium.com> | 2018-05-24 09:54:51 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-05-25 16:10:42 -0400 |
commit | 3893fc62b1769db3ef160f7f1e36d3db754497ee (patch) | |
tree | 348383b96ad89169a04c355acc5031b843236f01 /include/linux/qed | |
parent | 89ffd14ee95dca812874fcd25ad3538ff3592a49 (diff) | |
download | linux-3893fc62b1769db3ef160f7f1e36d3db754497ee.tar.gz linux-3893fc62b1769db3ef160f7f1e36d3db754497ee.tar.bz2 linux-3893fc62b1769db3ef160f7f1e36d3db754497ee.zip |
qed*: Support other classification modes.
Currently, driver supports flow classification to PF
receive queues based on TCP/UDP 4 tuples [src_ip, dst_ip,
src_port, dst_port] only.
This patch enables to configure different flow profiles
[For example - only UDP dest port or src_ip based] on the
adapter so that classification can be done according to
just those fields as well. Although, at a time just one
type of flow configuration is supported due to limited
number of flow profiles available on the device.
For example -
ethtool -N enp7s0f0 flow-type udp4 dst-port 45762 action 2
ethtool -N enp7s0f0 flow-type tcp4 src-ip 192.16.4.10 action 1
ethtool -N enp7s0f0 flow-type udp6 dst-port 45762 action 3
Signed-off-by: Manish Chopra <manish.chopra@cavium.com>
Signed-off-by: Shahed Shaikh <shahed.shaikh@cavium.com>
Signed-off-by: Ariel Elior <ariel.elior@cavium.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/qed')
-rw-r--r-- | include/linux/qed/qed_eth_if.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/qed/qed_eth_if.h b/include/linux/qed/qed_eth_if.h index 7f9756fe9180..557e86e1c7d9 100644 --- a/include/linux/qed/qed_eth_if.h +++ b/include/linux/qed/qed_eth_if.h @@ -66,6 +66,7 @@ enum qed_filter_config_mode { QED_FILTER_CONFIG_MODE_5_TUPLE, QED_FILTER_CONFIG_MODE_L4_PORT, QED_FILTER_CONFIG_MODE_IP_DEST, + QED_FILTER_CONFIG_MODE_IP_SRC, }; struct qed_ntuple_filter_params { |