diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2002-04-09 15:14:34 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-02-07 13:37:11 -0500 |
commit | 43cb76d91ee85f579a69d42bc8efc08bac560278 (patch) | |
tree | f5c4766a6639fee3685dbbfc9110bb334af9e6dd /net/core | |
parent | 2943ecf2ed32632473c06f1975db47a7aa98c10f (diff) |
Network: convert network devices to use struct device instead of class_device
This lets the network core have the ability to handle suspend/resume
issues, if it wants to.
Thanks to Frederik Deweerdt <frederik.deweerdt@gmail.com> for the arm
driver fixes.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/dev.c | 6 | ||||
-rw-r--r-- | net/core/net-sysfs.c | 175 | ||||
-rw-r--r-- | net/core/skbuff.c | 2 |
3 files changed, 97 insertions, 86 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index e660cb57e42a..455d589683e8 100644 --- a/net/core/dev.c +++ b/net/core/dev.c | |||
@@ -751,7 +751,7 @@ int dev_change_name(struct net_device *dev, char *newname) | |||
751 | else | 751 | else |
752 | strlcpy(dev->name, newname, IFNAMSIZ); | 752 | strlcpy(dev->name, newname, IFNAMSIZ); |
753 | 753 | ||
754 | err = class_device_rename(&dev->class_dev, dev->name); | 754 | err = device_rename(&dev->dev, dev->name); |
755 | if (!err) { | 755 | if (!err) { |
756 | hlist_del(&dev->name_hlist); | 756 | hlist_del(&dev->name_hlist); |
757 | hlist_add_head(&dev->name_hlist, dev_name_hash(dev->name)); | 757 | hlist_add_head(&dev->name_hlist, dev_name_hash(dev->name)); |
@@ -3221,8 +3221,8 @@ void free_netdev(struct net_device *dev) | |||
3221 | BUG_ON(dev->reg_state != NETREG_UNREGISTERED); | 3221 | BUG_ON(dev->reg_state != NETREG_UNREGISTERED); |
3222 | dev->reg_state = NETREG_RELEASED; | 3222 | dev->reg_state = NETREG_RELEASED; |
3223 | 3223 | ||
3224 | /* will free via class release */ | 3224 | /* will free via device release */ |
3225 | class_device_put(&dev->class_dev); | 3225 | put_device(&dev->dev); |
3226 | #else | 3226 | #else |
3227 | kfree((char *)dev - dev->padded); | 3227 | kfree((char *)dev - dev->padded); |
3228 | #endif | 3228 | #endif |
diff --git a/net/core/net-sysfs.c b/net/core/net-sysfs.c index f47f319bb7dc..44db095a8f7e 100644 --- a/net/core/net-sysfs.c +++ b/net/core/net-sysfs.c | |||
@@ -18,9 +18,6 @@ | |||
18 | #include <linux/wireless.h> | 18 | #include <linux/wireless.h> |
19 | #include <net/iw_handler.h> | 19 | #include <net/iw_handler.h> |
20 | 20 | ||
21 | #define to_class_dev(obj) container_of(obj,struct class_device,kobj) | ||
22 | #define to_net_dev(class) container_of(class, struct net_device, class_dev) | ||
23 | |||
24 | static const char fmt_hex[] = "%#x\n"; | 21 | static const char fmt_hex[] = "%#x\n"; |
25 | static const char fmt_long_hex[] = "%#lx\n"; | 22 | static const char fmt_long_hex[] = "%#lx\n"; |
26 | static const char fmt_dec[] = "%d\n"; | 23 | static const char fmt_dec[] = "%d\n"; |
@@ -32,10 +29,11 @@ static inline int dev_isalive(const struct net_device *dev) | |||
32 | } | 29 | } |
33 | 30 | ||
34 | /* use same locking rules as GIF* ioctl's */ | 31 | /* use same locking rules as GIF* ioctl's */ |
35 | static ssize_t netdev_show(const struct class_device *cd, char *buf, | 32 | static ssize_t netdev_show(const struct device *dev, |
33 | struct device_attribute *attr, char *buf, | ||
36 | ssize_t (*format)(const struct net_device *, char *)) | 34 | ssize_t (*format)(const struct net_device *, char *)) |
37 | { | 35 | { |
38 | struct net_device *net = to_net_dev(cd); | 36 | struct net_device *net = to_net_dev(dev); |
39 | ssize_t ret = -EINVAL; | 37 | ssize_t ret = -EINVAL; |
40 | 38 | ||
41 | read_lock(&dev_base_lock); | 39 | read_lock(&dev_base_lock); |
@@ -52,14 +50,15 @@ static ssize_t format_##field(const struct net_device *net, char *buf) \ | |||
52 | { \ | 50 | { \ |
53 | return sprintf(buf, format_string, net->field); \ | 51 | return sprintf(buf, format_string, net->field); \ |
54 | } \ | 52 | } \ |
55 | static ssize_t show_##field(struct class_device *cd, char *buf) \ | 53 | static ssize_t show_##field(struct device *dev, \ |
54 | struct device_attribute *attr, char *buf) \ | ||
56 | { \ | 55 | { \ |
57 | return netdev_show(cd, buf, format_##field); \ | 56 | return netdev_show(dev, attr, buf, format_##field); \ |
58 | } | 57 | } |
59 | 58 | ||
60 | 59 | ||
61 | /* use same locking and permission rules as SIF* ioctl's */ | 60 | /* use same locking and permission rules as SIF* ioctl's */ |
62 | static ssize_t netdev_store(struct class_device *dev, | 61 | static ssize_t netdev_store(struct device *dev, struct device_attribute *attr, |
63 | const char *buf, size_t len, | 62 | const char *buf, size_t len, |
64 | int (*set)(struct net_device *, unsigned long)) | 63 | int (*set)(struct net_device *, unsigned long)) |
65 | { | 64 | { |
@@ -104,7 +103,8 @@ static ssize_t format_addr(char *buf, const unsigned char *addr, int len) | |||
104 | return cp - buf; | 103 | return cp - buf; |
105 | } | 104 | } |
106 | 105 | ||
107 | static ssize_t show_address(struct class_device *dev, char *buf) | 106 | static ssize_t show_address(struct device *dev, struct device_attribute *attr, |
107 | char *buf) | ||
108 | { | 108 | { |
109 | struct net_device *net = to_net_dev(dev); | 109 | struct net_device *net = to_net_dev(dev); |
110 | ssize_t ret = -EINVAL; | 110 | ssize_t ret = -EINVAL; |
@@ -116,7 +116,8 @@ static ssize_t show_address(struct class_device *dev, char *buf) | |||
116 | return ret; | 116 | return ret; |
117 | } | 117 | } |
118 | 118 | ||
119 | static ssize_t show_broadcast(struct class_device *dev, char *buf) | 119 | static ssize_t show_broadcast(struct device *dev, |
120 | struct device_attribute *attr, char *buf) | ||
120 | { | 121 | { |
121 | struct net_device *net = to_net_dev(dev); | 122 | struct net_device *net = to_net_dev(dev); |
122 | if (dev_isalive(net)) | 123 | if (dev_isalive(net)) |
@@ -124,7 +125,8 @@ static ssize_t show_broadcast(struct class_device *dev, char *buf) | |||
124 | return -EINVAL; | 125 | return -EINVAL; |
125 | } | 126 | } |
126 | 127 | ||
127 | static ssize_t show_carrier(struct class_device *dev, char *buf) | 128 | static ssize_t show_carrier(struct device *dev, |
129 | struct device_attribute *attr, char *buf) | ||
128 | { | 130 | { |
129 | struct net_device *netdev = to_net_dev(dev); | 131 | struct net_device *netdev = to_net_dev(dev); |
130 | if (netif_running(netdev)) { | 132 | if (netif_running(netdev)) { |
@@ -133,7 +135,8 @@ static ssize_t show_carrier(struct class_device *dev, char *buf) | |||
133 | return -EINVAL; | 135 | return -EINVAL; |
134 | } | 136 | } |
135 | 137 | ||
136 | static ssize_t show_dormant(struct class_device *dev, char *buf) | 138 | static ssize_t show_dormant(struct device *dev, |
139 | struct device_attribute *attr, char *buf) | ||
137 | { | 140 | { |
138 | struct net_device *netdev = to_net_dev(dev); | 141 | struct net_device *netdev = to_net_dev(dev); |
139 | 142 | ||
@@ -153,7 +156,8 @@ static const char *operstates[] = { | |||
153 | "up" | 156 | "up" |
154 | }; | 157 | }; |
155 | 158 | ||
156 | static ssize_t show_operstate(struct class_device *dev, char *buf) | 159 | static ssize_t show_operstate(struct device *dev, |
160 | struct device_attribute *attr, char *buf) | ||
157 | { | 161 | { |
158 | const struct net_device *netdev = to_net_dev(dev); | 162 | const struct net_device *netdev = to_net_dev(dev); |
159 | unsigned char operstate; | 163 | unsigned char operstate; |
@@ -178,9 +182,10 @@ static int change_mtu(struct net_device *net, unsigned long new_mtu) | |||
178 | return dev_set_mtu(net, (int) new_mtu); | 182 | return dev_set_mtu(net, (int) new_mtu); |
179 | } | 183 | } |
180 | 184 | ||
181 | static ssize_t store_mtu(struct class_device *dev, const char *buf, size_t len) | 185 | static ssize_t store_mtu(struct device *dev, struct device_attribute *attr, |
186 | const char *buf, size_t len) | ||
182 | { | 187 | { |
183 | return netdev_store(dev, buf, len, change_mtu); | 188 | return netdev_store(dev, attr, buf, len, change_mtu); |
184 | } | 189 | } |
185 | 190 | ||
186 | NETDEVICE_SHOW(flags, fmt_hex); | 191 | NETDEVICE_SHOW(flags, fmt_hex); |
@@ -190,9 +195,10 @@ static int change_flags(struct net_device *net, unsigned long new_flags) | |||
190 | return dev_change_flags(net, (unsigned) new_flags); | 195 | return dev_change_flags(net, (unsigned) new_flags); |
191 | } | 196 | } |
192 | 197 | ||
193 | static ssize_t store_flags(struct class_device *dev, const char *buf, size_t len) | 198 | static ssize_t store_flags(struct device *dev, struct device_attribute *attr, |
199 | const char *buf, size_t len) | ||
194 | { | 200 | { |
195 | return netdev_store(dev, buf, len, change_flags); | 201 | return netdev_store(dev, attr, buf, len, change_flags); |
196 | } | 202 | } |
197 | 203 | ||
198 | NETDEVICE_SHOW(tx_queue_len, fmt_ulong); | 204 | NETDEVICE_SHOW(tx_queue_len, fmt_ulong); |
@@ -203,9 +209,11 @@ static int change_tx_queue_len(struct net_device *net, unsigned long new_len) | |||
203 | return 0; | 209 | return 0; |
204 | } | 210 | } |
205 | 211 | ||
206 | static ssize_t store_tx_queue_len(struct class_device *dev, const char *buf, size_t len) | 212 | static ssize_t store_tx_queue_len(struct device *dev, |
213 | struct device_attribute *attr, | ||
214 | const char *buf, size_t len) | ||
207 | { | 215 | { |
208 | return netdev_store(dev, buf, len, change_tx_queue_len); | 216 | return netdev_store(dev, attr, buf, len, change_tx_queue_len); |
209 | } | 217 | } |
210 | 218 | ||
211 | NETDEVICE_SHOW(weight, fmt_dec); | 219 | NETDEVICE_SHOW(weight, fmt_dec); |
@@ -216,12 +224,13 @@ static int change_weight(struct net_device *net, unsigned long new_weight) | |||
216 | return 0; | 224 | return 0; |
217 | } | 225 | } |
218 | 226 | ||
219 | static ssize_t store_weight(struct class_device *dev, const char *buf, size_t len) | 227 | static ssize_t store_weight(struct device *dev, struct device_attribute *attr, |
228 | const char *buf, size_t len) | ||
220 | { | 229 | { |
221 | return netdev_store(dev, buf, len, change_weight); | 230 | return netdev_store(dev, attr, buf, len, change_weight); |
222 | } | 231 | } |
223 | 232 | ||
224 | static struct class_device_attribute net_class_attributes[] = { | 233 | static struct device_attribute net_class_attributes[] = { |
225 | __ATTR(addr_len, S_IRUGO, show_addr_len, NULL), | 234 | __ATTR(addr_len, S_IRUGO, show_addr_len, NULL), |
226 | __ATTR(iflink, S_IRUGO, show_iflink, NULL), | 235 | __ATTR(iflink, S_IRUGO, show_iflink, NULL), |
227 | __ATTR(ifindex, S_IRUGO, show_ifindex, NULL), | 236 | __ATTR(ifindex, S_IRUGO, show_ifindex, NULL), |
@@ -242,10 +251,11 @@ static struct class_device_attribute net_class_attributes[] = { | |||
242 | }; | 251 | }; |
243 | 252 | ||
244 | /* Show a given an attribute in the statistics group */ | 253 | /* Show a given an attribute in the statistics group */ |
245 | static ssize_t netstat_show(const struct class_device *cd, char *buf, | 254 | static ssize_t netstat_show(const struct device *d, |
255 | struct device_attribute *attr, char *buf, | ||
246 | unsigned long offset) | 256 | unsigned long offset) |
247 | { | 257 | { |
248 | struct net_device *dev = to_net_dev(cd); | 258 | struct net_device *dev = to_net_dev(d); |
249 | struct net_device_stats *stats; | 259 | struct net_device_stats *stats; |
250 | ssize_t ret = -EINVAL; | 260 | ssize_t ret = -EINVAL; |
251 | 261 | ||
@@ -265,12 +275,13 @@ static ssize_t netstat_show(const struct class_device *cd, char *buf, | |||
265 | 275 | ||
266 | /* generate a read-only statistics attribute */ | 276 | /* generate a read-only statistics attribute */ |
267 | #define NETSTAT_ENTRY(name) \ | 277 | #define NETSTAT_ENTRY(name) \ |
268 | static ssize_t show_##name(struct class_device *cd, char *buf) \ | 278 | static ssize_t show_##name(struct device *d, \ |
279 | struct device_attribute *attr, char *buf) \ | ||
269 | { \ | 280 | { \ |
270 | return netstat_show(cd, buf, \ | 281 | return netstat_show(d, attr, buf, \ |
271 | offsetof(struct net_device_stats, name)); \ | 282 | offsetof(struct net_device_stats, name)); \ |
272 | } \ | 283 | } \ |
273 | static CLASS_DEVICE_ATTR(name, S_IRUGO, show_##name, NULL) | 284 | static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL) |
274 | 285 | ||
275 | NETSTAT_ENTRY(rx_packets); | 286 | NETSTAT_ENTRY(rx_packets); |
276 | NETSTAT_ENTRY(tx_packets); | 287 | NETSTAT_ENTRY(tx_packets); |
@@ -297,29 +308,29 @@ NETSTAT_ENTRY(rx_compressed); | |||
297 | NETSTAT_ENTRY(tx_compressed); | 308 | NETSTAT_ENTRY(tx_compressed); |
298 | 309 | ||
299 | static struct attribute *netstat_attrs[] = { | 310 | static struct attribute *netstat_attrs[] = { |
300 | &class_device_attr_rx_packets.attr, | 311 | &dev_attr_rx_packets.attr, |
301 | &class_device_attr_tx_packets.attr, | 312 | &dev_attr_tx_packets.attr, |
302 | &class_device_attr_rx_bytes.attr, | 313 | &dev_attr_rx_bytes.attr, |
303 | &class_device_attr_tx_bytes.attr, | 314 | &dev_attr_tx_bytes.attr, |
304 | &class_device_attr_rx_errors.attr, | 315 | &dev_attr_rx_errors.attr, |
305 | &class_device_attr_tx_errors.attr, | 316 | &dev_attr_tx_errors.attr, |
306 | &class_device_attr_rx_dropped.attr, | 317 | &dev_attr_rx_dropped.attr, |
307 | &class_device_attr_tx_dropped.attr, | 318 | &dev_attr_tx_dropped.attr, |
308 | &class_device_attr_multicast.attr, | 319 | &dev_attr_multicast.attr, |
309 | &class_device_attr_collisions.attr, | 320 | &dev_attr_collisions.attr, |
310 | &class_device_attr_rx_length_errors.attr, | 321 | &dev_attr_rx_length_errors.attr, |
311 | &class_device_attr_rx_over_errors.attr, | 322 | &dev_attr_rx_over_errors.attr, |
312 | &class_device_attr_rx_crc_errors.attr, | 323 | &dev_attr_rx_crc_errors.attr, |
313 | &class_device_attr_rx_frame_errors.attr, | 324 | &dev_attr_rx_frame_errors.attr, |
314 | &class_device_attr_rx_fifo_errors.attr, | 325 | &dev_attr_rx_fifo_errors.attr, |
315 | &class_device_attr_rx_missed_errors.attr, | 326 | &dev_attr_rx_missed_errors.attr, |
316 | &class_device_attr_tx_aborted_errors.attr, | 327 | &dev_attr_tx_aborted_errors.attr, |
317 | &class_device_attr_tx_carrier_errors.attr, | 328 | &dev_attr_tx_carrier_errors.attr, |
318 | &class_device_attr_tx_fifo_errors.attr, | 329 | &dev_attr_tx_fifo_errors.attr, |
319 | &class_device_attr_tx_heartbeat_errors.attr, | 330 | &dev_attr_tx_heartbeat_errors.attr, |
320 | &class_device_attr_tx_window_errors.attr, | 331 | &dev_attr_tx_window_errors.attr, |
321 | &class_device_attr_rx_compressed.attr, | 332 | &dev_attr_rx_compressed.attr, |
322 | &class_device_attr_tx_compressed.attr, | 333 | &dev_attr_tx_compressed.attr, |
323 | NULL | 334 | NULL |
324 | }; | 335 | }; |
325 | 336 | ||
@@ -331,11 +342,11 @@ static struct attribute_group netstat_group = { | |||
331 | 342 | ||
332 | #ifdef WIRELESS_EXT | 343 | #ifdef WIRELESS_EXT |
333 | /* helper function that does all the locking etc for wireless stats */ | 344 | /* helper function that does all the locking etc for wireless stats */ |
334 | static ssize_t wireless_show(struct class_device *cd, char *buf, | 345 | static ssize_t wireless_show(struct device *d, char *buf, |
335 | ssize_t (*format)(const struct iw_statistics *, | 346 | ssize_t (*format)(const struct iw_statistics *, |
336 | char *)) | 347 | char *)) |
337 | { | 348 | { |
338 | struct net_device *dev = to_net_dev(cd); | 349 | struct net_device *dev = to_net_dev(d); |
339 | const struct iw_statistics *iw = NULL; | 350 | const struct iw_statistics *iw = NULL; |
340 | ssize_t ret = -EINVAL; | 351 | ssize_t ret = -EINVAL; |
341 | 352 | ||
@@ -358,11 +369,12 @@ static ssize_t format_iw_##name(const struct iw_statistics *iw, char *buf) \ | |||
358 | { \ | 369 | { \ |
359 | return sprintf(buf, format_string, iw->field); \ | 370 | return sprintf(buf, format_string, iw->field); \ |
360 | } \ | 371 | } \ |
361 | static ssize_t show_iw_##name(struct class_device *cd, char *buf) \ | 372 | static ssize_t show_iw_##name(struct device *d, \ |
373 | struct device_attribute *attr, char *buf) \ | ||
362 | { \ | 374 | { \ |
363 | return wireless_show(cd, buf, format_iw_##name); \ | 375 | return wireless_show(d, buf, format_iw_##name); \ |
364 | } \ | 376 | } \ |
365 | static CLASS_DEVICE_ATTR(name, S_IRUGO, show_iw_##name, NULL) | 377 | static DEVICE_ATTR(name, S_IRUGO, show_iw_##name, NULL) |
366 | 378 | ||
367 | WIRELESS_SHOW(status, status, fmt_hex); | 379 | WIRELESS_SHOW(status, status, fmt_hex); |
368 | WIRELESS_SHOW(link, qual.qual, fmt_dec); | 380 | WIRELESS_SHOW(link, qual.qual, fmt_dec); |
@@ -376,16 +388,16 @@ WIRELESS_SHOW(retries, discard.retries, fmt_dec); | |||
376 | WIRELESS_SHOW(beacon, miss.beacon, fmt_dec); | 388 | WIRELESS_SHOW(beacon, miss.beacon, fmt_dec); |
377 | 389 | ||
378 | static struct attribute *wireless_attrs[] = { | 390 | static struct attribute *wireless_attrs[] = { |
379 | &class_device_attr_status.attr, | 391 | &dev_attr_status.attr, |
380 | &class_device_attr_link.attr, | 392 | &dev_attr_link.attr, |
381 | &class_device_attr_level.attr, | 393 | &dev_attr_level.attr, |
382 | &class_device_attr_noise.attr, | 394 | &dev_attr_noise.attr, |
383 | &class_device_attr_nwid.attr, | 395 | &dev_attr_nwid.attr, |
384 | &class_device_attr_crypt.attr, | 396 | &dev_attr_crypt.attr, |
385 | &class_device_attr_fragment.attr, | 397 | &dev_attr_fragment.attr, |
386 | &class_device_attr_retries.attr, | 398 | &dev_attr_retries.attr, |
387 | &class_device_attr_misc.attr, | 399 | &dev_attr_misc.attr, |
388 | &class_device_attr_beacon.attr, | 400 | &dev_attr_beacon.attr, |
389 | NULL | 401 | NULL |
390 | }; | 402 | }; |
391 | 403 | ||
@@ -396,10 +408,10 @@ static struct attribute_group wireless_group = { | |||
396 | #endif | 408 | #endif |
397 | 409 | ||
398 | #ifdef CONFIG_HOTPLUG | 410 | #ifdef CONFIG_HOTPLUG |
399 | static int netdev_uevent(struct class_device *cd, char **envp, | 411 | static int netdev_uevent(struct device *d, char **envp, |
400 | int num_envp, char *buf, int size) | 412 | int num_envp, char *buf, int size) |
401 | { | 413 | { |
402 | struct net_device *dev = to_net_dev(cd); | 414 | struct net_device *dev = to_net_dev(d); |
403 | int i = 0; | 415 | int i = 0; |
404 | int n; | 416 | int n; |
405 | 417 | ||
@@ -419,12 +431,11 @@ static int netdev_uevent(struct class_device *cd, char **envp, | |||
419 | 431 | ||
420 | /* | 432 | /* |
421 | * netdev_release -- destroy and free a dead device. | 433 | * netdev_release -- destroy and free a dead device. |
422 | * Called when last reference to class_device kobject is gone. | 434 | * Called when last reference to device kobject is gone. |
423 | */ | 435 | */ |
424 | static void netdev_release(struct class_device *cd) | 436 | static void netdev_release(struct device *d) |
425 | { | 437 | { |
426 | struct net_device *dev | 438 | struct net_device *dev = to_net_dev(d); |
427 | = container_of(cd, struct net_device, class_dev); | ||
428 | 439 | ||
429 | BUG_ON(dev->reg_state != NETREG_RELEASED); | 440 | BUG_ON(dev->reg_state != NETREG_RELEASED); |
430 | 441 | ||
@@ -433,31 +444,31 @@ static void netdev_release(struct class_device *cd) | |||
433 | 444 | ||
434 | static struct class net_class = { | 445 | static struct class net_class = { |
435 | .name = "net", | 446 | .name = "net", |
436 | .release = netdev_release, | 447 | .dev_release = netdev_release, |
437 | .class_dev_attrs = net_class_attributes, | 448 | .dev_attrs = net_class_attributes, |
438 | #ifdef CONFIG_HOTPLUG | 449 | #ifdef CONFIG_HOTPLUG |
439 | .uevent = netdev_uevent, | 450 | .dev_uevent = netdev_uevent, |
440 | #endif | 451 | #endif |
441 | }; | 452 | }; |
442 | 453 | ||
443 | void netdev_unregister_sysfs(struct net_device * net) | 454 | void netdev_unregister_sysfs(struct net_device * net) |
444 | { | 455 | { |
445 | class_device_del(&(net->class_dev)); | 456 | device_del(&(net->dev)); |
446 | } | 457 | } |
447 | 458 | ||
448 | /* Create sysfs entries for network device. */ | 459 | /* Create sysfs entries for network device. */ |
449 | int netdev_register_sysfs(struct net_device *net) | 460 | int netdev_register_sysfs(struct net_device *net) |
450 | { | 461 | { |
451 | struct class_device *class_dev = &(net->class_dev); | 462 | struct device *dev = &(net->dev); |
452 | struct attribute_group **groups = net->sysfs_groups; | 463 | struct attribute_group **groups = net->sysfs_groups; |
453 | 464 | ||
454 | class_device_initialize(class_dev); | 465 | device_initialize(dev); |
455 | class_dev->class = &net_class; | 466 | dev->class = &net_class; |
456 | class_dev->class_data = net; | 467 | dev->platform_data = net; |
457 | class_dev->groups = groups; | 468 | dev->groups = groups; |
458 | 469 | ||
459 | BUILD_BUG_ON(BUS_ID_SIZE < IFNAMSIZ); | 470 | BUILD_BUG_ON(BUS_ID_SIZE < IFNAMSIZ); |
460 | strlcpy(class_dev->class_id, net->name, BUS_ID_SIZE); | 471 | strlcpy(dev->bus_id, net->name, BUS_ID_SIZE); |
461 | 472 | ||
462 | if (net->get_stats) | 473 | if (net->get_stats) |
463 | *groups++ = &netstat_group; | 474 | *groups++ = &netstat_group; |
@@ -467,7 +478,7 @@ int netdev_register_sysfs(struct net_device *net) | |||
467 | *groups++ = &wireless_group; | 478 | *groups++ = &wireless_group; |
468 | #endif | 479 | #endif |
469 | 480 | ||
470 | return class_device_add(class_dev); | 481 | return device_add(dev); |
471 | } | 482 | } |
472 | 483 | ||
473 | int netdev_sysfs_init(void) | 484 | int netdev_sysfs_init(void) |
diff --git a/net/core/skbuff.c b/net/core/skbuff.c index de7801d589e7..f3404ae9f190 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c | |||
@@ -268,7 +268,7 @@ nodata: | |||
268 | struct sk_buff *__netdev_alloc_skb(struct net_device *dev, | 268 | struct sk_buff *__netdev_alloc_skb(struct net_device *dev, |
269 | unsigned int length, gfp_t gfp_mask) | 269 | unsigned int length, gfp_t gfp_mask) |
270 | { | 270 | { |
271 | int node = dev->class_dev.dev ? dev_to_node(dev->class_dev.dev) : -1; | 271 | int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1; |
272 | struct sk_buff *skb; | 272 | struct sk_buff *skb; |
273 | 273 | ||
274 | skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask, 0, node); | 274 | skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask, 0, node); |