summaryrefslogtreecommitdiffstats
path: root/net/l2tp/l2tp_eth.c
diff options
context:
space:
mode:
authorGuillaume Nault2017-04-24 14:16:07 +0200
committerDavid S. Miller2017-04-25 17:41:56 +0200
commita485c2b877619935f7346146791f0d22f5da723a (patch)
tree5560fe5e396d973dce10a5413855ec20c0d054e6 /net/l2tp/l2tp_eth.c
parentl2tp: set name_assign_type for devices created by l2tp_eth.c (diff)
downloadkernel-qcow2-linux-a485c2b877619935f7346146791f0d22f5da723a.tar.gz
kernel-qcow2-linux-a485c2b877619935f7346146791f0d22f5da723a.tar.xz
kernel-qcow2-linux-a485c2b877619935f7346146791f0d22f5da723a.zip
l2tp: define "l2tpeth" device type
Export type of l2tpeth interfaces to userspace (/sys/class/net/<iface>/uevent). Signed-off-by: Guillaume Nault <g.nault@alphalink.fr> Acked-by: James Chapman <jchapman@katalix.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/l2tp/l2tp_eth.c')
-rw-r--r--net/l2tp/l2tp_eth.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/net/l2tp/l2tp_eth.c b/net/l2tp/l2tp_eth.c
index 5e44b3cc1212..59aba8aeac03 100644
--- a/net/l2tp/l2tp_eth.c
+++ b/net/l2tp/l2tp_eth.c
@@ -130,8 +130,13 @@ static const struct net_device_ops l2tp_eth_netdev_ops = {
.ndo_set_mac_address = eth_mac_addr,
};
+static struct device_type l2tpeth_type = {
+ .name = "l2tpeth",
+};
+
static void l2tp_eth_dev_setup(struct net_device *dev)
{
+ SET_NETDEV_DEVTYPE(dev, &l2tpeth_type);
ether_setup(dev);
dev->priv_flags &= ~IFF_TX_SKB_SHARING;
dev->features |= NETIF_F_LLTX;