diff options
author | Sainath Grandhi <sainath.grandhi@intel.com> | 2017-02-10 16:03:52 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-02-11 20:59:41 -0500 |
commit | 235a9d89da976e2975b3de9afc0bed7b72557983 (patch) | |
tree | b7d5175e7c84f0a806b52064b34f1ef0fd780111 /drivers/net/Makefile | |
parent | 9a393b5d5988ea4eaa3e0da138321abe0dc03a68 (diff) | |
download | linux-stable-235a9d89da976e2975b3de9afc0bed7b72557983.tar.gz linux-stable-235a9d89da976e2975b3de9afc0bed7b72557983.tar.bz2 linux-stable-235a9d89da976e2975b3de9afc0bed7b72557983.zip |
ipvtap: IP-VLAN based tap driver
This patch adds a tap character device driver that is based on the
IP-VLAN network interface, called ipvtap. An ipvtap device can be created
in the same way as an ipvlan device, using 'type ipvtap', and then accessed
using the tap user space interface.
Signed-off-by: Sainath Grandhi <sainath.grandhi@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/Makefile')
-rw-r--r-- | drivers/net/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/Makefile b/drivers/net/Makefile index 7dd86ca02d0d..98ed4d96987c 100644 --- a/drivers/net/Makefile +++ b/drivers/net/Makefile @@ -7,6 +7,7 @@ # obj-$(CONFIG_BONDING) += bonding/ obj-$(CONFIG_IPVLAN) += ipvlan/ +obj-$(CONFIG_IPVTAP) += ipvlan/ obj-$(CONFIG_DUMMY) += dummy.o obj-$(CONFIG_EQUALIZER) += eql.o obj-$(CONFIG_IFB) += ifb.o |