aboutsummaryrefslogtreecommitdiffstats
path: root/net/nsh/Kconfig
diff options
context:
space:
mode:
authorJiri Benc <jbenc@redhat.com>2017-08-28 21:43:24 +0200
committerDavid S. Miller <davem@davemloft.net>2017-08-29 15:16:52 -0700
commitc411ed854584a71b0e86ac3019b60e4789d88086 (patch)
tree80db31a51d120e5feb6fae8ed1fdd01c54bb5e98 /net/nsh/Kconfig
parentnet: add NSH header structures and helpers (diff)
downloadlinux-dev-c411ed854584a71b0e86ac3019b60e4789d88086.tar.xz
linux-dev-c411ed854584a71b0e86ac3019b60e4789d88086.zip
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/nsh/Kconfig')
-rw-r--r--net/nsh/Kconfig9
1 files changed, 9 insertions, 0 deletions
diff --git a/net/nsh/Kconfig b/net/nsh/Kconfig
new file mode 100644
index 000000000000..bafc3dd60c2c
--- /dev/null
+++ b/net/nsh/Kconfig
@@ -0,0 +1,9 @@
+menuconfig NET_NSH
+ tristate "Network Service Header (NSH) protocol"
+ default n
+ ---help---
+ Network Service Header is an implementation of Service Function
+ Chaining (RFC 7665). The current implementation in Linux supports
+ only MD type 1 and only with the openvswitch module.
+
+ If unsure, say N.