[PATCH] Numa-aware slab allocator V5
[linux-2.6/cjktty.git] / net / core / ethtool.c
blob404b761e82ce8d712412717b58fb139478ed4b37
1 /*
2 * net/core/ethtool.c - Ethtool ioctl handler
3 * Copyright (c) 2003 Matthew Wilcox <matthew@wil.cx>
5 * This file is where we call all the ethtool_ops commands to get
6 * the information ethtool needs. We fall back to calling do_ioctl()
7 * for drivers which haven't been converted to ethtool_ops yet.
9 * It's GPL, stupid.
12 #include <linux/module.h>
13 #include <linux/types.h>
14 #include <linux/errno.h>
15 #include <linux/ethtool.h>
16 #include <linux/netdevice.h>
17 #include <asm/uaccess.h>
19 /*
20 * Some useful ethtool_ops methods that're device independent.
21 * If we find that all drivers want to do the same thing here,
22 * we can turn these into dev_() function calls.
25 u32 ethtool_op_get_link(struct net_device *dev)
27 return netif_carrier_ok(dev) ? 1 : 0;
30 u32 ethtool_op_get_tx_csum(struct net_device *dev)
32 return (dev->features & (NETIF_F_IP_CSUM | NETIF_F_HW_CSUM)) != 0;
35 int ethtool_op_set_tx_csum(struct net_device *dev, u32 data)
37 if (data)
38 dev->features |= NETIF_F_IP_CSUM;
39 else
40 dev->features &= ~NETIF_F_IP_CSUM;
42 return 0;
45 int ethtool_op_set_tx_hw_csum(struct net_device *dev, u32 data)
47 if (data)
48 dev->features |= NETIF_F_HW_CSUM;
49 else
50 dev->features &= ~NETIF_F_HW_CSUM;
52 return 0;
54 u32 ethtool_op_get_sg(struct net_device *dev)
56 return (dev->features & NETIF_F_SG) != 0;
59 int ethtool_op_set_sg(struct net_device *dev, u32 data)
61 if (data)
62 dev->features |= NETIF_F_SG;
63 else
64 dev->features &= ~NETIF_F_SG;
66 return 0;
69 u32 ethtool_op_get_tso(struct net_device *dev)
71 return (dev->features & NETIF_F_TSO) != 0;
74 int ethtool_op_set_tso(struct net_device *dev, u32 data)
76 if (data)
77 dev->features |= NETIF_F_TSO;
78 else
79 dev->features &= ~NETIF_F_TSO;
81 return 0;
84 int ethtool_op_get_perm_addr(struct net_device *dev, struct ethtool_perm_addr *addr, u8 *data)
86 unsigned char len = dev->addr_len;
87 if ( addr->size < len )
88 return -ETOOSMALL;
90 addr->size = len;
91 memcpy(data, dev->perm_addr, len);
92 return 0;
96 /* Handlers for each ethtool command */
98 static int ethtool_get_settings(struct net_device *dev, void __user *useraddr)
100 struct ethtool_cmd cmd = { ETHTOOL_GSET };
101 int err;
103 if (!dev->ethtool_ops->get_settings)
104 return -EOPNOTSUPP;
106 err = dev->ethtool_ops->get_settings(dev, &cmd);
107 if (err < 0)
108 return err;
110 if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
111 return -EFAULT;
112 return 0;
115 static int ethtool_set_settings(struct net_device *dev, void __user *useraddr)
117 struct ethtool_cmd cmd;
119 if (!dev->ethtool_ops->set_settings)
120 return -EOPNOTSUPP;
122 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
123 return -EFAULT;
125 return dev->ethtool_ops->set_settings(dev, &cmd);
128 static int ethtool_get_drvinfo(struct net_device *dev, void __user *useraddr)
130 struct ethtool_drvinfo info;
131 struct ethtool_ops *ops = dev->ethtool_ops;
133 if (!ops->get_drvinfo)
134 return -EOPNOTSUPP;
136 memset(&info, 0, sizeof(info));
137 info.cmd = ETHTOOL_GDRVINFO;
138 ops->get_drvinfo(dev, &info);
140 if (ops->self_test_count)
141 info.testinfo_len = ops->self_test_count(dev);
142 if (ops->get_stats_count)
143 info.n_stats = ops->get_stats_count(dev);
144 if (ops->get_regs_len)
145 info.regdump_len = ops->get_regs_len(dev);
146 if (ops->get_eeprom_len)
147 info.eedump_len = ops->get_eeprom_len(dev);
149 if (copy_to_user(useraddr, &info, sizeof(info)))
150 return -EFAULT;
151 return 0;
154 static int ethtool_get_regs(struct net_device *dev, char __user *useraddr)
156 struct ethtool_regs regs;
157 struct ethtool_ops *ops = dev->ethtool_ops;
158 void *regbuf;
159 int reglen, ret;
161 if (!ops->get_regs || !ops->get_regs_len)
162 return -EOPNOTSUPP;
164 if (copy_from_user(&regs, useraddr, sizeof(regs)))
165 return -EFAULT;
167 reglen = ops->get_regs_len(dev);
168 if (regs.len > reglen)
169 regs.len = reglen;
171 regbuf = kmalloc(reglen, GFP_USER);
172 if (!regbuf)
173 return -ENOMEM;
175 ops->get_regs(dev, &regs, regbuf);
177 ret = -EFAULT;
178 if (copy_to_user(useraddr, &regs, sizeof(regs)))
179 goto out;
180 useraddr += offsetof(struct ethtool_regs, data);
181 if (copy_to_user(useraddr, regbuf, regs.len))
182 goto out;
183 ret = 0;
185 out:
186 kfree(regbuf);
187 return ret;
190 static int ethtool_get_wol(struct net_device *dev, char __user *useraddr)
192 struct ethtool_wolinfo wol = { ETHTOOL_GWOL };
194 if (!dev->ethtool_ops->get_wol)
195 return -EOPNOTSUPP;
197 dev->ethtool_ops->get_wol(dev, &wol);
199 if (copy_to_user(useraddr, &wol, sizeof(wol)))
200 return -EFAULT;
201 return 0;
204 static int ethtool_set_wol(struct net_device *dev, char __user *useraddr)
206 struct ethtool_wolinfo wol;
208 if (!dev->ethtool_ops->set_wol)
209 return -EOPNOTSUPP;
211 if (copy_from_user(&wol, useraddr, sizeof(wol)))
212 return -EFAULT;
214 return dev->ethtool_ops->set_wol(dev, &wol);
217 static int ethtool_get_msglevel(struct net_device *dev, char __user *useraddr)
219 struct ethtool_value edata = { ETHTOOL_GMSGLVL };
221 if (!dev->ethtool_ops->get_msglevel)
222 return -EOPNOTSUPP;
224 edata.data = dev->ethtool_ops->get_msglevel(dev);
226 if (copy_to_user(useraddr, &edata, sizeof(edata)))
227 return -EFAULT;
228 return 0;
231 static int ethtool_set_msglevel(struct net_device *dev, char __user *useraddr)
233 struct ethtool_value edata;
235 if (!dev->ethtool_ops->set_msglevel)
236 return -EOPNOTSUPP;
238 if (copy_from_user(&edata, useraddr, sizeof(edata)))
239 return -EFAULT;
241 dev->ethtool_ops->set_msglevel(dev, edata.data);
242 return 0;
245 static int ethtool_nway_reset(struct net_device *dev)
247 if (!dev->ethtool_ops->nway_reset)
248 return -EOPNOTSUPP;
250 return dev->ethtool_ops->nway_reset(dev);
253 static int ethtool_get_link(struct net_device *dev, void __user *useraddr)
255 struct ethtool_value edata = { ETHTOOL_GLINK };
257 if (!dev->ethtool_ops->get_link)
258 return -EOPNOTSUPP;
260 edata.data = dev->ethtool_ops->get_link(dev);
262 if (copy_to_user(useraddr, &edata, sizeof(edata)))
263 return -EFAULT;
264 return 0;
267 static int ethtool_get_eeprom(struct net_device *dev, void __user *useraddr)
269 struct ethtool_eeprom eeprom;
270 struct ethtool_ops *ops = dev->ethtool_ops;
271 u8 *data;
272 int ret;
274 if (!ops->get_eeprom || !ops->get_eeprom_len)
275 return -EOPNOTSUPP;
277 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
278 return -EFAULT;
280 /* Check for wrap and zero */
281 if (eeprom.offset + eeprom.len <= eeprom.offset)
282 return -EINVAL;
284 /* Check for exceeding total eeprom len */
285 if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))
286 return -EINVAL;
288 data = kmalloc(eeprom.len, GFP_USER);
289 if (!data)
290 return -ENOMEM;
292 ret = -EFAULT;
293 if (copy_from_user(data, useraddr + sizeof(eeprom), eeprom.len))
294 goto out;
296 ret = ops->get_eeprom(dev, &eeprom, data);
297 if (ret)
298 goto out;
300 ret = -EFAULT;
301 if (copy_to_user(useraddr, &eeprom, sizeof(eeprom)))
302 goto out;
303 if (copy_to_user(useraddr + sizeof(eeprom), data, eeprom.len))
304 goto out;
305 ret = 0;
307 out:
308 kfree(data);
309 return ret;
312 static int ethtool_set_eeprom(struct net_device *dev, void __user *useraddr)
314 struct ethtool_eeprom eeprom;
315 struct ethtool_ops *ops = dev->ethtool_ops;
316 u8 *data;
317 int ret;
319 if (!ops->set_eeprom || !ops->get_eeprom_len)
320 return -EOPNOTSUPP;
322 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
323 return -EFAULT;
325 /* Check for wrap and zero */
326 if (eeprom.offset + eeprom.len <= eeprom.offset)
327 return -EINVAL;
329 /* Check for exceeding total eeprom len */
330 if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))
331 return -EINVAL;
333 data = kmalloc(eeprom.len, GFP_USER);
334 if (!data)
335 return -ENOMEM;
337 ret = -EFAULT;
338 if (copy_from_user(data, useraddr + sizeof(eeprom), eeprom.len))
339 goto out;
341 ret = ops->set_eeprom(dev, &eeprom, data);
342 if (ret)
343 goto out;
345 if (copy_to_user(useraddr + sizeof(eeprom), data, eeprom.len))
346 ret = -EFAULT;
348 out:
349 kfree(data);
350 return ret;
353 static int ethtool_get_coalesce(struct net_device *dev, void __user *useraddr)
355 struct ethtool_coalesce coalesce = { ETHTOOL_GCOALESCE };
357 if (!dev->ethtool_ops->get_coalesce)
358 return -EOPNOTSUPP;
360 dev->ethtool_ops->get_coalesce(dev, &coalesce);
362 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
363 return -EFAULT;
364 return 0;
367 static int ethtool_set_coalesce(struct net_device *dev, void __user *useraddr)
369 struct ethtool_coalesce coalesce;
371 if (!dev->ethtool_ops->set_coalesce)
372 return -EOPNOTSUPP;
374 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce)))
375 return -EFAULT;
377 return dev->ethtool_ops->set_coalesce(dev, &coalesce);
380 static int ethtool_get_ringparam(struct net_device *dev, void __user *useraddr)
382 struct ethtool_ringparam ringparam = { ETHTOOL_GRINGPARAM };
384 if (!dev->ethtool_ops->get_ringparam)
385 return -EOPNOTSUPP;
387 dev->ethtool_ops->get_ringparam(dev, &ringparam);
389 if (copy_to_user(useraddr, &ringparam, sizeof(ringparam)))
390 return -EFAULT;
391 return 0;
394 static int ethtool_set_ringparam(struct net_device *dev, void __user *useraddr)
396 struct ethtool_ringparam ringparam;
398 if (!dev->ethtool_ops->set_ringparam)
399 return -EOPNOTSUPP;
401 if (copy_from_user(&ringparam, useraddr, sizeof(ringparam)))
402 return -EFAULT;
404 return dev->ethtool_ops->set_ringparam(dev, &ringparam);
407 static int ethtool_get_pauseparam(struct net_device *dev, void __user *useraddr)
409 struct ethtool_pauseparam pauseparam = { ETHTOOL_GPAUSEPARAM };
411 if (!dev->ethtool_ops->get_pauseparam)
412 return -EOPNOTSUPP;
414 dev->ethtool_ops->get_pauseparam(dev, &pauseparam);
416 if (copy_to_user(useraddr, &pauseparam, sizeof(pauseparam)))
417 return -EFAULT;
418 return 0;
421 static int ethtool_set_pauseparam(struct net_device *dev, void __user *useraddr)
423 struct ethtool_pauseparam pauseparam;
425 if (!dev->ethtool_ops->get_pauseparam)
426 return -EOPNOTSUPP;
428 if (copy_from_user(&pauseparam, useraddr, sizeof(pauseparam)))
429 return -EFAULT;
431 return dev->ethtool_ops->set_pauseparam(dev, &pauseparam);
434 static int ethtool_get_rx_csum(struct net_device *dev, char __user *useraddr)
436 struct ethtool_value edata = { ETHTOOL_GRXCSUM };
438 if (!dev->ethtool_ops->get_rx_csum)
439 return -EOPNOTSUPP;
441 edata.data = dev->ethtool_ops->get_rx_csum(dev);
443 if (copy_to_user(useraddr, &edata, sizeof(edata)))
444 return -EFAULT;
445 return 0;
448 static int ethtool_set_rx_csum(struct net_device *dev, char __user *useraddr)
450 struct ethtool_value edata;
452 if (!dev->ethtool_ops->set_rx_csum)
453 return -EOPNOTSUPP;
455 if (copy_from_user(&edata, useraddr, sizeof(edata)))
456 return -EFAULT;
458 dev->ethtool_ops->set_rx_csum(dev, edata.data);
459 return 0;
462 static int ethtool_get_tx_csum(struct net_device *dev, char __user *useraddr)
464 struct ethtool_value edata = { ETHTOOL_GTXCSUM };
466 if (!dev->ethtool_ops->get_tx_csum)
467 return -EOPNOTSUPP;
469 edata.data = dev->ethtool_ops->get_tx_csum(dev);
471 if (copy_to_user(useraddr, &edata, sizeof(edata)))
472 return -EFAULT;
473 return 0;
476 static int __ethtool_set_sg(struct net_device *dev, u32 data)
478 int err;
480 if (!data && dev->ethtool_ops->set_tso) {
481 err = dev->ethtool_ops->set_tso(dev, 0);
482 if (err)
483 return err;
486 return dev->ethtool_ops->set_sg(dev, data);
489 static int ethtool_set_tx_csum(struct net_device *dev, char __user *useraddr)
491 struct ethtool_value edata;
492 int err;
494 if (!dev->ethtool_ops->set_tx_csum)
495 return -EOPNOTSUPP;
497 if (copy_from_user(&edata, useraddr, sizeof(edata)))
498 return -EFAULT;
500 if (!edata.data && dev->ethtool_ops->set_sg) {
501 err = __ethtool_set_sg(dev, 0);
502 if (err)
503 return err;
506 return dev->ethtool_ops->set_tx_csum(dev, edata.data);
509 static int ethtool_get_sg(struct net_device *dev, char __user *useraddr)
511 struct ethtool_value edata = { ETHTOOL_GSG };
513 if (!dev->ethtool_ops->get_sg)
514 return -EOPNOTSUPP;
516 edata.data = dev->ethtool_ops->get_sg(dev);
518 if (copy_to_user(useraddr, &edata, sizeof(edata)))
519 return -EFAULT;
520 return 0;
523 static int ethtool_set_sg(struct net_device *dev, char __user *useraddr)
525 struct ethtool_value edata;
527 if (!dev->ethtool_ops->set_sg)
528 return -EOPNOTSUPP;
530 if (copy_from_user(&edata, useraddr, sizeof(edata)))
531 return -EFAULT;
533 if (edata.data &&
534 !(dev->features & (NETIF_F_IP_CSUM |
535 NETIF_F_NO_CSUM |
536 NETIF_F_HW_CSUM)))
537 return -EINVAL;
539 return __ethtool_set_sg(dev, edata.data);
542 static int ethtool_get_tso(struct net_device *dev, char __user *useraddr)
544 struct ethtool_value edata = { ETHTOOL_GTSO };
546 if (!dev->ethtool_ops->get_tso)
547 return -EOPNOTSUPP;
549 edata.data = dev->ethtool_ops->get_tso(dev);
551 if (copy_to_user(useraddr, &edata, sizeof(edata)))
552 return -EFAULT;
553 return 0;
556 static int ethtool_set_tso(struct net_device *dev, char __user *useraddr)
558 struct ethtool_value edata;
560 if (!dev->ethtool_ops->set_tso)
561 return -EOPNOTSUPP;
563 if (copy_from_user(&edata, useraddr, sizeof(edata)))
564 return -EFAULT;
566 if (edata.data && !(dev->features & NETIF_F_SG))
567 return -EINVAL;
569 return dev->ethtool_ops->set_tso(dev, edata.data);
572 static int ethtool_self_test(struct net_device *dev, char __user *useraddr)
574 struct ethtool_test test;
575 struct ethtool_ops *ops = dev->ethtool_ops;
576 u64 *data;
577 int ret;
579 if (!ops->self_test || !ops->self_test_count)
580 return -EOPNOTSUPP;
582 if (copy_from_user(&test, useraddr, sizeof(test)))
583 return -EFAULT;
585 test.len = ops->self_test_count(dev);
586 data = kmalloc(test.len * sizeof(u64), GFP_USER);
587 if (!data)
588 return -ENOMEM;
590 ops->self_test(dev, &test, data);
592 ret = -EFAULT;
593 if (copy_to_user(useraddr, &test, sizeof(test)))
594 goto out;
595 useraddr += sizeof(test);
596 if (copy_to_user(useraddr, data, test.len * sizeof(u64)))
597 goto out;
598 ret = 0;
600 out:
601 kfree(data);
602 return ret;
605 static int ethtool_get_strings(struct net_device *dev, void __user *useraddr)
607 struct ethtool_gstrings gstrings;
608 struct ethtool_ops *ops = dev->ethtool_ops;
609 u8 *data;
610 int ret;
612 if (!ops->get_strings)
613 return -EOPNOTSUPP;
615 if (copy_from_user(&gstrings, useraddr, sizeof(gstrings)))
616 return -EFAULT;
618 switch (gstrings.string_set) {
619 case ETH_SS_TEST:
620 if (!ops->self_test_count)
621 return -EOPNOTSUPP;
622 gstrings.len = ops->self_test_count(dev);
623 break;
624 case ETH_SS_STATS:
625 if (!ops->get_stats_count)
626 return -EOPNOTSUPP;
627 gstrings.len = ops->get_stats_count(dev);
628 break;
629 default:
630 return -EINVAL;
633 data = kmalloc(gstrings.len * ETH_GSTRING_LEN, GFP_USER);
634 if (!data)
635 return -ENOMEM;
637 ops->get_strings(dev, gstrings.string_set, data);
639 ret = -EFAULT;
640 if (copy_to_user(useraddr, &gstrings, sizeof(gstrings)))
641 goto out;
642 useraddr += sizeof(gstrings);
643 if (copy_to_user(useraddr, data, gstrings.len * ETH_GSTRING_LEN))
644 goto out;
645 ret = 0;
647 out:
648 kfree(data);
649 return ret;
652 static int ethtool_phys_id(struct net_device *dev, void __user *useraddr)
654 struct ethtool_value id;
656 if (!dev->ethtool_ops->phys_id)
657 return -EOPNOTSUPP;
659 if (copy_from_user(&id, useraddr, sizeof(id)))
660 return -EFAULT;
662 return dev->ethtool_ops->phys_id(dev, id.data);
665 static int ethtool_get_stats(struct net_device *dev, void __user *useraddr)
667 struct ethtool_stats stats;
668 struct ethtool_ops *ops = dev->ethtool_ops;
669 u64 *data;
670 int ret;
672 if (!ops->get_ethtool_stats || !ops->get_stats_count)
673 return -EOPNOTSUPP;
675 if (copy_from_user(&stats, useraddr, sizeof(stats)))
676 return -EFAULT;
678 stats.n_stats = ops->get_stats_count(dev);
679 data = kmalloc(stats.n_stats * sizeof(u64), GFP_USER);
680 if (!data)
681 return -ENOMEM;
683 ops->get_ethtool_stats(dev, &stats, data);
685 ret = -EFAULT;
686 if (copy_to_user(useraddr, &stats, sizeof(stats)))
687 goto out;
688 useraddr += sizeof(stats);
689 if (copy_to_user(useraddr, data, stats.n_stats * sizeof(u64)))
690 goto out;
691 ret = 0;
693 out:
694 kfree(data);
695 return ret;
698 static int ethtool_get_perm_addr(struct net_device *dev, void __user *useraddr)
700 struct ethtool_perm_addr epaddr;
701 u8 *data;
702 int ret;
704 if (!dev->ethtool_ops->get_perm_addr)
705 return -EOPNOTSUPP;
707 if (copy_from_user(&epaddr,useraddr,sizeof(epaddr)))
708 return -EFAULT;
710 data = kmalloc(epaddr.size, GFP_USER);
711 if (!data)
712 return -ENOMEM;
714 ret = dev->ethtool_ops->get_perm_addr(dev,&epaddr,data);
715 if (ret)
716 return ret;
718 ret = -EFAULT;
719 if (copy_to_user(useraddr, &epaddr, sizeof(epaddr)))
720 goto out;
721 useraddr += sizeof(epaddr);
722 if (copy_to_user(useraddr, data, epaddr.size))
723 goto out;
724 ret = 0;
726 out:
727 kfree(data);
728 return ret;
731 /* The main entry point in this file. Called from net/core/dev.c */
733 int dev_ethtool(struct ifreq *ifr)
735 struct net_device *dev = __dev_get_by_name(ifr->ifr_name);
736 void __user *useraddr = ifr->ifr_data;
737 u32 ethcmd;
738 int rc;
739 unsigned long old_features;
742 * XXX: This can be pushed down into the ethtool_* handlers that
743 * need it. Keep existing behaviour for the moment.
745 if (!capable(CAP_NET_ADMIN))
746 return -EPERM;
748 if (!dev || !netif_device_present(dev))
749 return -ENODEV;
751 if (!dev->ethtool_ops)
752 goto ioctl;
754 if (copy_from_user(&ethcmd, useraddr, sizeof (ethcmd)))
755 return -EFAULT;
757 if(dev->ethtool_ops->begin)
758 if ((rc = dev->ethtool_ops->begin(dev)) < 0)
759 return rc;
761 old_features = dev->features;
763 switch (ethcmd) {
764 case ETHTOOL_GSET:
765 rc = ethtool_get_settings(dev, useraddr);
766 break;
767 case ETHTOOL_SSET:
768 rc = ethtool_set_settings(dev, useraddr);
769 break;
770 case ETHTOOL_GDRVINFO:
771 rc = ethtool_get_drvinfo(dev, useraddr);
772 break;
773 case ETHTOOL_GREGS:
774 rc = ethtool_get_regs(dev, useraddr);
775 break;
776 case ETHTOOL_GWOL:
777 rc = ethtool_get_wol(dev, useraddr);
778 break;
779 case ETHTOOL_SWOL:
780 rc = ethtool_set_wol(dev, useraddr);
781 break;
782 case ETHTOOL_GMSGLVL:
783 rc = ethtool_get_msglevel(dev, useraddr);
784 break;
785 case ETHTOOL_SMSGLVL:
786 rc = ethtool_set_msglevel(dev, useraddr);
787 break;
788 case ETHTOOL_NWAY_RST:
789 rc = ethtool_nway_reset(dev);
790 break;
791 case ETHTOOL_GLINK:
792 rc = ethtool_get_link(dev, useraddr);
793 break;
794 case ETHTOOL_GEEPROM:
795 rc = ethtool_get_eeprom(dev, useraddr);
796 break;
797 case ETHTOOL_SEEPROM:
798 rc = ethtool_set_eeprom(dev, useraddr);
799 break;
800 case ETHTOOL_GCOALESCE:
801 rc = ethtool_get_coalesce(dev, useraddr);
802 break;
803 case ETHTOOL_SCOALESCE:
804 rc = ethtool_set_coalesce(dev, useraddr);
805 break;
806 case ETHTOOL_GRINGPARAM:
807 rc = ethtool_get_ringparam(dev, useraddr);
808 break;
809 case ETHTOOL_SRINGPARAM:
810 rc = ethtool_set_ringparam(dev, useraddr);
811 break;
812 case ETHTOOL_GPAUSEPARAM:
813 rc = ethtool_get_pauseparam(dev, useraddr);
814 break;
815 case ETHTOOL_SPAUSEPARAM:
816 rc = ethtool_set_pauseparam(dev, useraddr);
817 break;
818 case ETHTOOL_GRXCSUM:
819 rc = ethtool_get_rx_csum(dev, useraddr);
820 break;
821 case ETHTOOL_SRXCSUM:
822 rc = ethtool_set_rx_csum(dev, useraddr);
823 break;
824 case ETHTOOL_GTXCSUM:
825 rc = ethtool_get_tx_csum(dev, useraddr);
826 break;
827 case ETHTOOL_STXCSUM:
828 rc = ethtool_set_tx_csum(dev, useraddr);
829 break;
830 case ETHTOOL_GSG:
831 rc = ethtool_get_sg(dev, useraddr);
832 break;
833 case ETHTOOL_SSG:
834 rc = ethtool_set_sg(dev, useraddr);
835 break;
836 case ETHTOOL_GTSO:
837 rc = ethtool_get_tso(dev, useraddr);
838 break;
839 case ETHTOOL_STSO:
840 rc = ethtool_set_tso(dev, useraddr);
841 break;
842 case ETHTOOL_TEST:
843 rc = ethtool_self_test(dev, useraddr);
844 break;
845 case ETHTOOL_GSTRINGS:
846 rc = ethtool_get_strings(dev, useraddr);
847 break;
848 case ETHTOOL_PHYS_ID:
849 rc = ethtool_phys_id(dev, useraddr);
850 break;
851 case ETHTOOL_GSTATS:
852 rc = ethtool_get_stats(dev, useraddr);
853 break;
854 case ETHTOOL_GPERMADDR:
855 rc = ethtool_get_perm_addr(dev, useraddr);
856 break;
857 default:
858 rc = -EOPNOTSUPP;
861 if(dev->ethtool_ops->complete)
862 dev->ethtool_ops->complete(dev);
864 if (old_features != dev->features)
865 netdev_features_change(dev);
867 return rc;
869 ioctl:
870 if (dev->do_ioctl)
871 return dev->do_ioctl(dev, ifr, SIOCETHTOOL);
872 return -EOPNOTSUPP;
875 EXPORT_SYMBOL(dev_ethtool);
876 EXPORT_SYMBOL(ethtool_op_get_link);
877 EXPORT_SYMBOL_GPL(ethtool_op_get_perm_addr);
878 EXPORT_SYMBOL(ethtool_op_get_sg);
879 EXPORT_SYMBOL(ethtool_op_get_tso);
880 EXPORT_SYMBOL(ethtool_op_get_tx_csum);
881 EXPORT_SYMBOL(ethtool_op_set_sg);
882 EXPORT_SYMBOL(ethtool_op_set_tso);
883 EXPORT_SYMBOL(ethtool_op_set_tx_csum);
884 EXPORT_SYMBOL(ethtool_op_set_tx_hw_csum);