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.
12 #include <linux/module.h>
13 #include <linux/types.h>
14 #include <linux/capability.h>
15 #include <linux/errno.h>
16 #include <linux/ethtool.h>
17 #include <linux/netdevice.h>
18 #include <asm/uaccess.h>
21 * Some useful ethtool_ops methods that're device independent.
22 * If we find that all drivers want to do the same thing here,
23 * we can turn these into dev_() function calls.
26 u32
ethtool_op_get_link(struct net_device
*dev
)
28 return netif_carrier_ok(dev
) ? 1 : 0;
31 u32
ethtool_op_get_tx_csum(struct net_device
*dev
)
33 return (dev
->features
& (NETIF_F_IP_CSUM
| NETIF_F_HW_CSUM
)) != 0;
36 int ethtool_op_set_tx_csum(struct net_device
*dev
, u32 data
)
39 dev
->features
|= NETIF_F_IP_CSUM
;
41 dev
->features
&= ~NETIF_F_IP_CSUM
;
46 int ethtool_op_set_tx_hw_csum(struct net_device
*dev
, u32 data
)
49 dev
->features
|= NETIF_F_HW_CSUM
;
51 dev
->features
&= ~NETIF_F_HW_CSUM
;
55 u32
ethtool_op_get_sg(struct net_device
*dev
)
57 return (dev
->features
& NETIF_F_SG
) != 0;
60 int ethtool_op_set_sg(struct net_device
*dev
, u32 data
)
63 dev
->features
|= NETIF_F_SG
;
65 dev
->features
&= ~NETIF_F_SG
;
70 u32
ethtool_op_get_tso(struct net_device
*dev
)
72 return (dev
->features
& NETIF_F_TSO
) != 0;
75 int ethtool_op_set_tso(struct net_device
*dev
, u32 data
)
78 dev
->features
|= NETIF_F_TSO
;
80 dev
->features
&= ~NETIF_F_TSO
;
85 int ethtool_op_get_perm_addr(struct net_device
*dev
, struct ethtool_perm_addr
*addr
, u8
*data
)
87 unsigned char len
= dev
->addr_len
;
88 if ( addr
->size
< len
)
92 memcpy(data
, dev
->perm_addr
, len
);
97 u32
ethtool_op_get_ufo(struct net_device
*dev
)
99 return (dev
->features
& NETIF_F_UFO
) != 0;
102 int ethtool_op_set_ufo(struct net_device
*dev
, u32 data
)
105 dev
->features
|= NETIF_F_UFO
;
107 dev
->features
&= ~NETIF_F_UFO
;
111 /* Handlers for each ethtool command */
113 static int ethtool_get_settings(struct net_device
*dev
, void __user
*useraddr
)
115 struct ethtool_cmd cmd
= { ETHTOOL_GSET
};
118 if (!dev
->ethtool_ops
->get_settings
)
121 err
= dev
->ethtool_ops
->get_settings(dev
, &cmd
);
125 if (copy_to_user(useraddr
, &cmd
, sizeof(cmd
)))
130 static int ethtool_set_settings(struct net_device
*dev
, void __user
*useraddr
)
132 struct ethtool_cmd cmd
;
134 if (!dev
->ethtool_ops
->set_settings
)
137 if (copy_from_user(&cmd
, useraddr
, sizeof(cmd
)))
140 return dev
->ethtool_ops
->set_settings(dev
, &cmd
);
143 static int ethtool_get_drvinfo(struct net_device
*dev
, void __user
*useraddr
)
145 struct ethtool_drvinfo info
;
146 struct ethtool_ops
*ops
= dev
->ethtool_ops
;
148 if (!ops
->get_drvinfo
)
151 memset(&info
, 0, sizeof(info
));
152 info
.cmd
= ETHTOOL_GDRVINFO
;
153 ops
->get_drvinfo(dev
, &info
);
155 if (ops
->self_test_count
)
156 info
.testinfo_len
= ops
->self_test_count(dev
);
157 if (ops
->get_stats_count
)
158 info
.n_stats
= ops
->get_stats_count(dev
);
159 if (ops
->get_regs_len
)
160 info
.regdump_len
= ops
->get_regs_len(dev
);
161 if (ops
->get_eeprom_len
)
162 info
.eedump_len
= ops
->get_eeprom_len(dev
);
164 if (copy_to_user(useraddr
, &info
, sizeof(info
)))
169 static int ethtool_get_regs(struct net_device
*dev
, char __user
*useraddr
)
171 struct ethtool_regs regs
;
172 struct ethtool_ops
*ops
= dev
->ethtool_ops
;
176 if (!ops
->get_regs
|| !ops
->get_regs_len
)
179 if (copy_from_user(®s
, useraddr
, sizeof(regs
)))
182 reglen
= ops
->get_regs_len(dev
);
183 if (regs
.len
> reglen
)
186 regbuf
= kmalloc(reglen
, GFP_USER
);
190 ops
->get_regs(dev
, ®s
, regbuf
);
193 if (copy_to_user(useraddr
, ®s
, sizeof(regs
)))
195 useraddr
+= offsetof(struct ethtool_regs
, data
);
196 if (copy_to_user(useraddr
, regbuf
, regs
.len
))
205 static int ethtool_get_wol(struct net_device
*dev
, char __user
*useraddr
)
207 struct ethtool_wolinfo wol
= { ETHTOOL_GWOL
};
209 if (!dev
->ethtool_ops
->get_wol
)
212 dev
->ethtool_ops
->get_wol(dev
, &wol
);
214 if (copy_to_user(useraddr
, &wol
, sizeof(wol
)))
219 static int ethtool_set_wol(struct net_device
*dev
, char __user
*useraddr
)
221 struct ethtool_wolinfo wol
;
223 if (!dev
->ethtool_ops
->set_wol
)
226 if (copy_from_user(&wol
, useraddr
, sizeof(wol
)))
229 return dev
->ethtool_ops
->set_wol(dev
, &wol
);
232 static int ethtool_get_msglevel(struct net_device
*dev
, char __user
*useraddr
)
234 struct ethtool_value edata
= { ETHTOOL_GMSGLVL
};
236 if (!dev
->ethtool_ops
->get_msglevel
)
239 edata
.data
= dev
->ethtool_ops
->get_msglevel(dev
);
241 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
246 static int ethtool_set_msglevel(struct net_device
*dev
, char __user
*useraddr
)
248 struct ethtool_value edata
;
250 if (!dev
->ethtool_ops
->set_msglevel
)
253 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
256 dev
->ethtool_ops
->set_msglevel(dev
, edata
.data
);
260 static int ethtool_nway_reset(struct net_device
*dev
)
262 if (!dev
->ethtool_ops
->nway_reset
)
265 return dev
->ethtool_ops
->nway_reset(dev
);
268 static int ethtool_get_link(struct net_device
*dev
, void __user
*useraddr
)
270 struct ethtool_value edata
= { ETHTOOL_GLINK
};
272 if (!dev
->ethtool_ops
->get_link
)
275 edata
.data
= dev
->ethtool_ops
->get_link(dev
);
277 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
282 static int ethtool_get_eeprom(struct net_device
*dev
, void __user
*useraddr
)
284 struct ethtool_eeprom eeprom
;
285 struct ethtool_ops
*ops
= dev
->ethtool_ops
;
289 if (!ops
->get_eeprom
|| !ops
->get_eeprom_len
)
292 if (copy_from_user(&eeprom
, useraddr
, sizeof(eeprom
)))
295 /* Check for wrap and zero */
296 if (eeprom
.offset
+ eeprom
.len
<= eeprom
.offset
)
299 /* Check for exceeding total eeprom len */
300 if (eeprom
.offset
+ eeprom
.len
> ops
->get_eeprom_len(dev
))
303 data
= kmalloc(eeprom
.len
, GFP_USER
);
308 if (copy_from_user(data
, useraddr
+ sizeof(eeprom
), eeprom
.len
))
311 ret
= ops
->get_eeprom(dev
, &eeprom
, data
);
316 if (copy_to_user(useraddr
, &eeprom
, sizeof(eeprom
)))
318 if (copy_to_user(useraddr
+ sizeof(eeprom
), data
, eeprom
.len
))
327 static int ethtool_set_eeprom(struct net_device
*dev
, void __user
*useraddr
)
329 struct ethtool_eeprom eeprom
;
330 struct ethtool_ops
*ops
= dev
->ethtool_ops
;
334 if (!ops
->set_eeprom
|| !ops
->get_eeprom_len
)
337 if (copy_from_user(&eeprom
, useraddr
, sizeof(eeprom
)))
340 /* Check for wrap and zero */
341 if (eeprom
.offset
+ eeprom
.len
<= eeprom
.offset
)
344 /* Check for exceeding total eeprom len */
345 if (eeprom
.offset
+ eeprom
.len
> ops
->get_eeprom_len(dev
))
348 data
= kmalloc(eeprom
.len
, GFP_USER
);
353 if (copy_from_user(data
, useraddr
+ sizeof(eeprom
), eeprom
.len
))
356 ret
= ops
->set_eeprom(dev
, &eeprom
, data
);
360 if (copy_to_user(useraddr
+ sizeof(eeprom
), data
, eeprom
.len
))
368 static int ethtool_get_coalesce(struct net_device
*dev
, void __user
*useraddr
)
370 struct ethtool_coalesce coalesce
= { ETHTOOL_GCOALESCE
};
372 if (!dev
->ethtool_ops
->get_coalesce
)
375 dev
->ethtool_ops
->get_coalesce(dev
, &coalesce
);
377 if (copy_to_user(useraddr
, &coalesce
, sizeof(coalesce
)))
382 static int ethtool_set_coalesce(struct net_device
*dev
, void __user
*useraddr
)
384 struct ethtool_coalesce coalesce
;
386 if (!dev
->ethtool_ops
->set_coalesce
)
389 if (copy_from_user(&coalesce
, useraddr
, sizeof(coalesce
)))
392 return dev
->ethtool_ops
->set_coalesce(dev
, &coalesce
);
395 static int ethtool_get_ringparam(struct net_device
*dev
, void __user
*useraddr
)
397 struct ethtool_ringparam ringparam
= { ETHTOOL_GRINGPARAM
};
399 if (!dev
->ethtool_ops
->get_ringparam
)
402 dev
->ethtool_ops
->get_ringparam(dev
, &ringparam
);
404 if (copy_to_user(useraddr
, &ringparam
, sizeof(ringparam
)))
409 static int ethtool_set_ringparam(struct net_device
*dev
, void __user
*useraddr
)
411 struct ethtool_ringparam ringparam
;
413 if (!dev
->ethtool_ops
->set_ringparam
)
416 if (copy_from_user(&ringparam
, useraddr
, sizeof(ringparam
)))
419 return dev
->ethtool_ops
->set_ringparam(dev
, &ringparam
);
422 static int ethtool_get_pauseparam(struct net_device
*dev
, void __user
*useraddr
)
424 struct ethtool_pauseparam pauseparam
= { ETHTOOL_GPAUSEPARAM
};
426 if (!dev
->ethtool_ops
->get_pauseparam
)
429 dev
->ethtool_ops
->get_pauseparam(dev
, &pauseparam
);
431 if (copy_to_user(useraddr
, &pauseparam
, sizeof(pauseparam
)))
436 static int ethtool_set_pauseparam(struct net_device
*dev
, void __user
*useraddr
)
438 struct ethtool_pauseparam pauseparam
;
440 if (!dev
->ethtool_ops
->get_pauseparam
)
443 if (copy_from_user(&pauseparam
, useraddr
, sizeof(pauseparam
)))
446 return dev
->ethtool_ops
->set_pauseparam(dev
, &pauseparam
);
449 static int ethtool_get_rx_csum(struct net_device
*dev
, char __user
*useraddr
)
451 struct ethtool_value edata
= { ETHTOOL_GRXCSUM
};
453 if (!dev
->ethtool_ops
->get_rx_csum
)
456 edata
.data
= dev
->ethtool_ops
->get_rx_csum(dev
);
458 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
463 static int ethtool_set_rx_csum(struct net_device
*dev
, char __user
*useraddr
)
465 struct ethtool_value edata
;
467 if (!dev
->ethtool_ops
->set_rx_csum
)
470 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
473 dev
->ethtool_ops
->set_rx_csum(dev
, edata
.data
);
477 static int ethtool_get_tx_csum(struct net_device
*dev
, char __user
*useraddr
)
479 struct ethtool_value edata
= { ETHTOOL_GTXCSUM
};
481 if (!dev
->ethtool_ops
->get_tx_csum
)
484 edata
.data
= dev
->ethtool_ops
->get_tx_csum(dev
);
486 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
491 static int __ethtool_set_sg(struct net_device
*dev
, u32 data
)
495 if (!data
&& dev
->ethtool_ops
->set_tso
) {
496 err
= dev
->ethtool_ops
->set_tso(dev
, 0);
501 if (!data
&& dev
->ethtool_ops
->set_ufo
) {
502 err
= dev
->ethtool_ops
->set_ufo(dev
, 0);
506 return dev
->ethtool_ops
->set_sg(dev
, data
);
509 static int ethtool_set_tx_csum(struct net_device
*dev
, char __user
*useraddr
)
511 struct ethtool_value edata
;
514 if (!dev
->ethtool_ops
->set_tx_csum
)
517 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
520 if (!edata
.data
&& dev
->ethtool_ops
->set_sg
) {
521 err
= __ethtool_set_sg(dev
, 0);
526 return dev
->ethtool_ops
->set_tx_csum(dev
, edata
.data
);
529 static int ethtool_get_sg(struct net_device
*dev
, char __user
*useraddr
)
531 struct ethtool_value edata
= { ETHTOOL_GSG
};
533 if (!dev
->ethtool_ops
->get_sg
)
536 edata
.data
= dev
->ethtool_ops
->get_sg(dev
);
538 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
543 static int ethtool_set_sg(struct net_device
*dev
, char __user
*useraddr
)
545 struct ethtool_value edata
;
547 if (!dev
->ethtool_ops
->set_sg
)
550 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
554 !(dev
->features
& (NETIF_F_IP_CSUM
|
559 return __ethtool_set_sg(dev
, edata
.data
);
562 static int ethtool_get_tso(struct net_device
*dev
, char __user
*useraddr
)
564 struct ethtool_value edata
= { ETHTOOL_GTSO
};
566 if (!dev
->ethtool_ops
->get_tso
)
569 edata
.data
= dev
->ethtool_ops
->get_tso(dev
);
571 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
576 static int ethtool_set_tso(struct net_device
*dev
, char __user
*useraddr
)
578 struct ethtool_value edata
;
580 if (!dev
->ethtool_ops
->set_tso
)
583 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
586 if (edata
.data
&& !(dev
->features
& NETIF_F_SG
))
589 return dev
->ethtool_ops
->set_tso(dev
, edata
.data
);
592 static int ethtool_get_ufo(struct net_device
*dev
, char __user
*useraddr
)
594 struct ethtool_value edata
= { ETHTOOL_GTSO
};
596 if (!dev
->ethtool_ops
->get_ufo
)
598 edata
.data
= dev
->ethtool_ops
->get_ufo(dev
);
599 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
603 static int ethtool_set_ufo(struct net_device
*dev
, char __user
*useraddr
)
605 struct ethtool_value edata
;
607 if (!dev
->ethtool_ops
->set_ufo
)
609 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
611 if (edata
.data
&& !(dev
->features
& NETIF_F_SG
))
613 if (edata
.data
&& !(dev
->features
& NETIF_F_HW_CSUM
))
615 return dev
->ethtool_ops
->set_ufo(dev
, edata
.data
);
618 static int ethtool_self_test(struct net_device
*dev
, char __user
*useraddr
)
620 struct ethtool_test test
;
621 struct ethtool_ops
*ops
= dev
->ethtool_ops
;
625 if (!ops
->self_test
|| !ops
->self_test_count
)
628 if (copy_from_user(&test
, useraddr
, sizeof(test
)))
631 test
.len
= ops
->self_test_count(dev
);
632 data
= kmalloc(test
.len
* sizeof(u64
), GFP_USER
);
636 ops
->self_test(dev
, &test
, data
);
639 if (copy_to_user(useraddr
, &test
, sizeof(test
)))
641 useraddr
+= sizeof(test
);
642 if (copy_to_user(useraddr
, data
, test
.len
* sizeof(u64
)))
651 static int ethtool_get_strings(struct net_device
*dev
, void __user
*useraddr
)
653 struct ethtool_gstrings gstrings
;
654 struct ethtool_ops
*ops
= dev
->ethtool_ops
;
658 if (!ops
->get_strings
)
661 if (copy_from_user(&gstrings
, useraddr
, sizeof(gstrings
)))
664 switch (gstrings
.string_set
) {
666 if (!ops
->self_test_count
)
668 gstrings
.len
= ops
->self_test_count(dev
);
671 if (!ops
->get_stats_count
)
673 gstrings
.len
= ops
->get_stats_count(dev
);
679 data
= kmalloc(gstrings
.len
* ETH_GSTRING_LEN
, GFP_USER
);
683 ops
->get_strings(dev
, gstrings
.string_set
, data
);
686 if (copy_to_user(useraddr
, &gstrings
, sizeof(gstrings
)))
688 useraddr
+= sizeof(gstrings
);
689 if (copy_to_user(useraddr
, data
, gstrings
.len
* ETH_GSTRING_LEN
))
698 static int ethtool_phys_id(struct net_device
*dev
, void __user
*useraddr
)
700 struct ethtool_value id
;
702 if (!dev
->ethtool_ops
->phys_id
)
705 if (copy_from_user(&id
, useraddr
, sizeof(id
)))
708 return dev
->ethtool_ops
->phys_id(dev
, id
.data
);
711 static int ethtool_get_stats(struct net_device
*dev
, void __user
*useraddr
)
713 struct ethtool_stats stats
;
714 struct ethtool_ops
*ops
= dev
->ethtool_ops
;
718 if (!ops
->get_ethtool_stats
|| !ops
->get_stats_count
)
721 if (copy_from_user(&stats
, useraddr
, sizeof(stats
)))
724 stats
.n_stats
= ops
->get_stats_count(dev
);
725 data
= kmalloc(stats
.n_stats
* sizeof(u64
), GFP_USER
);
729 ops
->get_ethtool_stats(dev
, &stats
, data
);
732 if (copy_to_user(useraddr
, &stats
, sizeof(stats
)))
734 useraddr
+= sizeof(stats
);
735 if (copy_to_user(useraddr
, data
, stats
.n_stats
* sizeof(u64
)))
744 static int ethtool_get_perm_addr(struct net_device
*dev
, void __user
*useraddr
)
746 struct ethtool_perm_addr epaddr
;
750 if (!dev
->ethtool_ops
->get_perm_addr
)
753 if (copy_from_user(&epaddr
,useraddr
,sizeof(epaddr
)))
756 data
= kmalloc(epaddr
.size
, GFP_USER
);
760 ret
= dev
->ethtool_ops
->get_perm_addr(dev
,&epaddr
,data
);
765 if (copy_to_user(useraddr
, &epaddr
, sizeof(epaddr
)))
767 useraddr
+= sizeof(epaddr
);
768 if (copy_to_user(useraddr
, data
, epaddr
.size
))
777 /* The main entry point in this file. Called from net/core/dev.c */
779 int dev_ethtool(struct ifreq
*ifr
)
781 struct net_device
*dev
= __dev_get_by_name(ifr
->ifr_name
);
782 void __user
*useraddr
= ifr
->ifr_data
;
785 unsigned long old_features
;
788 * XXX: This can be pushed down into the ethtool_* handlers that
789 * need it. Keep existing behaviour for the moment.
791 if (!capable(CAP_NET_ADMIN
))
794 if (!dev
|| !netif_device_present(dev
))
797 if (!dev
->ethtool_ops
)
800 if (copy_from_user(ðcmd
, useraddr
, sizeof (ethcmd
)))
803 if(dev
->ethtool_ops
->begin
)
804 if ((rc
= dev
->ethtool_ops
->begin(dev
)) < 0)
807 old_features
= dev
->features
;
811 rc
= ethtool_get_settings(dev
, useraddr
);
814 rc
= ethtool_set_settings(dev
, useraddr
);
816 case ETHTOOL_GDRVINFO
:
817 rc
= ethtool_get_drvinfo(dev
, useraddr
);
820 rc
= ethtool_get_regs(dev
, useraddr
);
823 rc
= ethtool_get_wol(dev
, useraddr
);
826 rc
= ethtool_set_wol(dev
, useraddr
);
828 case ETHTOOL_GMSGLVL
:
829 rc
= ethtool_get_msglevel(dev
, useraddr
);
831 case ETHTOOL_SMSGLVL
:
832 rc
= ethtool_set_msglevel(dev
, useraddr
);
834 case ETHTOOL_NWAY_RST
:
835 rc
= ethtool_nway_reset(dev
);
838 rc
= ethtool_get_link(dev
, useraddr
);
840 case ETHTOOL_GEEPROM
:
841 rc
= ethtool_get_eeprom(dev
, useraddr
);
843 case ETHTOOL_SEEPROM
:
844 rc
= ethtool_set_eeprom(dev
, useraddr
);
846 case ETHTOOL_GCOALESCE
:
847 rc
= ethtool_get_coalesce(dev
, useraddr
);
849 case ETHTOOL_SCOALESCE
:
850 rc
= ethtool_set_coalesce(dev
, useraddr
);
852 case ETHTOOL_GRINGPARAM
:
853 rc
= ethtool_get_ringparam(dev
, useraddr
);
855 case ETHTOOL_SRINGPARAM
:
856 rc
= ethtool_set_ringparam(dev
, useraddr
);
858 case ETHTOOL_GPAUSEPARAM
:
859 rc
= ethtool_get_pauseparam(dev
, useraddr
);
861 case ETHTOOL_SPAUSEPARAM
:
862 rc
= ethtool_set_pauseparam(dev
, useraddr
);
864 case ETHTOOL_GRXCSUM
:
865 rc
= ethtool_get_rx_csum(dev
, useraddr
);
867 case ETHTOOL_SRXCSUM
:
868 rc
= ethtool_set_rx_csum(dev
, useraddr
);
870 case ETHTOOL_GTXCSUM
:
871 rc
= ethtool_get_tx_csum(dev
, useraddr
);
873 case ETHTOOL_STXCSUM
:
874 rc
= ethtool_set_tx_csum(dev
, useraddr
);
877 rc
= ethtool_get_sg(dev
, useraddr
);
880 rc
= ethtool_set_sg(dev
, useraddr
);
883 rc
= ethtool_get_tso(dev
, useraddr
);
886 rc
= ethtool_set_tso(dev
, useraddr
);
889 rc
= ethtool_self_test(dev
, useraddr
);
891 case ETHTOOL_GSTRINGS
:
892 rc
= ethtool_get_strings(dev
, useraddr
);
894 case ETHTOOL_PHYS_ID
:
895 rc
= ethtool_phys_id(dev
, useraddr
);
898 rc
= ethtool_get_stats(dev
, useraddr
);
900 case ETHTOOL_GPERMADDR
:
901 rc
= ethtool_get_perm_addr(dev
, useraddr
);
904 rc
= ethtool_get_ufo(dev
, useraddr
);
907 rc
= ethtool_set_ufo(dev
, useraddr
);
913 if(dev
->ethtool_ops
->complete
)
914 dev
->ethtool_ops
->complete(dev
);
916 if (old_features
!= dev
->features
)
917 netdev_features_change(dev
);
923 return dev
->do_ioctl(dev
, ifr
, SIOCETHTOOL
);
927 EXPORT_SYMBOL(dev_ethtool
);
928 EXPORT_SYMBOL(ethtool_op_get_link
);
929 EXPORT_SYMBOL_GPL(ethtool_op_get_perm_addr
);
930 EXPORT_SYMBOL(ethtool_op_get_sg
);
931 EXPORT_SYMBOL(ethtool_op_get_tso
);
932 EXPORT_SYMBOL(ethtool_op_get_tx_csum
);
933 EXPORT_SYMBOL(ethtool_op_set_sg
);
934 EXPORT_SYMBOL(ethtool_op_set_tso
);
935 EXPORT_SYMBOL(ethtool_op_set_tx_csum
);
936 EXPORT_SYMBOL(ethtool_op_set_tx_hw_csum
);
937 EXPORT_SYMBOL(ethtool_op_set_ufo
);
938 EXPORT_SYMBOL(ethtool_op_get_ufo
);