diff options
author | Jiri Benc <jbenc@redhat.com> | 2017-08-28 21:43:24 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-08-29 15:16:52 -0700 |
commit | c411ed854584a71b0e86ac3019b60e4789d88086 (patch) | |
tree | 80db31a51d120e5feb6fae8ed1fdd01c54bb5e98 /net/Makefile | |
parent | 1f0b7744c50573df464ca33d8e5275be509f852b (diff) | |
download | linux-next-c411ed854584a71b0e86ac3019b60e4789d88086.tar.gz |
nsh: add GSO support
Add a new nsh/ directory. It currently holds only GSO functions but more
will come: in particular, code shared by openvswitch and tc to manipulate
NSH headers.
For now, assume there's no hardware support for NSH segmentation. We can
always introduce netdev->nsh_features later.
Signed-off-by: Jiri Benc <jbenc@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/Makefile')
-rw-r--r-- | net/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index 3d3feff3643b..ae2fe2283d2f 100644 --- a/net/Makefile +++ b/net/Makefile @@ -75,6 +75,7 @@ obj-$(CONFIG_NET_IFE) += ife/ obj-$(CONFIG_OPENVSWITCH) += openvswitch/ obj-$(CONFIG_VSOCKETS) += vmw_vsock/ obj-$(CONFIG_MPLS) += mpls/ +obj-$(CONFIG_NET_NSH) += nsh/ obj-$(CONFIG_HSR) += hsr/ ifneq ($(CONFIG_NET_SWITCHDEV),) obj-y += switchdev/ |