blob: f3edf9635e029bb47c028cd2336dbeccb803c846 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * net-sysfs.c - network device class and attributes
3 *
4 * Copyright (c) 2003 Stephen Hemminger <shemminger@osdl.org>
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Randy Dunlap4fc268d2006-01-11 12:17:47 -080012#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kernel.h>
14#include <linux/netdevice.h>
15#include <linux/if_arp.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Eric W. Biederman608b4b92010-05-04 17:36:45 -070017#include <linux/nsproxy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <net/sock.h>
Eric W. Biederman608b4b92010-05-04 17:36:45 -070019#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/rtnetlink.h>
Tom Herbertfec5e652010-04-16 16:01:27 -070021#include <linux/vmalloc.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040022#include <linux/export.h>
Tom Herbert114cf582011-11-28 16:33:09 +000023#include <linux/jiffies.h>
Ming Lei9802c8e2013-02-22 16:34:16 -080024#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Pavel Emelyanov342709e2007-10-23 21:14:45 -070026#include "net-sysfs.h"
27
Eric W. Biederman8b41d182007-09-26 22:02:53 -070028#ifdef CONFIG_SYSFS
Linus Torvalds1da177e2005-04-16 15:20:36 -070029static const char fmt_hex[] = "%#x\n";
David S. Millerd1102b52005-05-29 20:28:25 -070030static const char fmt_long_hex[] = "%#lx\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static const char fmt_dec[] = "%d\n";
David Decotigny8ae6dac2011-04-27 18:32:38 +000032static const char fmt_udec[] = "%u\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -070033static const char fmt_ulong[] = "%lu\n";
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +000034static const char fmt_u64[] = "%llu\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090036static inline int dev_isalive(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
Stephen Hemmingerfe9925b2006-05-06 17:56:03 -070038 return dev->reg_state <= NETREG_REGISTERED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039}
40
41/* use same locking rules as GIF* ioctl's */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070042static ssize_t netdev_show(const struct device *dev,
43 struct device_attribute *attr, char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 ssize_t (*format)(const struct net_device *, char *))
45{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070046 struct net_device *net = to_net_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 ssize_t ret = -EINVAL;
48
49 read_lock(&dev_base_lock);
50 if (dev_isalive(net))
51 ret = (*format)(net, buf);
52 read_unlock(&dev_base_lock);
53
54 return ret;
55}
56
57/* generate a show function for simple field */
58#define NETDEVICE_SHOW(field, format_string) \
59static ssize_t format_##field(const struct net_device *net, char *buf) \
60{ \
61 return sprintf(buf, format_string, net->field); \
62} \
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -070063static ssize_t field##_show(struct device *dev, \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070064 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{ \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070066 return netdev_show(dev, attr, buf, format_##field); \
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -070067} \
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -070069#define NETDEVICE_SHOW_RO(field, format_string) \
70NETDEVICE_SHOW(field, format_string); \
71static DEVICE_ATTR_RO(field)
72
73#define NETDEVICE_SHOW_RW(field, format_string) \
74NETDEVICE_SHOW(field, format_string); \
75static DEVICE_ATTR_RW(field)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77/* use same locking and permission rules as SIF* ioctl's */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070078static ssize_t netdev_store(struct device *dev, struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 const char *buf, size_t len,
80 int (*set)(struct net_device *, unsigned long))
81{
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +000082 struct net_device *netdev = to_net_dev(dev);
83 struct net *net = dev_net(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 unsigned long new;
85 int ret = -EINVAL;
86
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +000087 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 return -EPERM;
89
Shuah Khane1e420c2012-04-12 09:28:13 +000090 ret = kstrtoul(buf, 0, &new);
91 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 goto err;
93
Stephen Hemminger5a5990d2009-02-26 06:49:24 +000094 if (!rtnl_trylock())
Eric W. Biederman336ca572009-05-13 16:57:25 +000095 return restart_syscall();
Stephen Hemminger5a5990d2009-02-26 06:49:24 +000096
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +000097 if (dev_isalive(netdev)) {
98 if ((ret = (*set)(netdev, new)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 ret = len;
100 }
101 rtnl_unlock();
102 err:
103 return ret;
104}
105
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700106NETDEVICE_SHOW_RO(dev_id, fmt_hex);
107NETDEVICE_SHOW_RO(addr_assign_type, fmt_dec);
108NETDEVICE_SHOW_RO(addr_len, fmt_dec);
109NETDEVICE_SHOW_RO(iflink, fmt_dec);
110NETDEVICE_SHOW_RO(ifindex, fmt_dec);
111NETDEVICE_SHOW_RO(type, fmt_dec);
112NETDEVICE_SHOW_RO(link_mode, fmt_dec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114/* use same locking rules as GIFHWADDR ioctl's */
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700115static ssize_t address_show(struct device *dev, struct device_attribute *attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700116 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
118 struct net_device *net = to_net_dev(dev);
119 ssize_t ret = -EINVAL;
120
121 read_lock(&dev_base_lock);
122 if (dev_isalive(net))
Michael Chan7ffc49a2007-12-24 21:28:09 -0800123 ret = sysfs_format_mac(buf, net->dev_addr, net->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 read_unlock(&dev_base_lock);
125 return ret;
126}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700127static DEVICE_ATTR_RO(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700129static ssize_t broadcast_show(struct device *dev,
130 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
132 struct net_device *net = to_net_dev(dev);
133 if (dev_isalive(net))
Michael Chan7ffc49a2007-12-24 21:28:09 -0800134 return sysfs_format_mac(buf, net->broadcast, net->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 return -EINVAL;
136}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700137static DEVICE_ATTR_RO(broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Jiri Pirkofdae0fd2012-12-27 23:49:38 +0000139static int change_carrier(struct net_device *net, unsigned long new_carrier)
140{
141 if (!netif_running(net))
142 return -EINVAL;
143 return dev_change_carrier(net, (bool) new_carrier);
144}
145
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700146static ssize_t carrier_store(struct device *dev, struct device_attribute *attr,
147 const char *buf, size_t len)
Jiri Pirkofdae0fd2012-12-27 23:49:38 +0000148{
149 return netdev_store(dev, attr, buf, len, change_carrier);
150}
151
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700152static ssize_t carrier_show(struct device *dev,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700153 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 struct net_device *netdev = to_net_dev(dev);
156 if (netif_running(netdev)) {
157 return sprintf(buf, fmt_dec, !!netif_carrier_ok(netdev));
158 }
159 return -EINVAL;
160}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700161static DEVICE_ATTR_RW(carrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700163static ssize_t speed_show(struct device *dev,
Andy Gospodarekd519e172009-10-02 09:26:12 +0000164 struct device_attribute *attr, char *buf)
165{
166 struct net_device *netdev = to_net_dev(dev);
167 int ret = -EINVAL;
168
169 if (!rtnl_trylock())
170 return restart_syscall();
171
David Decotigny8ae6dac2011-04-27 18:32:38 +0000172 if (netif_running(netdev)) {
173 struct ethtool_cmd cmd;
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000174 if (!__ethtool_get_settings(netdev, &cmd))
David Decotigny8ae6dac2011-04-27 18:32:38 +0000175 ret = sprintf(buf, fmt_udec, ethtool_cmd_speed(&cmd));
Andy Gospodarekd519e172009-10-02 09:26:12 +0000176 }
177 rtnl_unlock();
178 return ret;
179}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700180static DEVICE_ATTR_RO(speed);
Andy Gospodarekd519e172009-10-02 09:26:12 +0000181
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700182static ssize_t duplex_show(struct device *dev,
Andy Gospodarekd519e172009-10-02 09:26:12 +0000183 struct device_attribute *attr, char *buf)
184{
185 struct net_device *netdev = to_net_dev(dev);
186 int ret = -EINVAL;
187
188 if (!rtnl_trylock())
189 return restart_syscall();
190
David Decotigny8ae6dac2011-04-27 18:32:38 +0000191 if (netif_running(netdev)) {
192 struct ethtool_cmd cmd;
Nikolay Aleksandrovc6c13962012-09-05 04:11:28 +0000193 if (!__ethtool_get_settings(netdev, &cmd)) {
194 const char *duplex;
195 switch (cmd.duplex) {
196 case DUPLEX_HALF:
197 duplex = "half";
198 break;
199 case DUPLEX_FULL:
200 duplex = "full";
201 break;
202 default:
203 duplex = "unknown";
204 break;
205 }
206 ret = sprintf(buf, "%s\n", duplex);
207 }
Andy Gospodarekd519e172009-10-02 09:26:12 +0000208 }
209 rtnl_unlock();
210 return ret;
211}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700212static DEVICE_ATTR_RO(duplex);
Andy Gospodarekd519e172009-10-02 09:26:12 +0000213
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700214static ssize_t dormant_show(struct device *dev,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700215 struct device_attribute *attr, char *buf)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800216{
217 struct net_device *netdev = to_net_dev(dev);
218
219 if (netif_running(netdev))
220 return sprintf(buf, fmt_dec, !!netif_dormant(netdev));
221
222 return -EINVAL;
223}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700224static DEVICE_ATTR_RO(dormant);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800225
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700226static const char *const operstates[] = {
Stefan Rompfb00055a2006-03-20 17:09:11 -0800227 "unknown",
228 "notpresent", /* currently unused */
229 "down",
230 "lowerlayerdown",
231 "testing", /* currently unused */
232 "dormant",
233 "up"
234};
235
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700236static ssize_t operstate_show(struct device *dev,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700237 struct device_attribute *attr, char *buf)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800238{
239 const struct net_device *netdev = to_net_dev(dev);
240 unsigned char operstate;
241
242 read_lock(&dev_base_lock);
243 operstate = netdev->operstate;
244 if (!netif_running(netdev))
245 operstate = IF_OPER_DOWN;
246 read_unlock(&dev_base_lock);
247
Adrian Bunke3a5cd92006-04-05 22:19:47 -0700248 if (operstate >= ARRAY_SIZE(operstates))
Stefan Rompfb00055a2006-03-20 17:09:11 -0800249 return -EINVAL; /* should not happen */
250
251 return sprintf(buf, "%s\n", operstates[operstate]);
252}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700253static DEVICE_ATTR_RO(operstate);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255/* read-write attributes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257static int change_mtu(struct net_device *net, unsigned long new_mtu)
258{
259 return dev_set_mtu(net, (int) new_mtu);
260}
261
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700262static ssize_t mtu_store(struct device *dev, struct device_attribute *attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700263 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700265 return netdev_store(dev, attr, buf, len, change_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700267NETDEVICE_SHOW_RW(mtu, fmt_dec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269static int change_flags(struct net_device *net, unsigned long new_flags)
270{
Eric Dumazet95c96172012-04-15 05:58:06 +0000271 return dev_change_flags(net, (unsigned int) new_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}
273
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700274static ssize_t flags_store(struct device *dev, struct device_attribute *attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700275 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700277 return netdev_store(dev, attr, buf, len, change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700279NETDEVICE_SHOW_RW(flags, fmt_hex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281static int change_tx_queue_len(struct net_device *net, unsigned long new_len)
282{
283 net->tx_queue_len = new_len;
284 return 0;
285}
286
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700287static ssize_t tx_queue_len_store(struct device *dev,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700288 struct device_attribute *attr,
289 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +0000291 if (!capable(CAP_NET_ADMIN))
292 return -EPERM;
293
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700294 return netdev_store(dev, attr, buf, len, change_tx_queue_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700296NETDEVICE_SHOW_RW(tx_queue_len, fmt_ulong);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700298static ssize_t ifalias_store(struct device *dev, struct device_attribute *attr,
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700299 const char *buf, size_t len)
300{
301 struct net_device *netdev = to_net_dev(dev);
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +0000302 struct net *net = dev_net(netdev);
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700303 size_t count = len;
304 ssize_t ret;
305
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +0000306 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700307 return -EPERM;
308
309 /* ignore trailing newline */
310 if (len > 0 && buf[len - 1] == '\n')
311 --count;
312
Eric W. Biederman336ca572009-05-13 16:57:25 +0000313 if (!rtnl_trylock())
314 return restart_syscall();
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700315 ret = dev_set_alias(netdev, buf, count);
316 rtnl_unlock();
317
318 return ret < 0 ? ret : len;
319}
320
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700321static ssize_t ifalias_show(struct device *dev,
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700322 struct device_attribute *attr, char *buf)
323{
324 const struct net_device *netdev = to_net_dev(dev);
325 ssize_t ret = 0;
326
Eric W. Biederman336ca572009-05-13 16:57:25 +0000327 if (!rtnl_trylock())
328 return restart_syscall();
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700329 if (netdev->ifalias)
330 ret = sprintf(buf, "%s\n", netdev->ifalias);
331 rtnl_unlock();
332 return ret;
333}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700334static DEVICE_ATTR_RW(ifalias);
Vlad Dogarua512b922011-01-24 03:37:29 +0000335
336static int change_group(struct net_device *net, unsigned long new_group)
337{
338 dev_set_group(net, (int) new_group);
339 return 0;
340}
341
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700342static ssize_t group_store(struct device *dev, struct device_attribute *attr,
343 const char *buf, size_t len)
Vlad Dogarua512b922011-01-24 03:37:29 +0000344{
345 return netdev_store(dev, attr, buf, len, change_group);
346}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700347NETDEVICE_SHOW(group, fmt_dec);
348static DEVICE_ATTR(netdev_group, S_IRUGO | S_IWUSR, group_show, group_store);
Vlad Dogarua512b922011-01-24 03:37:29 +0000349
Linus Torvaldscc998ff2013-09-05 14:54:29 -0700350static ssize_t phys_port_id_show(struct device *dev,
Jiri Pirkoff80e512013-07-29 18:16:51 +0200351 struct device_attribute *attr, char *buf)
352{
353 struct net_device *netdev = to_net_dev(dev);
354 ssize_t ret = -EINVAL;
355
356 if (!rtnl_trylock())
357 return restart_syscall();
358
359 if (dev_isalive(netdev)) {
360 struct netdev_phys_port_id ppid;
361
362 ret = dev_get_phys_port_id(netdev, &ppid);
363 if (!ret)
364 ret = sprintf(buf, "%*phN\n", ppid.id_len, ppid.id);
365 }
366 rtnl_unlock();
367
368 return ret;
369}
Linus Torvaldscc998ff2013-09-05 14:54:29 -0700370static DEVICE_ATTR_RO(phys_port_id);
Jiri Pirkoff80e512013-07-29 18:16:51 +0200371
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700372static struct attribute *net_class_attrs[] = {
373 &dev_attr_netdev_group.attr,
374 &dev_attr_type.attr,
375 &dev_attr_dev_id.attr,
376 &dev_attr_iflink.attr,
377 &dev_attr_ifindex.attr,
378 &dev_attr_addr_assign_type.attr,
379 &dev_attr_addr_len.attr,
380 &dev_attr_link_mode.attr,
381 &dev_attr_address.attr,
382 &dev_attr_broadcast.attr,
383 &dev_attr_speed.attr,
384 &dev_attr_duplex.attr,
385 &dev_attr_dormant.attr,
386 &dev_attr_operstate.attr,
387 &dev_attr_ifalias.attr,
388 &dev_attr_carrier.attr,
389 &dev_attr_mtu.attr,
390 &dev_attr_flags.attr,
391 &dev_attr_tx_queue_len.attr,
Linus Torvaldscc998ff2013-09-05 14:54:29 -0700392 &dev_attr_phys_port_id.attr,
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700393 NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394};
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700395ATTRIBUTE_GROUPS(net_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397/* Show a given an attribute in the statistics group */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700398static ssize_t netstat_show(const struct device *d,
399 struct device_attribute *attr, char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 unsigned long offset)
401{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700402 struct net_device *dev = to_net_dev(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 ssize_t ret = -EINVAL;
404
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000405 WARN_ON(offset > sizeof(struct rtnl_link_stats64) ||
406 offset % sizeof(u64) != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 read_lock(&dev_base_lock);
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700409 if (dev_isalive(dev)) {
Eric Dumazet28172732010-07-07 14:58:56 -0700410 struct rtnl_link_stats64 temp;
411 const struct rtnl_link_stats64 *stats = dev_get_stats(dev, &temp);
412
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000413 ret = sprintf(buf, fmt_u64, *(u64 *)(((u8 *) stats) + offset));
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 read_unlock(&dev_base_lock);
416 return ret;
417}
418
419/* generate a read-only statistics attribute */
420#define NETSTAT_ENTRY(name) \
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700421static ssize_t name##_show(struct device *d, \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700422 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{ \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700424 return netstat_show(d, attr, buf, \
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000425 offsetof(struct rtnl_link_stats64, name)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426} \
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700427static DEVICE_ATTR_RO(name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429NETSTAT_ENTRY(rx_packets);
430NETSTAT_ENTRY(tx_packets);
431NETSTAT_ENTRY(rx_bytes);
432NETSTAT_ENTRY(tx_bytes);
433NETSTAT_ENTRY(rx_errors);
434NETSTAT_ENTRY(tx_errors);
435NETSTAT_ENTRY(rx_dropped);
436NETSTAT_ENTRY(tx_dropped);
437NETSTAT_ENTRY(multicast);
438NETSTAT_ENTRY(collisions);
439NETSTAT_ENTRY(rx_length_errors);
440NETSTAT_ENTRY(rx_over_errors);
441NETSTAT_ENTRY(rx_crc_errors);
442NETSTAT_ENTRY(rx_frame_errors);
443NETSTAT_ENTRY(rx_fifo_errors);
444NETSTAT_ENTRY(rx_missed_errors);
445NETSTAT_ENTRY(tx_aborted_errors);
446NETSTAT_ENTRY(tx_carrier_errors);
447NETSTAT_ENTRY(tx_fifo_errors);
448NETSTAT_ENTRY(tx_heartbeat_errors);
449NETSTAT_ENTRY(tx_window_errors);
450NETSTAT_ENTRY(rx_compressed);
451NETSTAT_ENTRY(tx_compressed);
452
453static struct attribute *netstat_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700454 &dev_attr_rx_packets.attr,
455 &dev_attr_tx_packets.attr,
456 &dev_attr_rx_bytes.attr,
457 &dev_attr_tx_bytes.attr,
458 &dev_attr_rx_errors.attr,
459 &dev_attr_tx_errors.attr,
460 &dev_attr_rx_dropped.attr,
461 &dev_attr_tx_dropped.attr,
462 &dev_attr_multicast.attr,
463 &dev_attr_collisions.attr,
464 &dev_attr_rx_length_errors.attr,
465 &dev_attr_rx_over_errors.attr,
466 &dev_attr_rx_crc_errors.attr,
467 &dev_attr_rx_frame_errors.attr,
468 &dev_attr_rx_fifo_errors.attr,
469 &dev_attr_rx_missed_errors.attr,
470 &dev_attr_tx_aborted_errors.attr,
471 &dev_attr_tx_carrier_errors.attr,
472 &dev_attr_tx_fifo_errors.attr,
473 &dev_attr_tx_heartbeat_errors.attr,
474 &dev_attr_tx_window_errors.attr,
475 &dev_attr_rx_compressed.attr,
476 &dev_attr_tx_compressed.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 NULL
478};
479
480
481static struct attribute_group netstat_group = {
482 .name = "statistics",
483 .attrs = netstat_attrs,
484};
Johannes Berg38c1a012012-11-16 20:46:19 +0100485
486#if IS_ENABLED(CONFIG_WIRELESS_EXT) || IS_ENABLED(CONFIG_CFG80211)
487static struct attribute *wireless_attrs[] = {
488 NULL
489};
490
491static struct attribute_group wireless_group = {
492 .name = "wireless",
493 .attrs = wireless_attrs,
494};
495#endif
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700496
497#else /* CONFIG_SYSFS */
498#define net_class_groups NULL
Eric W. Biedermand6523dd2010-05-16 21:59:45 -0700499#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Stephen Rothwell30bde1f2010-03-29 01:00:44 -0700501#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +0000502/*
503 * RX queue sysfs structures and functions.
504 */
505struct rx_queue_attribute {
506 struct attribute attr;
507 ssize_t (*show)(struct netdev_rx_queue *queue,
508 struct rx_queue_attribute *attr, char *buf);
509 ssize_t (*store)(struct netdev_rx_queue *queue,
510 struct rx_queue_attribute *attr, const char *buf, size_t len);
511};
512#define to_rx_queue_attr(_attr) container_of(_attr, \
513 struct rx_queue_attribute, attr)
514
515#define to_rx_queue(obj) container_of(obj, struct netdev_rx_queue, kobj)
516
517static ssize_t rx_queue_attr_show(struct kobject *kobj, struct attribute *attr,
518 char *buf)
519{
520 struct rx_queue_attribute *attribute = to_rx_queue_attr(attr);
521 struct netdev_rx_queue *queue = to_rx_queue(kobj);
522
523 if (!attribute->show)
524 return -EIO;
525
526 return attribute->show(queue, attribute, buf);
527}
528
529static ssize_t rx_queue_attr_store(struct kobject *kobj, struct attribute *attr,
530 const char *buf, size_t count)
531{
532 struct rx_queue_attribute *attribute = to_rx_queue_attr(attr);
533 struct netdev_rx_queue *queue = to_rx_queue(kobj);
534
535 if (!attribute->store)
536 return -EIO;
537
538 return attribute->store(queue, attribute, buf, count);
539}
540
stephen hemmingerfa50d642010-08-31 12:14:13 +0000541static const struct sysfs_ops rx_queue_sysfs_ops = {
Tom Herbert0a9627f2010-03-16 08:03:29 +0000542 .show = rx_queue_attr_show,
543 .store = rx_queue_attr_store,
544};
545
546static ssize_t show_rps_map(struct netdev_rx_queue *queue,
547 struct rx_queue_attribute *attribute, char *buf)
548{
549 struct rps_map *map;
550 cpumask_var_t mask;
551 size_t len = 0;
552 int i;
553
554 if (!zalloc_cpumask_var(&mask, GFP_KERNEL))
555 return -ENOMEM;
556
557 rcu_read_lock();
558 map = rcu_dereference(queue->rps_map);
559 if (map)
560 for (i = 0; i < map->len; i++)
561 cpumask_set_cpu(map->cpus[i], mask);
562
563 len += cpumask_scnprintf(buf + len, PAGE_SIZE, mask);
564 if (PAGE_SIZE - len < 3) {
565 rcu_read_unlock();
566 free_cpumask_var(mask);
567 return -EINVAL;
568 }
569 rcu_read_unlock();
570
571 free_cpumask_var(mask);
572 len += sprintf(buf + len, "\n");
573 return len;
574}
575
Eric Dumazetf5acb902010-04-19 14:40:57 -0700576static ssize_t store_rps_map(struct netdev_rx_queue *queue,
Tom Herbert0a9627f2010-03-16 08:03:29 +0000577 struct rx_queue_attribute *attribute,
578 const char *buf, size_t len)
579{
580 struct rps_map *old_map, *map;
581 cpumask_var_t mask;
582 int err, cpu, i;
583 static DEFINE_SPINLOCK(rps_map_lock);
584
585 if (!capable(CAP_NET_ADMIN))
586 return -EPERM;
587
588 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
589 return -ENOMEM;
590
591 err = bitmap_parse(buf, len, cpumask_bits(mask), nr_cpumask_bits);
592 if (err) {
593 free_cpumask_var(mask);
594 return err;
595 }
596
Eric Dumazet95c96172012-04-15 05:58:06 +0000597 map = kzalloc(max_t(unsigned int,
Tom Herbert0a9627f2010-03-16 08:03:29 +0000598 RPS_MAP_SIZE(cpumask_weight(mask)), L1_CACHE_BYTES),
599 GFP_KERNEL);
600 if (!map) {
601 free_cpumask_var(mask);
602 return -ENOMEM;
603 }
604
605 i = 0;
606 for_each_cpu_and(cpu, mask, cpu_online_mask)
607 map->cpus[i++] = cpu;
608
609 if (i)
610 map->len = i;
611 else {
612 kfree(map);
613 map = NULL;
614 }
615
616 spin_lock(&rps_map_lock);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000617 old_map = rcu_dereference_protected(queue->rps_map,
618 lockdep_is_held(&rps_map_lock));
Tom Herbert0a9627f2010-03-16 08:03:29 +0000619 rcu_assign_pointer(queue->rps_map, map);
620 spin_unlock(&rps_map_lock);
621
Eric Dumazetadc93002011-11-17 03:13:26 +0000622 if (map)
Ingo Molnarc5905af2012-02-24 08:31:31 +0100623 static_key_slow_inc(&rps_needed);
Eric Dumazetadc93002011-11-17 03:13:26 +0000624 if (old_map) {
Lai Jiangshanf6f80232011-03-18 12:01:31 +0800625 kfree_rcu(old_map, rcu);
Ingo Molnarc5905af2012-02-24 08:31:31 +0100626 static_key_slow_dec(&rps_needed);
Eric Dumazetadc93002011-11-17 03:13:26 +0000627 }
Tom Herbert0a9627f2010-03-16 08:03:29 +0000628 free_cpumask_var(mask);
629 return len;
630}
631
Tom Herbertfec5e652010-04-16 16:01:27 -0700632static ssize_t show_rps_dev_flow_table_cnt(struct netdev_rx_queue *queue,
633 struct rx_queue_attribute *attr,
634 char *buf)
635{
636 struct rps_dev_flow_table *flow_table;
Eric Dumazet60b778c2011-12-24 06:56:49 +0000637 unsigned long val = 0;
Tom Herbertfec5e652010-04-16 16:01:27 -0700638
639 rcu_read_lock();
640 flow_table = rcu_dereference(queue->rps_flow_table);
641 if (flow_table)
Eric Dumazet60b778c2011-12-24 06:56:49 +0000642 val = (unsigned long)flow_table->mask + 1;
Tom Herbertfec5e652010-04-16 16:01:27 -0700643 rcu_read_unlock();
644
Eric Dumazet60b778c2011-12-24 06:56:49 +0000645 return sprintf(buf, "%lu\n", val);
Tom Herbertfec5e652010-04-16 16:01:27 -0700646}
647
Tom Herbertfec5e652010-04-16 16:01:27 -0700648static void rps_dev_flow_table_release(struct rcu_head *rcu)
649{
650 struct rps_dev_flow_table *table = container_of(rcu,
651 struct rps_dev_flow_table, rcu);
Al Viro243198d2013-05-05 16:05:55 +0000652 vfree(table);
Tom Herbertfec5e652010-04-16 16:01:27 -0700653}
654
Eric Dumazetf5acb902010-04-19 14:40:57 -0700655static ssize_t store_rps_dev_flow_table_cnt(struct netdev_rx_queue *queue,
Tom Herbertfec5e652010-04-16 16:01:27 -0700656 struct rx_queue_attribute *attr,
657 const char *buf, size_t len)
658{
Eric Dumazet60b778c2011-12-24 06:56:49 +0000659 unsigned long mask, count;
Tom Herbertfec5e652010-04-16 16:01:27 -0700660 struct rps_dev_flow_table *table, *old_table;
661 static DEFINE_SPINLOCK(rps_dev_flow_lock);
Eric Dumazet60b778c2011-12-24 06:56:49 +0000662 int rc;
Tom Herbertfec5e652010-04-16 16:01:27 -0700663
664 if (!capable(CAP_NET_ADMIN))
665 return -EPERM;
666
Eric Dumazet60b778c2011-12-24 06:56:49 +0000667 rc = kstrtoul(buf, 0, &count);
668 if (rc < 0)
669 return rc;
Tom Herbertfec5e652010-04-16 16:01:27 -0700670
671 if (count) {
Eric Dumazet60b778c2011-12-24 06:56:49 +0000672 mask = count - 1;
673 /* mask = roundup_pow_of_two(count) - 1;
674 * without overflows...
675 */
676 while ((mask | (mask >> 1)) != mask)
677 mask |= (mask >> 1);
678 /* On 64 bit arches, must check mask fits in table->mask (u32),
679 * and on 32bit arches, must check RPS_DEV_FLOW_TABLE_SIZE(mask + 1)
680 * doesnt overflow.
681 */
682#if BITS_PER_LONG > 32
683 if (mask > (unsigned long)(u32)mask)
Xi Wanga0a129f2011-12-22 13:35:22 +0000684 return -EINVAL;
Eric Dumazet60b778c2011-12-24 06:56:49 +0000685#else
686 if (mask > (ULONG_MAX - RPS_DEV_FLOW_TABLE_SIZE(1))
Xi Wanga0a129f2011-12-22 13:35:22 +0000687 / sizeof(struct rps_dev_flow)) {
Tom Herbertfec5e652010-04-16 16:01:27 -0700688 /* Enforce a limit to prevent overflow */
689 return -EINVAL;
690 }
Eric Dumazet60b778c2011-12-24 06:56:49 +0000691#endif
692 table = vmalloc(RPS_DEV_FLOW_TABLE_SIZE(mask + 1));
Tom Herbertfec5e652010-04-16 16:01:27 -0700693 if (!table)
694 return -ENOMEM;
695
Eric Dumazet60b778c2011-12-24 06:56:49 +0000696 table->mask = mask;
697 for (count = 0; count <= mask; count++)
698 table->flows[count].cpu = RPS_NO_CPU;
Tom Herbertfec5e652010-04-16 16:01:27 -0700699 } else
700 table = NULL;
701
702 spin_lock(&rps_dev_flow_lock);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000703 old_table = rcu_dereference_protected(queue->rps_flow_table,
704 lockdep_is_held(&rps_dev_flow_lock));
Tom Herbertfec5e652010-04-16 16:01:27 -0700705 rcu_assign_pointer(queue->rps_flow_table, table);
706 spin_unlock(&rps_dev_flow_lock);
707
708 if (old_table)
709 call_rcu(&old_table->rcu, rps_dev_flow_table_release);
710
711 return len;
712}
713
Tom Herbert0a9627f2010-03-16 08:03:29 +0000714static struct rx_queue_attribute rps_cpus_attribute =
715 __ATTR(rps_cpus, S_IRUGO | S_IWUSR, show_rps_map, store_rps_map);
716
Tom Herbertfec5e652010-04-16 16:01:27 -0700717
718static struct rx_queue_attribute rps_dev_flow_table_cnt_attribute =
719 __ATTR(rps_flow_cnt, S_IRUGO | S_IWUSR,
720 show_rps_dev_flow_table_cnt, store_rps_dev_flow_table_cnt);
721
Tom Herbert0a9627f2010-03-16 08:03:29 +0000722static struct attribute *rx_queue_default_attrs[] = {
723 &rps_cpus_attribute.attr,
Tom Herbertfec5e652010-04-16 16:01:27 -0700724 &rps_dev_flow_table_cnt_attribute.attr,
Tom Herbert0a9627f2010-03-16 08:03:29 +0000725 NULL
726};
727
728static void rx_queue_release(struct kobject *kobj)
729{
730 struct netdev_rx_queue *queue = to_rx_queue(kobj);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000731 struct rps_map *map;
732 struct rps_dev_flow_table *flow_table;
Tom Herbert0a9627f2010-03-16 08:03:29 +0000733
Tom Herbertfec5e652010-04-16 16:01:27 -0700734
Eric Dumazet33d480c2011-08-11 19:30:52 +0000735 map = rcu_dereference_protected(queue->rps_map, 1);
John Fastabend9ea19482010-11-16 06:31:39 +0000736 if (map) {
737 RCU_INIT_POINTER(queue->rps_map, NULL);
Lai Jiangshanf6f80232011-03-18 12:01:31 +0800738 kfree_rcu(map, rcu);
John Fastabend9ea19482010-11-16 06:31:39 +0000739 }
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000740
Eric Dumazet33d480c2011-08-11 19:30:52 +0000741 flow_table = rcu_dereference_protected(queue->rps_flow_table, 1);
John Fastabend9ea19482010-11-16 06:31:39 +0000742 if (flow_table) {
743 RCU_INIT_POINTER(queue->rps_flow_table, NULL);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000744 call_rcu(&flow_table->rcu, rps_dev_flow_table_release);
John Fastabend9ea19482010-11-16 06:31:39 +0000745 }
Tom Herbert0a9627f2010-03-16 08:03:29 +0000746
John Fastabend9ea19482010-11-16 06:31:39 +0000747 memset(kobj, 0, sizeof(*kobj));
Tom Herbertfe822242010-11-09 10:47:38 +0000748 dev_put(queue->dev);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000749}
750
751static struct kobj_type rx_queue_ktype = {
752 .sysfs_ops = &rx_queue_sysfs_ops,
753 .release = rx_queue_release,
754 .default_attrs = rx_queue_default_attrs,
755};
756
757static int rx_queue_add_kobject(struct net_device *net, int index)
758{
759 struct netdev_rx_queue *queue = net->_rx + index;
760 struct kobject *kobj = &queue->kobj;
761 int error = 0;
762
763 kobj->kset = net->queues_kset;
764 error = kobject_init_and_add(kobj, &rx_queue_ktype, NULL,
765 "rx-%u", index);
766 if (error) {
767 kobject_put(kobj);
768 return error;
769 }
770
771 kobject_uevent(kobj, KOBJ_ADD);
Tom Herbertfe822242010-11-09 10:47:38 +0000772 dev_hold(queue->dev);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000773
774 return error;
775}
Tom Herbertbf264142010-11-26 08:36:09 +0000776#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +0000777
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000778int
779net_rx_queue_update_kobjects(struct net_device *net, int old_num, int new_num)
Tom Herbert0a9627f2010-03-16 08:03:29 +0000780{
Tom Herbertbf264142010-11-26 08:36:09 +0000781#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +0000782 int i;
783 int error = 0;
784
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000785 for (i = old_num; i < new_num; i++) {
Tom Herbert0a9627f2010-03-16 08:03:29 +0000786 error = rx_queue_add_kobject(net, i);
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000787 if (error) {
788 new_num = old_num;
Tom Herbert0a9627f2010-03-16 08:03:29 +0000789 break;
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000790 }
Tom Herbert0a9627f2010-03-16 08:03:29 +0000791 }
792
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000793 while (--i >= new_num)
794 kobject_put(&net->_rx[i].kobj);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000795
796 return error;
Tom Herbertbf264142010-11-26 08:36:09 +0000797#else
798 return 0;
799#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +0000800}
801
david decotignyccf5ff62011-11-16 12:15:10 +0000802#ifdef CONFIG_SYSFS
Tom Herbert1d24eb42010-11-21 13:17:27 +0000803/*
804 * netdev_queue sysfs structures and functions.
805 */
806struct netdev_queue_attribute {
807 struct attribute attr;
808 ssize_t (*show)(struct netdev_queue *queue,
809 struct netdev_queue_attribute *attr, char *buf);
810 ssize_t (*store)(struct netdev_queue *queue,
811 struct netdev_queue_attribute *attr, const char *buf, size_t len);
812};
813#define to_netdev_queue_attr(_attr) container_of(_attr, \
814 struct netdev_queue_attribute, attr)
815
816#define to_netdev_queue(obj) container_of(obj, struct netdev_queue, kobj)
817
818static ssize_t netdev_queue_attr_show(struct kobject *kobj,
819 struct attribute *attr, char *buf)
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000820{
Tom Herbert1d24eb42010-11-21 13:17:27 +0000821 struct netdev_queue_attribute *attribute = to_netdev_queue_attr(attr);
822 struct netdev_queue *queue = to_netdev_queue(kobj);
823
824 if (!attribute->show)
825 return -EIO;
826
827 return attribute->show(queue, attribute, buf);
828}
829
830static ssize_t netdev_queue_attr_store(struct kobject *kobj,
831 struct attribute *attr,
832 const char *buf, size_t count)
833{
834 struct netdev_queue_attribute *attribute = to_netdev_queue_attr(attr);
835 struct netdev_queue *queue = to_netdev_queue(kobj);
836
837 if (!attribute->store)
838 return -EIO;
839
840 return attribute->store(queue, attribute, buf, count);
841}
842
843static const struct sysfs_ops netdev_queue_sysfs_ops = {
844 .show = netdev_queue_attr_show,
845 .store = netdev_queue_attr_store,
846};
847
david decotignyccf5ff62011-11-16 12:15:10 +0000848static ssize_t show_trans_timeout(struct netdev_queue *queue,
849 struct netdev_queue_attribute *attribute,
850 char *buf)
851{
852 unsigned long trans_timeout;
853
854 spin_lock_irq(&queue->_xmit_lock);
855 trans_timeout = queue->trans_timeout;
856 spin_unlock_irq(&queue->_xmit_lock);
857
858 return sprintf(buf, "%lu", trans_timeout);
859}
860
861static struct netdev_queue_attribute queue_trans_timeout =
862 __ATTR(tx_timeout, S_IRUGO, show_trans_timeout, NULL);
863
Tom Herbert114cf582011-11-28 16:33:09 +0000864#ifdef CONFIG_BQL
865/*
866 * Byte queue limits sysfs structures and functions.
867 */
868static ssize_t bql_show(char *buf, unsigned int value)
869{
870 return sprintf(buf, "%u\n", value);
871}
872
873static ssize_t bql_set(const char *buf, const size_t count,
874 unsigned int *pvalue)
875{
876 unsigned int value;
877 int err;
878
879 if (!strcmp(buf, "max") || !strcmp(buf, "max\n"))
880 value = DQL_MAX_LIMIT;
881 else {
882 err = kstrtouint(buf, 10, &value);
883 if (err < 0)
884 return err;
885 if (value > DQL_MAX_LIMIT)
886 return -EINVAL;
887 }
888
889 *pvalue = value;
890
891 return count;
892}
893
894static ssize_t bql_show_hold_time(struct netdev_queue *queue,
895 struct netdev_queue_attribute *attr,
896 char *buf)
897{
898 struct dql *dql = &queue->dql;
899
900 return sprintf(buf, "%u\n", jiffies_to_msecs(dql->slack_hold_time));
901}
902
903static ssize_t bql_set_hold_time(struct netdev_queue *queue,
904 struct netdev_queue_attribute *attribute,
905 const char *buf, size_t len)
906{
907 struct dql *dql = &queue->dql;
Eric Dumazet95c96172012-04-15 05:58:06 +0000908 unsigned int value;
Tom Herbert114cf582011-11-28 16:33:09 +0000909 int err;
910
911 err = kstrtouint(buf, 10, &value);
912 if (err < 0)
913 return err;
914
915 dql->slack_hold_time = msecs_to_jiffies(value);
916
917 return len;
918}
919
920static struct netdev_queue_attribute bql_hold_time_attribute =
921 __ATTR(hold_time, S_IRUGO | S_IWUSR, bql_show_hold_time,
922 bql_set_hold_time);
923
924static ssize_t bql_show_inflight(struct netdev_queue *queue,
925 struct netdev_queue_attribute *attr,
926 char *buf)
927{
928 struct dql *dql = &queue->dql;
929
930 return sprintf(buf, "%u\n", dql->num_queued - dql->num_completed);
931}
932
933static struct netdev_queue_attribute bql_inflight_attribute =
Hiroaki SHIMODA795d9a22012-01-14 07:10:21 +0000934 __ATTR(inflight, S_IRUGO, bql_show_inflight, NULL);
Tom Herbert114cf582011-11-28 16:33:09 +0000935
936#define BQL_ATTR(NAME, FIELD) \
937static ssize_t bql_show_ ## NAME(struct netdev_queue *queue, \
938 struct netdev_queue_attribute *attr, \
939 char *buf) \
940{ \
941 return bql_show(buf, queue->dql.FIELD); \
942} \
943 \
944static ssize_t bql_set_ ## NAME(struct netdev_queue *queue, \
945 struct netdev_queue_attribute *attr, \
946 const char *buf, size_t len) \
947{ \
948 return bql_set(buf, len, &queue->dql.FIELD); \
949} \
950 \
951static struct netdev_queue_attribute bql_ ## NAME ## _attribute = \
952 __ATTR(NAME, S_IRUGO | S_IWUSR, bql_show_ ## NAME, \
953 bql_set_ ## NAME);
954
955BQL_ATTR(limit, limit)
956BQL_ATTR(limit_max, max_limit)
957BQL_ATTR(limit_min, min_limit)
958
959static struct attribute *dql_attrs[] = {
960 &bql_limit_attribute.attr,
961 &bql_limit_max_attribute.attr,
962 &bql_limit_min_attribute.attr,
963 &bql_hold_time_attribute.attr,
964 &bql_inflight_attribute.attr,
965 NULL
966};
967
968static struct attribute_group dql_group = {
969 .name = "byte_queue_limits",
970 .attrs = dql_attrs,
971};
972#endif /* CONFIG_BQL */
973
david decotignyccf5ff62011-11-16 12:15:10 +0000974#ifdef CONFIG_XPS
Tom Herbert1d24eb42010-11-21 13:17:27 +0000975static inline unsigned int get_netdev_queue_index(struct netdev_queue *queue)
976{
977 struct net_device *dev = queue->dev;
978 int i;
979
980 for (i = 0; i < dev->num_tx_queues; i++)
981 if (queue == &dev->_tx[i])
982 break;
983
984 BUG_ON(i >= dev->num_tx_queues);
985
986 return i;
987}
988
989
990static ssize_t show_xps_map(struct netdev_queue *queue,
991 struct netdev_queue_attribute *attribute, char *buf)
992{
993 struct net_device *dev = queue->dev;
994 struct xps_dev_maps *dev_maps;
995 cpumask_var_t mask;
996 unsigned long index;
997 size_t len = 0;
998 int i;
999
1000 if (!zalloc_cpumask_var(&mask, GFP_KERNEL))
1001 return -ENOMEM;
1002
1003 index = get_netdev_queue_index(queue);
1004
1005 rcu_read_lock();
1006 dev_maps = rcu_dereference(dev->xps_maps);
1007 if (dev_maps) {
1008 for_each_possible_cpu(i) {
1009 struct xps_map *map =
1010 rcu_dereference(dev_maps->cpu_map[i]);
1011 if (map) {
1012 int j;
1013 for (j = 0; j < map->len; j++) {
1014 if (map->queues[j] == index) {
1015 cpumask_set_cpu(i, mask);
1016 break;
1017 }
1018 }
1019 }
1020 }
1021 }
1022 rcu_read_unlock();
1023
1024 len += cpumask_scnprintf(buf + len, PAGE_SIZE, mask);
1025 if (PAGE_SIZE - len < 3) {
1026 free_cpumask_var(mask);
1027 return -EINVAL;
1028 }
1029
1030 free_cpumask_var(mask);
1031 len += sprintf(buf + len, "\n");
1032 return len;
1033}
1034
Tom Herbert1d24eb42010-11-21 13:17:27 +00001035static ssize_t store_xps_map(struct netdev_queue *queue,
1036 struct netdev_queue_attribute *attribute,
1037 const char *buf, size_t len)
1038{
1039 struct net_device *dev = queue->dev;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001040 unsigned long index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001041 cpumask_var_t mask;
1042 int err;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001043
1044 if (!capable(CAP_NET_ADMIN))
1045 return -EPERM;
1046
1047 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
1048 return -ENOMEM;
1049
1050 index = get_netdev_queue_index(queue);
1051
1052 err = bitmap_parse(buf, len, cpumask_bits(mask), nr_cpumask_bits);
1053 if (err) {
1054 free_cpumask_var(mask);
1055 return err;
1056 }
1057
Alexander Duyck537c00d2013-01-10 08:57:02 +00001058 err = netif_set_xps_queue(dev, mask, index);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001059
1060 free_cpumask_var(mask);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001061
Alexander Duyck537c00d2013-01-10 08:57:02 +00001062 return err ? : len;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001063}
1064
1065static struct netdev_queue_attribute xps_cpus_attribute =
1066 __ATTR(xps_cpus, S_IRUGO | S_IWUSR, show_xps_map, store_xps_map);
david decotignyccf5ff62011-11-16 12:15:10 +00001067#endif /* CONFIG_XPS */
Tom Herbert1d24eb42010-11-21 13:17:27 +00001068
1069static struct attribute *netdev_queue_default_attrs[] = {
david decotignyccf5ff62011-11-16 12:15:10 +00001070 &queue_trans_timeout.attr,
1071#ifdef CONFIG_XPS
Tom Herbert1d24eb42010-11-21 13:17:27 +00001072 &xps_cpus_attribute.attr,
david decotignyccf5ff62011-11-16 12:15:10 +00001073#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +00001074 NULL
1075};
1076
1077static void netdev_queue_release(struct kobject *kobj)
1078{
1079 struct netdev_queue *queue = to_netdev_queue(kobj);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001080
Tom Herbert1d24eb42010-11-21 13:17:27 +00001081 memset(kobj, 0, sizeof(*kobj));
1082 dev_put(queue->dev);
1083}
1084
1085static struct kobj_type netdev_queue_ktype = {
1086 .sysfs_ops = &netdev_queue_sysfs_ops,
1087 .release = netdev_queue_release,
1088 .default_attrs = netdev_queue_default_attrs,
1089};
1090
1091static int netdev_queue_add_kobject(struct net_device *net, int index)
1092{
1093 struct netdev_queue *queue = net->_tx + index;
1094 struct kobject *kobj = &queue->kobj;
1095 int error = 0;
1096
1097 kobj->kset = net->queues_kset;
1098 error = kobject_init_and_add(kobj, &netdev_queue_ktype, NULL,
1099 "tx-%u", index);
Tom Herbert114cf582011-11-28 16:33:09 +00001100 if (error)
1101 goto exit;
1102
1103#ifdef CONFIG_BQL
1104 error = sysfs_create_group(kobj, &dql_group);
1105 if (error)
1106 goto exit;
1107#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +00001108
1109 kobject_uevent(kobj, KOBJ_ADD);
1110 dev_hold(queue->dev);
1111
Tom Herbert114cf582011-11-28 16:33:09 +00001112 return 0;
1113exit:
1114 kobject_put(kobj);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001115 return error;
1116}
david decotignyccf5ff62011-11-16 12:15:10 +00001117#endif /* CONFIG_SYSFS */
Tom Herbert1d24eb42010-11-21 13:17:27 +00001118
1119int
1120netdev_queue_update_kobjects(struct net_device *net, int old_num, int new_num)
1121{
david decotignyccf5ff62011-11-16 12:15:10 +00001122#ifdef CONFIG_SYSFS
Tom Herbert1d24eb42010-11-21 13:17:27 +00001123 int i;
1124 int error = 0;
1125
1126 for (i = old_num; i < new_num; i++) {
1127 error = netdev_queue_add_kobject(net, i);
1128 if (error) {
1129 new_num = old_num;
1130 break;
1131 }
1132 }
1133
Tom Herbert114cf582011-11-28 16:33:09 +00001134 while (--i >= new_num) {
1135 struct netdev_queue *queue = net->_tx + i;
1136
1137#ifdef CONFIG_BQL
1138 sysfs_remove_group(&queue->kobj, &dql_group);
1139#endif
1140 kobject_put(&queue->kobj);
1141 }
Tom Herbert1d24eb42010-11-21 13:17:27 +00001142
1143 return error;
Tom Herbertbf264142010-11-26 08:36:09 +00001144#else
1145 return 0;
david decotignyccf5ff62011-11-16 12:15:10 +00001146#endif /* CONFIG_SYSFS */
Tom Herbert1d24eb42010-11-21 13:17:27 +00001147}
1148
1149static int register_queue_kobjects(struct net_device *net)
1150{
Tom Herbertbf264142010-11-26 08:36:09 +00001151 int error = 0, txq = 0, rxq = 0, real_rx = 0, real_tx = 0;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001152
david decotignyccf5ff62011-11-16 12:15:10 +00001153#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00001154 net->queues_kset = kset_create_and_add("queues",
1155 NULL, &net->dev.kobj);
1156 if (!net->queues_kset)
1157 return -ENOMEM;
Tom Herbertbf264142010-11-26 08:36:09 +00001158#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +00001159
Tom Herbertbf264142010-11-26 08:36:09 +00001160#ifdef CONFIG_RPS
1161 real_rx = net->real_num_rx_queues;
1162#endif
1163 real_tx = net->real_num_tx_queues;
1164
1165 error = net_rx_queue_update_kobjects(net, 0, real_rx);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001166 if (error)
1167 goto error;
Tom Herbertbf264142010-11-26 08:36:09 +00001168 rxq = real_rx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001169
Tom Herbertbf264142010-11-26 08:36:09 +00001170 error = netdev_queue_update_kobjects(net, 0, real_tx);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001171 if (error)
1172 goto error;
Tom Herbertbf264142010-11-26 08:36:09 +00001173 txq = real_tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001174
1175 return 0;
1176
1177error:
1178 netdev_queue_update_kobjects(net, txq, 0);
1179 net_rx_queue_update_kobjects(net, rxq, 0);
1180 return error;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00001181}
1182
Tom Herbert1d24eb42010-11-21 13:17:27 +00001183static void remove_queue_kobjects(struct net_device *net)
Tom Herbert0a9627f2010-03-16 08:03:29 +00001184{
Tom Herbertbf264142010-11-26 08:36:09 +00001185 int real_rx = 0, real_tx = 0;
1186
1187#ifdef CONFIG_RPS
1188 real_rx = net->real_num_rx_queues;
1189#endif
1190 real_tx = net->real_num_tx_queues;
1191
1192 net_rx_queue_update_kobjects(net, real_rx, 0);
1193 netdev_queue_update_kobjects(net, real_tx, 0);
david decotignyccf5ff62011-11-16 12:15:10 +00001194#ifdef CONFIG_SYSFS
Tom Herbert0a9627f2010-03-16 08:03:29 +00001195 kset_unregister(net->queues_kset);
Tom Herbertbf264142010-11-26 08:36:09 +00001196#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00001197}
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001198
Eric W. Biederman7dc5dbc2013-03-25 20:07:01 -07001199static bool net_current_may_mount(void)
1200{
1201 struct net *net = current->nsproxy->net_ns;
1202
1203 return ns_capable(net->user_ns, CAP_SYS_ADMIN);
1204}
1205
Al Viroa685e082011-06-08 21:13:01 -04001206static void *net_grab_current_ns(void)
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001207{
Al Viroa685e082011-06-08 21:13:01 -04001208 struct net *ns = current->nsproxy->net_ns;
1209#ifdef CONFIG_NET_NS
1210 if (ns)
1211 atomic_inc(&ns->passive);
1212#endif
1213 return ns;
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001214}
1215
1216static const void *net_initial_ns(void)
1217{
1218 return &init_net;
1219}
1220
1221static const void *net_netlink_ns(struct sock *sk)
1222{
1223 return sock_net(sk);
1224}
1225
Johannes Berg04600792010-08-05 17:45:15 +02001226struct kobj_ns_type_operations net_ns_type_operations = {
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001227 .type = KOBJ_NS_TYPE_NET,
Eric W. Biederman7dc5dbc2013-03-25 20:07:01 -07001228 .current_may_mount = net_current_may_mount,
Al Viroa685e082011-06-08 21:13:01 -04001229 .grab_current_ns = net_grab_current_ns,
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001230 .netlink_ns = net_netlink_ns,
1231 .initial_ns = net_initial_ns,
Al Viroa685e082011-06-08 21:13:01 -04001232 .drop_ns = net_drop_ns,
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001233};
Johannes Berg04600792010-08-05 17:45:15 +02001234EXPORT_SYMBOL_GPL(net_ns_type_operations);
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001235
Kay Sievers7eff2e72007-08-14 15:15:12 +02001236static int netdev_uevent(struct device *d, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001238 struct net_device *dev = to_net_dev(d);
Kay Sievers7eff2e72007-08-14 15:15:12 +02001239 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Kay Sievers312c0042005-11-16 09:00:00 +01001241 /* pass interface to uevent. */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001242 retval = add_uevent_var(env, "INTERFACE=%s", dev->name);
Eric Rannaudbf624562007-03-30 22:23:12 -07001243 if (retval)
1244 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -08001246 /* pass ifindex to uevent.
1247 * ifindex is useful as it won't change (interface name may change)
1248 * and is what RtNetlink uses natively. */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001249 retval = add_uevent_var(env, "IFINDEX=%d", dev->ifindex);
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -08001250
Eric Rannaudbf624562007-03-30 22:23:12 -07001251exit:
Eric Rannaudbf624562007-03-30 22:23:12 -07001252 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001256 * netdev_release -- destroy and free a dead device.
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001257 * Called when last reference to device kobject is gone.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001259static void netdev_release(struct device *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001261 struct net_device *dev = to_net_dev(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263 BUG_ON(dev->reg_state != NETREG_RELEASED);
1264
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001265 kfree(dev->ifalias);
Eric Dumazet74d332c2013-10-30 13:10:44 -07001266 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267}
1268
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001269static const void *net_namespace(struct device *d)
1270{
1271 struct net_device *dev;
1272 dev = container_of(d, struct net_device, dev);
1273 return dev_net(dev);
1274}
1275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276static struct class net_class = {
1277 .name = "net",
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001278 .dev_release = netdev_release,
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -07001279 .dev_groups = net_class_groups,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001280 .dev_uevent = netdev_uevent,
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001281 .ns_type = &net_ns_type_operations,
1282 .namespace = net_namespace,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283};
1284
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07001285/* Delete sysfs entries but hold kobject reference until after all
1286 * netdev references are gone.
1287 */
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001288void netdev_unregister_kobject(struct net_device * net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07001290 struct device *dev = &(net->dev);
1291
1292 kobject_get(&dev->kobj);
Eric W. Biederman38918452008-10-27 17:51:47 -07001293
Tom Herbert1d24eb42010-11-21 13:17:27 +00001294 remove_queue_kobjects(net);
Tom Herbert0a9627f2010-03-16 08:03:29 +00001295
Ming Lei9802c8e2013-02-22 16:34:16 -08001296 pm_runtime_set_memalloc_noio(dev, false);
1297
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07001298 device_del(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
1300
1301/* Create sysfs entries for network device. */
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001302int netdev_register_kobject(struct net_device *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001304 struct device *dev = &(net->dev);
David Brownella4dbd672009-06-24 10:06:31 -07001305 const struct attribute_group **groups = net->sysfs_groups;
Tom Herbert0a9627f2010-03-16 08:03:29 +00001306 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001308 device_initialize(dev);
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001309 dev->class = &net_class;
1310 dev->platform_data = net;
1311 dev->groups = groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Stephen Hemmingera2205472009-03-09 13:51:55 +00001313 dev_set_name(dev, "%s", net->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001315#ifdef CONFIG_SYSFS
Eric W. Biederman0c509a62009-10-29 14:18:21 +00001316 /* Allow for a device specific group */
1317 if (*groups)
1318 groups++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Eric W. Biederman0c509a62009-10-29 14:18:21 +00001320 *groups++ = &netstat_group;
Johannes Berg38c1a012012-11-16 20:46:19 +01001321
1322#if IS_ENABLED(CONFIG_WIRELESS_EXT) || IS_ENABLED(CONFIG_CFG80211)
1323 if (net->ieee80211_ptr)
1324 *groups++ = &wireless_group;
1325#if IS_ENABLED(CONFIG_WIRELESS_EXT)
1326 else if (net->wireless_handlers)
1327 *groups++ = &wireless_group;
1328#endif
1329#endif
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001330#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Tom Herbert0a9627f2010-03-16 08:03:29 +00001332 error = device_add(dev);
1333 if (error)
1334 return error;
1335
Tom Herbert1d24eb42010-11-21 13:17:27 +00001336 error = register_queue_kobjects(net);
Tom Herbert0a9627f2010-03-16 08:03:29 +00001337 if (error) {
1338 device_del(dev);
1339 return error;
1340 }
1341
Ming Lei9802c8e2013-02-22 16:34:16 -08001342 pm_runtime_set_memalloc_noio(dev, true);
1343
Tom Herbert0a9627f2010-03-16 08:03:29 +00001344 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345}
1346
Tejun Heo58292cbe2013-09-11 22:29:04 -04001347int netdev_class_create_file_ns(struct class_attribute *class_attr,
1348 const void *ns)
Jay Vosburghb8a97872008-06-13 18:12:04 -07001349{
Tejun Heo58292cbe2013-09-11 22:29:04 -04001350 return class_create_file_ns(&net_class, class_attr, ns);
Jay Vosburghb8a97872008-06-13 18:12:04 -07001351}
Tejun Heo58292cbe2013-09-11 22:29:04 -04001352EXPORT_SYMBOL(netdev_class_create_file_ns);
Jay Vosburghb8a97872008-06-13 18:12:04 -07001353
Tejun Heo58292cbe2013-09-11 22:29:04 -04001354void netdev_class_remove_file_ns(struct class_attribute *class_attr,
1355 const void *ns)
Jay Vosburghb8a97872008-06-13 18:12:04 -07001356{
Tejun Heo58292cbe2013-09-11 22:29:04 -04001357 class_remove_file_ns(&net_class, class_attr, ns);
Jay Vosburghb8a97872008-06-13 18:12:04 -07001358}
Tejun Heo58292cbe2013-09-11 22:29:04 -04001359EXPORT_SYMBOL(netdev_class_remove_file_ns);
Jay Vosburghb8a97872008-06-13 18:12:04 -07001360
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001361int netdev_kobject_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362{
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001363 kobj_ns_type_register(&net_ns_type_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 return class_register(&net_class);
1365}