diff options
author | Eugene Snider <eugene.snider@huawei.com> | 2015-05-05 11:31:12 -0700 |
---|---|---|
committer | Eugene Snider <eugene.snider@huawei.com> | 2015-05-06 10:31:23 -0700 |
commit | fcc2e6c829f1ddbfc745addf4ac4b7ca84ba72db (patch) | |
tree | 5e7f7e66b87cedd3e054132dbea106a4d157fcaa /src/Makefile | |
parent | b1d3b553bbb82907ed643ddf245b85097dce7f91 (diff) |
Add l2 fwd kernel module
This commit adds a simple kernel module for l2 forwarding or termination
This module provides only level 2 forwarding between two ports, it does not
do any NAT or Masquerade.
Arguments are:
net1=ethXXXX # set forwarding port 1
net2=ethXXX # set forwarding port 2
terminate=1 # terminate the connection and free the skb
Changed to GPL licensing to avoid compilation issues
Added sanity build target
Fix whitespace issues
JIRA: VSPERF-39
Change-Id: I0fa3e0135af06b7cba665a357dccfb9459edb9f6
Signed-off-by: Eugene Snider <eugene.snider@huawei.com>
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 5326e468..3b7104ad 100644 --- a/src/Makefile +++ b/src/Makefile @@ -23,6 +23,7 @@ include mk/master.mk # specify upstream package as SUBDIRS - common terms as suggest by gnu-make SUBDIRS = +SUBDIRS += l2fwd SUBDIRS += dpdk SUBDIRS += ovs |