cda2e0ffd44809ef2885b731134fa66240b4da3e
[openwrt/staging/chunkeey.git] / target / linux / generic / pending-4.14 / 642-net-8021q-support-hardware-flow-table-offload.patch
1 From: Felix Fietkau <nbd@nbd.name>
2 Date: Thu, 15 Mar 2018 20:49:58 +0100
3 Subject: [PATCH] net: 8021q: support hardware flow table offload
4
5 Add the VLAN ID and protocol information
6
7 Signed-off-by: Felix Fietkau <nbd@nbd.name>
8 ---
9
10 --- a/net/8021q/vlan_dev.c
11 +++ b/net/8021q/vlan_dev.c
12 @@ -29,8 +29,10 @@
13 #include <linux/net_tstamp.h>
14 #include <linux/etherdevice.h>
15 #include <linux/ethtool.h>
16 +#include <linux/netfilter.h>
17 #include <net/arp.h>
18 #include <net/switchdev.h>
19 +#include <net/netfilter/nf_flow_table.h>
20
21 #include "vlan.h"
22 #include "vlanproc.h"
23 @@ -762,6 +764,25 @@ static int vlan_dev_get_iflink(const str
24 return real_dev->ifindex;
25 }
26
27 +static int vlan_dev_flow_offload_check(struct flow_offload_hw_path *path)
28 +{
29 + struct net_device *dev = path->dev;
30 + struct vlan_dev_priv *vlan = vlan_dev_priv(dev);
31 +
32 + if (path->flags & FLOW_OFFLOAD_PATH_VLAN)
33 + return -EEXIST;
34 +
35 + path->flags |= FLOW_OFFLOAD_PATH_VLAN;
36 + path->vlan_proto = vlan->vlan_proto;
37 + path->vlan_id = vlan->vlan_id;
38 + path->dev = vlan->real_dev;
39 +
40 + if (vlan->real_dev->netdev_ops->ndo_flow_offload_check)
41 + return vlan->real_dev->netdev_ops->ndo_flow_offload_check(path);
42 +
43 + return 0;
44 +}
45 +
46 static const struct ethtool_ops vlan_ethtool_ops = {
47 .get_link_ksettings = vlan_ethtool_get_link_ksettings,
48 .get_drvinfo = vlan_ethtool_get_drvinfo,
49 @@ -799,6 +820,7 @@ static const struct net_device_ops vlan_
50 .ndo_fix_features = vlan_dev_fix_features,
51 .ndo_get_lock_subclass = vlan_dev_get_lock_subclass,
52 .ndo_get_iflink = vlan_dev_get_iflink,
53 + .ndo_flow_offload_check = vlan_dev_flow_offload_check,
54 };
55
56 static void vlan_dev_free(struct net_device *dev)