3 * linux/drivers/s390/net/qeth_sys.c ($Revision: 1.51 $)
5 * Linux on zSeries OSA Express and HiperSockets support
6 * This file contains code related to sysfs.
8 * Copyright 2000,2003 IBM Corporation
10 * Author(s): Thomas Spatzier <tspat@de.ibm.com>
11 * Frank Pavlic <pavlic@de.ibm.com>
14 #include <linux/list.h>
15 #include <linux/rwsem.h>
17 #include <asm/ebcdic.h>
23 const char *VERSION_QETH_SYS_C
= "$Revision: 1.51 $";
25 /*****************************************************************************/
27 /* /sys-fs stuff UNDER DEVELOPMENT !!! */
29 /*****************************************************************************/
33 qeth_dev_state_show(struct device
*dev
, char *buf
)
35 struct qeth_card
*card
= dev
->driver_data
;
39 switch (card
->state
) {
41 return sprintf(buf
, "DOWN\n");
42 case CARD_STATE_HARDSETUP
:
43 return sprintf(buf
, "HARDSETUP\n");
44 case CARD_STATE_SOFTSETUP
:
45 return sprintf(buf
, "SOFTSETUP\n");
48 return sprintf(buf
, "UP (LAN ONLINE)\n");
50 return sprintf(buf
, "UP (LAN OFFLINE)\n");
51 case CARD_STATE_RECOVER
:
52 return sprintf(buf
, "RECOVER\n");
54 return sprintf(buf
, "UNKNOWN\n");
58 static DEVICE_ATTR(state
, 0444, qeth_dev_state_show
, NULL
);
61 qeth_dev_chpid_show(struct device
*dev
, char *buf
)
63 struct qeth_card
*card
= dev
->driver_data
;
67 return sprintf(buf
, "%02X\n", card
->info
.chpid
);
70 static DEVICE_ATTR(chpid
, 0444, qeth_dev_chpid_show
, NULL
);
73 qeth_dev_if_name_show(struct device
*dev
, char *buf
)
75 struct qeth_card
*card
= dev
->driver_data
;
78 return sprintf(buf
, "%s\n", QETH_CARD_IFNAME(card
));
81 static DEVICE_ATTR(if_name
, 0444, qeth_dev_if_name_show
, NULL
);
84 qeth_dev_card_type_show(struct device
*dev
, char *buf
)
86 struct qeth_card
*card
= dev
->driver_data
;
90 return sprintf(buf
, "%s\n", qeth_get_cardname_short(card
));
93 static DEVICE_ATTR(card_type
, 0444, qeth_dev_card_type_show
, NULL
);
96 qeth_dev_portno_show(struct device
*dev
, char *buf
)
98 struct qeth_card
*card
= dev
->driver_data
;
102 return sprintf(buf
, "%i\n", card
->info
.portno
);
106 qeth_dev_portno_store(struct device
*dev
, const char *buf
, size_t count
)
108 struct qeth_card
*card
= dev
->driver_data
;
115 if ((card
->state
!= CARD_STATE_DOWN
) &&
116 (card
->state
!= CARD_STATE_RECOVER
))
119 portno
= simple_strtoul(buf
, &tmp
, 16);
120 if ((portno
< 0) || (portno
> MAX_PORTNO
)){
121 PRINT_WARN("portno 0x%X is out of range\n", portno
);
125 card
->info
.portno
= portno
;
129 static DEVICE_ATTR(portno
, 0644, qeth_dev_portno_show
, qeth_dev_portno_store
);
132 qeth_dev_portname_show(struct device
*dev
, char *buf
)
134 struct qeth_card
*card
= dev
->driver_data
;
135 char portname
[9] = {0, };
140 if (card
->info
.portname_required
) {
141 memcpy(portname
, card
->info
.portname
+ 1, 8);
143 return sprintf(buf
, "%s\n", portname
);
145 return sprintf(buf
, "no portname required\n");
149 qeth_dev_portname_store(struct device
*dev
, const char *buf
, size_t count
)
151 struct qeth_card
*card
= dev
->driver_data
;
158 if ((card
->state
!= CARD_STATE_DOWN
) &&
159 (card
->state
!= CARD_STATE_RECOVER
))
162 tmp
= strsep((char **) &buf
, "\n");
163 if ((strlen(tmp
) > 8) || (strlen(tmp
) < 2))
166 card
->info
.portname
[0] = strlen(tmp
);
167 /* for beauty reasons */
168 for (i
= 1; i
< 9; i
++)
169 card
->info
.portname
[i
] = ' ';
170 strcpy(card
->info
.portname
+ 1, tmp
);
171 ASCEBC(card
->info
.portname
+ 1, 8);
176 static DEVICE_ATTR(portname
, 0644, qeth_dev_portname_show
,
177 qeth_dev_portname_store
);
180 qeth_dev_checksum_show(struct device
*dev
, char *buf
)
182 struct qeth_card
*card
= dev
->driver_data
;
187 return sprintf(buf
, "%s checksumming\n", qeth_get_checksum_str(card
));
191 qeth_dev_checksum_store(struct device
*dev
, const char *buf
, size_t count
)
193 struct qeth_card
*card
= dev
->driver_data
;
199 if ((card
->state
!= CARD_STATE_DOWN
) &&
200 (card
->state
!= CARD_STATE_RECOVER
))
203 tmp
= strsep((char **) &buf
, "\n");
204 if (!strcmp(tmp
, "sw_checksumming"))
205 card
->options
.checksum_type
= SW_CHECKSUMMING
;
206 else if (!strcmp(tmp
, "hw_checksumming"))
207 card
->options
.checksum_type
= HW_CHECKSUMMING
;
208 else if (!strcmp(tmp
, "no_checksumming"))
209 card
->options
.checksum_type
= NO_CHECKSUMMING
;
211 PRINT_WARN("Unknown checksumming type '%s'\n", tmp
);
217 static DEVICE_ATTR(checksumming
, 0644, qeth_dev_checksum_show
,
218 qeth_dev_checksum_store
);
221 qeth_dev_prioqing_show(struct device
*dev
, char *buf
)
223 struct qeth_card
*card
= dev
->driver_data
;
228 switch (card
->qdio
.do_prio_queueing
) {
229 case QETH_PRIO_Q_ING_PREC
:
230 return sprintf(buf
, "%s\n", "by precedence");
231 case QETH_PRIO_Q_ING_TOS
:
232 return sprintf(buf
, "%s\n", "by type of service");
234 return sprintf(buf
, "always queue %i\n",
235 card
->qdio
.default_out_queue
);
240 qeth_dev_prioqing_store(struct device
*dev
, const char *buf
, size_t count
)
242 struct qeth_card
*card
= dev
->driver_data
;
248 if ((card
->state
!= CARD_STATE_DOWN
) &&
249 (card
->state
!= CARD_STATE_RECOVER
))
252 /* check if 1920 devices are supported ,
253 * if though we have to permit priority queueing
255 if (card
->qdio
.no_out_queues
== 1) {
256 PRINT_WARN("Priority queueing disabled due "
257 "to hardware limitations!\n");
258 card
->qdio
.do_prio_queueing
= QETH_PRIOQ_DEFAULT
;
262 tmp
= strsep((char **) &buf
, "\n");
263 if (!strcmp(tmp
, "prio_queueing_prec"))
264 card
->qdio
.do_prio_queueing
= QETH_PRIO_Q_ING_PREC
;
265 else if (!strcmp(tmp
, "prio_queueing_tos"))
266 card
->qdio
.do_prio_queueing
= QETH_PRIO_Q_ING_TOS
;
267 else if (!strcmp(tmp
, "no_prio_queueing:0")) {
268 card
->qdio
.do_prio_queueing
= QETH_NO_PRIO_QUEUEING
;
269 card
->qdio
.default_out_queue
= 0;
270 } else if (!strcmp(tmp
, "no_prio_queueing:1")) {
271 card
->qdio
.do_prio_queueing
= QETH_NO_PRIO_QUEUEING
;
272 card
->qdio
.default_out_queue
= 1;
273 } else if (!strcmp(tmp
, "no_prio_queueing:2")) {
274 card
->qdio
.do_prio_queueing
= QETH_NO_PRIO_QUEUEING
;
275 card
->qdio
.default_out_queue
= 2;
276 } else if (!strcmp(tmp
, "no_prio_queueing:3")) {
277 card
->qdio
.do_prio_queueing
= QETH_NO_PRIO_QUEUEING
;
278 card
->qdio
.default_out_queue
= 3;
279 } else if (!strcmp(tmp
, "no_prio_queueing")) {
280 card
->qdio
.do_prio_queueing
= QETH_NO_PRIO_QUEUEING
;
281 card
->qdio
.default_out_queue
= QETH_DEFAULT_QUEUE
;
283 PRINT_WARN("Unknown queueing type '%s'\n", tmp
);
289 static DEVICE_ATTR(priority_queueing
, 0644, qeth_dev_prioqing_show
,
290 qeth_dev_prioqing_store
);
293 qeth_dev_bufcnt_show(struct device
*dev
, char *buf
)
295 struct qeth_card
*card
= dev
->driver_data
;
300 return sprintf(buf
, "%i\n", card
->qdio
.in_buf_pool
.buf_count
);
304 qeth_dev_bufcnt_store(struct device
*dev
, const char *buf
, size_t count
)
306 struct qeth_card
*card
= dev
->driver_data
;
314 if ((card
->state
!= CARD_STATE_DOWN
) &&
315 (card
->state
!= CARD_STATE_RECOVER
))
318 old_cnt
= card
->qdio
.in_buf_pool
.buf_count
;
319 cnt
= simple_strtoul(buf
, &tmp
, 10);
320 cnt
= (cnt
< QETH_IN_BUF_COUNT_MIN
) ? QETH_IN_BUF_COUNT_MIN
:
321 ((cnt
> QETH_IN_BUF_COUNT_MAX
) ? QETH_IN_BUF_COUNT_MAX
: cnt
);
322 if (old_cnt
!= cnt
) {
323 if ((rc
= qeth_realloc_buffer_pool(card
, cnt
)))
324 PRINT_WARN("Error (%d) while setting "
325 "buffer count.\n", rc
);
330 static DEVICE_ATTR(buffer_count
, 0644, qeth_dev_bufcnt_show
,
331 qeth_dev_bufcnt_store
);
333 static inline ssize_t
334 qeth_dev_route_show(struct qeth_card
*card
, struct qeth_routing_info
*route
,
337 switch (route
->type
) {
339 return sprintf(buf
, "%s\n", "primary router");
340 case SECONDARY_ROUTER
:
341 return sprintf(buf
, "%s\n", "secondary router");
342 case MULTICAST_ROUTER
:
343 if (card
->info
.broadcast_capable
== QETH_BROADCAST_WITHOUT_ECHO
)
344 return sprintf(buf
, "%s\n", "multicast router+");
346 return sprintf(buf
, "%s\n", "multicast router");
347 case PRIMARY_CONNECTOR
:
348 if (card
->info
.broadcast_capable
== QETH_BROADCAST_WITHOUT_ECHO
)
349 return sprintf(buf
, "%s\n", "primary connector+");
351 return sprintf(buf
, "%s\n", "primary connector");
352 case SECONDARY_CONNECTOR
:
353 if (card
->info
.broadcast_capable
== QETH_BROADCAST_WITHOUT_ECHO
)
354 return sprintf(buf
, "%s\n", "secondary connector+");
356 return sprintf(buf
, "%s\n", "secondary connector");
358 return sprintf(buf
, "%s\n", "no");
363 qeth_dev_route4_show(struct device
*dev
, char *buf
)
365 struct qeth_card
*card
= dev
->driver_data
;
370 return qeth_dev_route_show(card
, &card
->options
.route4
, buf
);
373 static inline ssize_t
374 qeth_dev_route_store(struct qeth_card
*card
, struct qeth_routing_info
*route
,
375 enum qeth_prot_versions prot
, const char *buf
, size_t count
)
377 enum qeth_routing_types old_route_type
= route
->type
;
381 tmp
= strsep((char **) &buf
, "\n");
383 if (!strcmp(tmp
, "no_router")){
384 route
->type
= NO_ROUTER
;
385 } else if (!strcmp(tmp
, "primary_connector")) {
386 route
->type
= PRIMARY_CONNECTOR
;
387 } else if (!strcmp(tmp
, "secondary_connector")) {
388 route
->type
= SECONDARY_CONNECTOR
;
389 } else if (!strcmp(tmp
, "multicast_router")) {
390 route
->type
= MULTICAST_ROUTER
;
391 } else if (!strcmp(tmp
, "primary_router")) {
392 route
->type
= PRIMARY_ROUTER
;
393 } else if (!strcmp(tmp
, "secondary_router")) {
394 route
->type
= SECONDARY_ROUTER
;
395 } else if (!strcmp(tmp
, "multicast_router")) {
396 route
->type
= MULTICAST_ROUTER
;
398 PRINT_WARN("Invalid routing type '%s'.\n", tmp
);
401 if (((card
->state
== CARD_STATE_SOFTSETUP
) ||
402 (card
->state
== CARD_STATE_UP
)) &&
403 (old_route_type
!= route
->type
)){
404 if (prot
== QETH_PROT_IPV4
)
405 rc
= qeth_setrouting_v4(card
);
406 else if (prot
== QETH_PROT_IPV6
)
407 rc
= qeth_setrouting_v6(card
);
413 qeth_dev_route4_store(struct device
*dev
, const char *buf
, size_t count
)
415 struct qeth_card
*card
= dev
->driver_data
;
420 return qeth_dev_route_store(card
, &card
->options
.route4
,
421 QETH_PROT_IPV4
, buf
, count
);
424 static DEVICE_ATTR(route4
, 0644, qeth_dev_route4_show
, qeth_dev_route4_store
);
426 #ifdef CONFIG_QETH_IPV6
428 qeth_dev_route6_show(struct device
*dev
, char *buf
)
430 struct qeth_card
*card
= dev
->driver_data
;
435 if (!qeth_is_supported(card
, IPA_IPV6
))
436 return sprintf(buf
, "%s\n", "n/a");
438 return qeth_dev_route_show(card
, &card
->options
.route6
, buf
);
442 qeth_dev_route6_store(struct device
*dev
, const char *buf
, size_t count
)
444 struct qeth_card
*card
= dev
->driver_data
;
449 if (!qeth_is_supported(card
, IPA_IPV6
)){
450 PRINT_WARN("IPv6 not supported for interface %s.\n"
451 "Routing status no changed.\n",
452 QETH_CARD_IFNAME(card
));
456 return qeth_dev_route_store(card
, &card
->options
.route6
,
457 QETH_PROT_IPV6
, buf
, count
);
460 static DEVICE_ATTR(route6
, 0644, qeth_dev_route6_show
, qeth_dev_route6_store
);
464 qeth_dev_add_hhlen_show(struct device
*dev
, char *buf
)
466 struct qeth_card
*card
= dev
->driver_data
;
471 return sprintf(buf
, "%i\n", card
->options
.add_hhlen
);
475 qeth_dev_add_hhlen_store(struct device
*dev
, const char *buf
, size_t count
)
477 struct qeth_card
*card
= dev
->driver_data
;
484 if ((card
->state
!= CARD_STATE_DOWN
) &&
485 (card
->state
!= CARD_STATE_RECOVER
))
488 i
= simple_strtoul(buf
, &tmp
, 10);
489 if ((i
< 0) || (i
> MAX_ADD_HHLEN
)) {
490 PRINT_WARN("add_hhlen out of range\n");
493 card
->options
.add_hhlen
= i
;
498 static DEVICE_ATTR(add_hhlen
, 0644, qeth_dev_add_hhlen_show
,
499 qeth_dev_add_hhlen_store
);
502 qeth_dev_fake_ll_show(struct device
*dev
, char *buf
)
504 struct qeth_card
*card
= dev
->driver_data
;
509 return sprintf(buf
, "%i\n", card
->options
.fake_ll
? 1:0);
513 qeth_dev_fake_ll_store(struct device
*dev
, const char *buf
, size_t count
)
515 struct qeth_card
*card
= dev
->driver_data
;
522 if ((card
->state
!= CARD_STATE_DOWN
) &&
523 (card
->state
!= CARD_STATE_RECOVER
))
526 i
= simple_strtoul(buf
, &tmp
, 16);
527 if ((i
!= 0) && (i
!= 1)) {
528 PRINT_WARN("fake_ll: write 0 or 1 to this file!\n");
531 card
->options
.fake_ll
= i
;
535 static DEVICE_ATTR(fake_ll
, 0644, qeth_dev_fake_ll_show
,
536 qeth_dev_fake_ll_store
);
539 qeth_dev_fake_broadcast_show(struct device
*dev
, char *buf
)
541 struct qeth_card
*card
= dev
->driver_data
;
546 return sprintf(buf
, "%i\n", card
->options
.fake_broadcast
? 1:0);
550 qeth_dev_fake_broadcast_store(struct device
*dev
, const char *buf
, size_t count
)
552 struct qeth_card
*card
= dev
->driver_data
;
559 if ((card
->state
!= CARD_STATE_DOWN
) &&
560 (card
->state
!= CARD_STATE_RECOVER
))
563 i
= simple_strtoul(buf
, &tmp
, 16);
564 if ((i
== 0) || (i
== 1))
565 card
->options
.fake_broadcast
= i
;
567 PRINT_WARN("fake_broadcast: write 0 or 1 to this file!\n");
573 static DEVICE_ATTR(fake_broadcast
, 0644, qeth_dev_fake_broadcast_show
,
574 qeth_dev_fake_broadcast_store
);
577 qeth_dev_recover_store(struct device
*dev
, const char *buf
, size_t count
)
579 struct qeth_card
*card
= dev
->driver_data
;
586 if (card
->state
!= CARD_STATE_UP
)
589 i
= simple_strtoul(buf
, &tmp
, 16);
591 qeth_schedule_recovery(card
);
596 static DEVICE_ATTR(recover
, 0200, NULL
, qeth_dev_recover_store
);
599 qeth_dev_broadcast_mode_show(struct device
*dev
, char *buf
)
601 struct qeth_card
*card
= dev
->driver_data
;
606 if (!((card
->info
.link_type
== QETH_LINK_TYPE_HSTR
) ||
607 (card
->info
.link_type
== QETH_LINK_TYPE_LANE_TR
)))
608 return sprintf(buf
, "n/a\n");
610 return sprintf(buf
, "%s\n", (card
->options
.broadcast_mode
==
611 QETH_TR_BROADCAST_ALLRINGS
)?
612 "all rings":"local");
616 qeth_dev_broadcast_mode_store(struct device
*dev
, const char *buf
, size_t count
)
618 struct qeth_card
*card
= dev
->driver_data
;
624 if ((card
->state
!= CARD_STATE_DOWN
) &&
625 (card
->state
!= CARD_STATE_RECOVER
))
628 if (!((card
->info
.link_type
== QETH_LINK_TYPE_HSTR
) ||
629 (card
->info
.link_type
== QETH_LINK_TYPE_LANE_TR
))){
630 PRINT_WARN("Device is not a tokenring device!\n");
634 tmp
= strsep((char **) &buf
, "\n");
636 if (!strcmp(tmp
, "local")){
637 card
->options
.broadcast_mode
= QETH_TR_BROADCAST_LOCAL
;
639 } else if (!strcmp(tmp
, "all_rings")) {
640 card
->options
.broadcast_mode
= QETH_TR_BROADCAST_ALLRINGS
;
643 PRINT_WARN("broadcast_mode: invalid mode %s!\n",
650 static DEVICE_ATTR(broadcast_mode
, 0644, qeth_dev_broadcast_mode_show
,
651 qeth_dev_broadcast_mode_store
);
654 qeth_dev_canonical_macaddr_show(struct device
*dev
, char *buf
)
656 struct qeth_card
*card
= dev
->driver_data
;
661 if (!((card
->info
.link_type
== QETH_LINK_TYPE_HSTR
) ||
662 (card
->info
.link_type
== QETH_LINK_TYPE_LANE_TR
)))
663 return sprintf(buf
, "n/a\n");
665 return sprintf(buf
, "%i\n", (card
->options
.macaddr_mode
==
666 QETH_TR_MACADDR_CANONICAL
)? 1:0);
670 qeth_dev_canonical_macaddr_store(struct device
*dev
, const char *buf
,
673 struct qeth_card
*card
= dev
->driver_data
;
680 if ((card
->state
!= CARD_STATE_DOWN
) &&
681 (card
->state
!= CARD_STATE_RECOVER
))
684 if (!((card
->info
.link_type
== QETH_LINK_TYPE_HSTR
) ||
685 (card
->info
.link_type
== QETH_LINK_TYPE_LANE_TR
))){
686 PRINT_WARN("Device is not a tokenring device!\n");
690 i
= simple_strtoul(buf
, &tmp
, 16);
691 if ((i
== 0) || (i
== 1))
692 card
->options
.macaddr_mode
= i
?
693 QETH_TR_MACADDR_CANONICAL
:
694 QETH_TR_MACADDR_NONCANONICAL
;
696 PRINT_WARN("canonical_macaddr: write 0 or 1 to this file!\n");
702 static DEVICE_ATTR(canonical_macaddr
, 0644, qeth_dev_canonical_macaddr_show
,
703 qeth_dev_canonical_macaddr_store
);
706 qeth_dev_layer2_show(struct device
*dev
, char *buf
)
708 struct qeth_card
*card
= dev
->driver_data
;
713 return sprintf(buf
, "%i\n", card
->options
.layer2
? 1:0);
717 qeth_dev_layer2_store(struct device
*dev
, const char *buf
, size_t count
)
719 struct qeth_card
*card
= dev
->driver_data
;
726 if (((card
->state
!= CARD_STATE_DOWN
) &&
727 (card
->state
!= CARD_STATE_RECOVER
)) ||
728 (card
->info
.type
!= QETH_CARD_TYPE_OSAE
))
731 i
= simple_strtoul(buf
, &tmp
, 16);
732 if ((i
== 0) || (i
== 1))
733 card
->options
.layer2
= i
;
735 PRINT_WARN("layer2: write 0 or 1 to this file!\n");
741 static DEVICE_ATTR(layer2
, 0644, qeth_dev_layer2_show
,
742 qeth_dev_layer2_store
);
745 qeth_dev_large_send_show(struct device
*dev
, char *buf
)
747 struct qeth_card
*card
= dev
->driver_data
;
752 switch (card
->options
.large_send
) {
753 case QETH_LARGE_SEND_NO
:
754 return sprintf(buf
, "%s\n", "no");
755 case QETH_LARGE_SEND_EDDP
:
756 return sprintf(buf
, "%s\n", "EDDP");
757 case QETH_LARGE_SEND_TSO
:
758 return sprintf(buf
, "%s\n", "TSO");
760 return sprintf(buf
, "%s\n", "N/A");
765 qeth_dev_large_send_store(struct device
*dev
, const char *buf
, size_t count
)
767 struct qeth_card
*card
= dev
->driver_data
;
768 enum qeth_large_send_types type
;
775 tmp
= strsep((char **) &buf
, "\n");
777 if (!strcmp(tmp
, "no")){
778 type
= QETH_LARGE_SEND_NO
;
779 } else if (!strcmp(tmp
, "EDDP")) {
780 type
= QETH_LARGE_SEND_EDDP
;
781 } else if (!strcmp(tmp
, "TSO")) {
782 type
= QETH_LARGE_SEND_TSO
;
784 PRINT_WARN("large_send: invalid mode %s!\n", tmp
);
787 if (card
->options
.large_send
== type
)
789 card
->options
.large_send
= type
;
790 if ((rc
= qeth_set_large_send(card
)))
796 static DEVICE_ATTR(large_send
, 0644, qeth_dev_large_send_show
,
797 qeth_dev_large_send_store
);
800 qeth_dev_blkt_show(char *buf
, struct qeth_card
*card
, int value
)
806 return sprintf(buf
, "%i\n", value
);
810 qeth_dev_blkt_store(struct qeth_card
*card
, const char *buf
, size_t count
,
811 int *value
, int max_value
)
819 if ((card
->state
!= CARD_STATE_DOWN
) &&
820 (card
->state
!= CARD_STATE_RECOVER
))
823 i
= simple_strtoul(buf
, &tmp
, 10);
824 if (i
<= max_value
) {
827 PRINT_WARN("blkt total time: write values between"
828 " 0 and %d to this file!\n", max_value
);
835 qeth_dev_blkt_total_show(struct device
*dev
, char *buf
)
837 struct qeth_card
*card
= dev
->driver_data
;
839 return qeth_dev_blkt_show(buf
, card
, card
->info
.blkt
.time_total
);
844 qeth_dev_blkt_total_store(struct device
*dev
, const char *buf
, size_t count
)
846 struct qeth_card
*card
= dev
->driver_data
;
848 return qeth_dev_blkt_store(card
, buf
, count
,
849 &card
->info
.blkt
.time_total
,1000);
854 static DEVICE_ATTR(total
, 0644, qeth_dev_blkt_total_show
,
855 qeth_dev_blkt_total_store
);
858 qeth_dev_blkt_inter_show(struct device
*dev
, char *buf
)
860 struct qeth_card
*card
= dev
->driver_data
;
862 return qeth_dev_blkt_show(buf
, card
, card
->info
.blkt
.inter_packet
);
867 qeth_dev_blkt_inter_store(struct device
*dev
, const char *buf
, size_t count
)
869 struct qeth_card
*card
= dev
->driver_data
;
871 return qeth_dev_blkt_store(card
, buf
, count
,
872 &card
->info
.blkt
.inter_packet
,100);
875 static DEVICE_ATTR(inter
, 0644, qeth_dev_blkt_inter_show
,
876 qeth_dev_blkt_inter_store
);
879 qeth_dev_blkt_inter_jumbo_show(struct device
*dev
, char *buf
)
881 struct qeth_card
*card
= dev
->driver_data
;
883 return qeth_dev_blkt_show(buf
, card
,
884 card
->info
.blkt
.inter_packet_jumbo
);
889 qeth_dev_blkt_inter_jumbo_store(struct device
*dev
, const char *buf
, size_t count
)
891 struct qeth_card
*card
= dev
->driver_data
;
893 return qeth_dev_blkt_store(card
, buf
, count
,
894 &card
->info
.blkt
.inter_packet_jumbo
,100);
897 static DEVICE_ATTR(inter_jumbo
, 0644, qeth_dev_blkt_inter_jumbo_show
,
898 qeth_dev_blkt_inter_jumbo_store
);
900 static struct device_attribute
* qeth_blkt_device_attrs
[] = {
903 &dev_attr_inter_jumbo
,
907 static struct attribute_group qeth_device_blkt_group
= {
909 .attrs
= (struct attribute
**)qeth_blkt_device_attrs
,
912 static struct device_attribute
* qeth_device_attrs
[] = {
919 &dev_attr_checksumming
,
920 &dev_attr_priority_queueing
,
921 &dev_attr_buffer_count
,
923 #ifdef CONFIG_QETH_IPV6
928 &dev_attr_fake_broadcast
,
930 &dev_attr_broadcast_mode
,
931 &dev_attr_canonical_macaddr
,
933 &dev_attr_large_send
,
937 static struct attribute_group qeth_device_attr_group
= {
938 .attrs
= (struct attribute
**)qeth_device_attrs
,
942 #define QETH_DEVICE_ATTR(_id,_name,_mode,_show,_store) \
943 struct device_attribute dev_attr_##_id = { \
944 .attr = {.name=__stringify(_name), .mode=_mode, .owner=THIS_MODULE },\
950 qeth_check_layer2(struct qeth_card
*card
)
952 if (card
->options
.layer2
)
959 qeth_dev_ipato_enable_show(struct device
*dev
, char *buf
)
961 struct qeth_card
*card
= dev
->driver_data
;
966 if (qeth_check_layer2(card
))
968 return sprintf(buf
, "%i\n", card
->ipato
.enabled
? 1:0);
972 qeth_dev_ipato_enable_store(struct device
*dev
, const char *buf
, size_t count
)
974 struct qeth_card
*card
= dev
->driver_data
;
980 if ((card
->state
!= CARD_STATE_DOWN
) &&
981 (card
->state
!= CARD_STATE_RECOVER
))
984 if (qeth_check_layer2(card
))
987 tmp
= strsep((char **) &buf
, "\n");
988 if (!strcmp(tmp
, "toggle")){
989 card
->ipato
.enabled
= (card
->ipato
.enabled
)? 0 : 1;
990 } else if (!strcmp(tmp
, "1")){
991 card
->ipato
.enabled
= 1;
992 } else if (!strcmp(tmp
, "0")){
993 card
->ipato
.enabled
= 0;
995 PRINT_WARN("ipato_enable: write 0, 1 or 'toggle' to "
1002 static QETH_DEVICE_ATTR(ipato_enable
, enable
, 0644,
1003 qeth_dev_ipato_enable_show
,
1004 qeth_dev_ipato_enable_store
);
1007 qeth_dev_ipato_invert4_show(struct device
*dev
, char *buf
)
1009 struct qeth_card
*card
= dev
->driver_data
;
1014 if (qeth_check_layer2(card
))
1017 return sprintf(buf
, "%i\n", card
->ipato
.invert4
? 1:0);
1021 qeth_dev_ipato_invert4_store(struct device
*dev
, const char *buf
, size_t count
)
1023 struct qeth_card
*card
= dev
->driver_data
;
1029 if (qeth_check_layer2(card
))
1032 tmp
= strsep((char **) &buf
, "\n");
1033 if (!strcmp(tmp
, "toggle")){
1034 card
->ipato
.invert4
= (card
->ipato
.invert4
)? 0 : 1;
1035 } else if (!strcmp(tmp
, "1")){
1036 card
->ipato
.invert4
= 1;
1037 } else if (!strcmp(tmp
, "0")){
1038 card
->ipato
.invert4
= 0;
1040 PRINT_WARN("ipato_invert4: write 0, 1 or 'toggle' to "
1047 static QETH_DEVICE_ATTR(ipato_invert4
, invert4
, 0644,
1048 qeth_dev_ipato_invert4_show
,
1049 qeth_dev_ipato_invert4_store
);
1051 static inline ssize_t
1052 qeth_dev_ipato_add_show(char *buf
, struct qeth_card
*card
,
1053 enum qeth_prot_versions proto
)
1055 struct qeth_ipato_entry
*ipatoe
;
1056 unsigned long flags
;
1058 int entry_len
; /* length of 1 entry string, differs between v4 and v6 */
1061 if (qeth_check_layer2(card
))
1064 entry_len
= (proto
== QETH_PROT_IPV4
)? 12 : 40;
1065 /* add strlen for "/<mask>\n" */
1066 entry_len
+= (proto
== QETH_PROT_IPV4
)? 5 : 6;
1067 spin_lock_irqsave(&card
->ip_lock
, flags
);
1068 list_for_each_entry(ipatoe
, &card
->ipato
.entries
, entry
){
1069 if (ipatoe
->proto
!= proto
)
1071 /* String must not be longer than PAGE_SIZE. So we check if
1072 * string length gets near PAGE_SIZE. Then we can savely display
1073 * the next IPv6 address (worst case, compared to IPv4) */
1074 if ((PAGE_SIZE
- i
) <= entry_len
)
1076 qeth_ipaddr_to_string(proto
, ipatoe
->addr
, addr_str
);
1077 i
+= snprintf(buf
+ i
, PAGE_SIZE
- i
,
1078 "%s/%i\n", addr_str
, ipatoe
->mask_bits
);
1080 spin_unlock_irqrestore(&card
->ip_lock
, flags
);
1081 i
+= snprintf(buf
+ i
, PAGE_SIZE
- i
, "\n");
1087 qeth_dev_ipato_add4_show(struct device
*dev
, char *buf
)
1089 struct qeth_card
*card
= dev
->driver_data
;
1094 return qeth_dev_ipato_add_show(buf
, card
, QETH_PROT_IPV4
);
1098 qeth_parse_ipatoe(const char* buf
, enum qeth_prot_versions proto
,
1099 u8
*addr
, int *mask_bits
)
1101 const char *start
, *end
;
1103 char buffer
[49] = {0, };
1106 /* get address string */
1107 end
= strchr(start
, '/');
1109 PRINT_WARN("Invalid format for ipato_addx/delx. "
1110 "Use <ip addr>/<mask bits>\n");
1113 strncpy(buffer
, start
, end
- start
);
1114 if (qeth_string_to_ipaddr(buffer
, proto
, addr
)){
1115 PRINT_WARN("Invalid IP address format!\n");
1119 *mask_bits
= simple_strtoul(start
, &tmp
, 10);
1124 static inline ssize_t
1125 qeth_dev_ipato_add_store(const char *buf
, size_t count
,
1126 struct qeth_card
*card
, enum qeth_prot_versions proto
)
1128 struct qeth_ipato_entry
*ipatoe
;
1133 if (qeth_check_layer2(card
))
1135 if ((rc
= qeth_parse_ipatoe(buf
, proto
, addr
, &mask_bits
)))
1138 if (!(ipatoe
= kmalloc(sizeof(struct qeth_ipato_entry
), GFP_KERNEL
))){
1139 PRINT_WARN("No memory to allocate ipato entry\n");
1142 memset(ipatoe
, 0, sizeof(struct qeth_ipato_entry
));
1143 ipatoe
->proto
= proto
;
1144 memcpy(ipatoe
->addr
, addr
, (proto
== QETH_PROT_IPV4
)? 4:16);
1145 ipatoe
->mask_bits
= mask_bits
;
1147 if ((rc
= qeth_add_ipato_entry(card
, ipatoe
))){
1156 qeth_dev_ipato_add4_store(struct device
*dev
, const char *buf
, size_t count
)
1158 struct qeth_card
*card
= dev
->driver_data
;
1163 return qeth_dev_ipato_add_store(buf
, count
, card
, QETH_PROT_IPV4
);
1166 static QETH_DEVICE_ATTR(ipato_add4
, add4
, 0644,
1167 qeth_dev_ipato_add4_show
,
1168 qeth_dev_ipato_add4_store
);
1170 static inline ssize_t
1171 qeth_dev_ipato_del_store(const char *buf
, size_t count
,
1172 struct qeth_card
*card
, enum qeth_prot_versions proto
)
1178 if (qeth_check_layer2(card
))
1180 if ((rc
= qeth_parse_ipatoe(buf
, proto
, addr
, &mask_bits
)))
1183 qeth_del_ipato_entry(card
, proto
, addr
, mask_bits
);
1189 qeth_dev_ipato_del4_store(struct device
*dev
, const char *buf
, size_t count
)
1191 struct qeth_card
*card
= dev
->driver_data
;
1196 return qeth_dev_ipato_del_store(buf
, count
, card
, QETH_PROT_IPV4
);
1199 static QETH_DEVICE_ATTR(ipato_del4
, del4
, 0200, NULL
,
1200 qeth_dev_ipato_del4_store
);
1202 #ifdef CONFIG_QETH_IPV6
1204 qeth_dev_ipato_invert6_show(struct device
*dev
, char *buf
)
1206 struct qeth_card
*card
= dev
->driver_data
;
1211 if (qeth_check_layer2(card
))
1214 return sprintf(buf
, "%i\n", card
->ipato
.invert6
? 1:0);
1218 qeth_dev_ipato_invert6_store(struct device
*dev
, const char *buf
, size_t count
)
1220 struct qeth_card
*card
= dev
->driver_data
;
1226 if (qeth_check_layer2(card
))
1229 tmp
= strsep((char **) &buf
, "\n");
1230 if (!strcmp(tmp
, "toggle")){
1231 card
->ipato
.invert6
= (card
->ipato
.invert6
)? 0 : 1;
1232 } else if (!strcmp(tmp
, "1")){
1233 card
->ipato
.invert6
= 1;
1234 } else if (!strcmp(tmp
, "0")){
1235 card
->ipato
.invert6
= 0;
1237 PRINT_WARN("ipato_invert6: write 0, 1 or 'toggle' to "
1244 static QETH_DEVICE_ATTR(ipato_invert6
, invert6
, 0644,
1245 qeth_dev_ipato_invert6_show
,
1246 qeth_dev_ipato_invert6_store
);
1250 qeth_dev_ipato_add6_show(struct device
*dev
, char *buf
)
1252 struct qeth_card
*card
= dev
->driver_data
;
1257 return qeth_dev_ipato_add_show(buf
, card
, QETH_PROT_IPV6
);
1261 qeth_dev_ipato_add6_store(struct device
*dev
, const char *buf
, size_t count
)
1263 struct qeth_card
*card
= dev
->driver_data
;
1268 return qeth_dev_ipato_add_store(buf
, count
, card
, QETH_PROT_IPV6
);
1271 static QETH_DEVICE_ATTR(ipato_add6
, add6
, 0644,
1272 qeth_dev_ipato_add6_show
,
1273 qeth_dev_ipato_add6_store
);
1276 qeth_dev_ipato_del6_store(struct device
*dev
, const char *buf
, size_t count
)
1278 struct qeth_card
*card
= dev
->driver_data
;
1283 return qeth_dev_ipato_del_store(buf
, count
, card
, QETH_PROT_IPV6
);
1286 static QETH_DEVICE_ATTR(ipato_del6
, del6
, 0200, NULL
,
1287 qeth_dev_ipato_del6_store
);
1288 #endif /* CONFIG_QETH_IPV6 */
1290 static struct device_attribute
* qeth_ipato_device_attrs
[] = {
1291 &dev_attr_ipato_enable
,
1292 &dev_attr_ipato_invert4
,
1293 &dev_attr_ipato_add4
,
1294 &dev_attr_ipato_del4
,
1295 #ifdef CONFIG_QETH_IPV6
1296 &dev_attr_ipato_invert6
,
1297 &dev_attr_ipato_add6
,
1298 &dev_attr_ipato_del6
,
1303 static struct attribute_group qeth_device_ipato_group
= {
1304 .name
= "ipa_takeover",
1305 .attrs
= (struct attribute
**)qeth_ipato_device_attrs
,
1308 static inline ssize_t
1309 qeth_dev_vipa_add_show(char *buf
, struct qeth_card
*card
,
1310 enum qeth_prot_versions proto
)
1312 struct qeth_ipaddr
*ipaddr
;
1314 int entry_len
; /* length of 1 entry string, differs between v4 and v6 */
1315 unsigned long flags
;
1318 if (qeth_check_layer2(card
))
1321 entry_len
= (proto
== QETH_PROT_IPV4
)? 12 : 40;
1322 entry_len
+= 2; /* \n + terminator */
1323 spin_lock_irqsave(&card
->ip_lock
, flags
);
1324 list_for_each_entry(ipaddr
, &card
->ip_list
, entry
){
1325 if (ipaddr
->proto
!= proto
)
1327 if (ipaddr
->type
!= QETH_IP_TYPE_VIPA
)
1329 /* String must not be longer than PAGE_SIZE. So we check if
1330 * string length gets near PAGE_SIZE. Then we can savely display
1331 * the next IPv6 address (worst case, compared to IPv4) */
1332 if ((PAGE_SIZE
- i
) <= entry_len
)
1334 qeth_ipaddr_to_string(proto
, (const u8
*)&ipaddr
->u
, addr_str
);
1335 i
+= snprintf(buf
+ i
, PAGE_SIZE
- i
, "%s\n", addr_str
);
1337 spin_unlock_irqrestore(&card
->ip_lock
, flags
);
1338 i
+= snprintf(buf
+ i
, PAGE_SIZE
- i
, "\n");
1344 qeth_dev_vipa_add4_show(struct device
*dev
, char *buf
)
1346 struct qeth_card
*card
= dev
->driver_data
;
1351 return qeth_dev_vipa_add_show(buf
, card
, QETH_PROT_IPV4
);
1355 qeth_parse_vipae(const char* buf
, enum qeth_prot_versions proto
,
1358 if (qeth_string_to_ipaddr(buf
, proto
, addr
)){
1359 PRINT_WARN("Invalid IP address format!\n");
1365 static inline ssize_t
1366 qeth_dev_vipa_add_store(const char *buf
, size_t count
,
1367 struct qeth_card
*card
, enum qeth_prot_versions proto
)
1369 u8 addr
[16] = {0, };
1372 if (qeth_check_layer2(card
))
1374 if ((rc
= qeth_parse_vipae(buf
, proto
, addr
)))
1377 if ((rc
= qeth_add_vipa(card
, proto
, addr
)))
1384 qeth_dev_vipa_add4_store(struct device
*dev
, const char *buf
, size_t count
)
1386 struct qeth_card
*card
= dev
->driver_data
;
1391 return qeth_dev_vipa_add_store(buf
, count
, card
, QETH_PROT_IPV4
);
1394 static QETH_DEVICE_ATTR(vipa_add4
, add4
, 0644,
1395 qeth_dev_vipa_add4_show
,
1396 qeth_dev_vipa_add4_store
);
1398 static inline ssize_t
1399 qeth_dev_vipa_del_store(const char *buf
, size_t count
,
1400 struct qeth_card
*card
, enum qeth_prot_versions proto
)
1405 if (qeth_check_layer2(card
))
1407 if ((rc
= qeth_parse_vipae(buf
, proto
, addr
)))
1410 qeth_del_vipa(card
, proto
, addr
);
1416 qeth_dev_vipa_del4_store(struct device
*dev
, const char *buf
, size_t count
)
1418 struct qeth_card
*card
= dev
->driver_data
;
1423 return qeth_dev_vipa_del_store(buf
, count
, card
, QETH_PROT_IPV4
);
1426 static QETH_DEVICE_ATTR(vipa_del4
, del4
, 0200, NULL
,
1427 qeth_dev_vipa_del4_store
);
1429 #ifdef CONFIG_QETH_IPV6
1431 qeth_dev_vipa_add6_show(struct device
*dev
, char *buf
)
1433 struct qeth_card
*card
= dev
->driver_data
;
1438 return qeth_dev_vipa_add_show(buf
, card
, QETH_PROT_IPV6
);
1442 qeth_dev_vipa_add6_store(struct device
*dev
, const char *buf
, size_t count
)
1444 struct qeth_card
*card
= dev
->driver_data
;
1449 return qeth_dev_vipa_add_store(buf
, count
, card
, QETH_PROT_IPV6
);
1452 static QETH_DEVICE_ATTR(vipa_add6
, add6
, 0644,
1453 qeth_dev_vipa_add6_show
,
1454 qeth_dev_vipa_add6_store
);
1457 qeth_dev_vipa_del6_store(struct device
*dev
, const char *buf
, size_t count
)
1459 struct qeth_card
*card
= dev
->driver_data
;
1464 if (qeth_check_layer2(card
))
1467 return qeth_dev_vipa_del_store(buf
, count
, card
, QETH_PROT_IPV6
);
1470 static QETH_DEVICE_ATTR(vipa_del6
, del6
, 0200, NULL
,
1471 qeth_dev_vipa_del6_store
);
1472 #endif /* CONFIG_QETH_IPV6 */
1474 static struct device_attribute
* qeth_vipa_device_attrs
[] = {
1475 &dev_attr_vipa_add4
,
1476 &dev_attr_vipa_del4
,
1477 #ifdef CONFIG_QETH_IPV6
1478 &dev_attr_vipa_add6
,
1479 &dev_attr_vipa_del6
,
1484 static struct attribute_group qeth_device_vipa_group
= {
1486 .attrs
= (struct attribute
**)qeth_vipa_device_attrs
,
1489 static inline ssize_t
1490 qeth_dev_rxip_add_show(char *buf
, struct qeth_card
*card
,
1491 enum qeth_prot_versions proto
)
1493 struct qeth_ipaddr
*ipaddr
;
1495 int entry_len
; /* length of 1 entry string, differs between v4 and v6 */
1496 unsigned long flags
;
1499 if (qeth_check_layer2(card
))
1502 entry_len
= (proto
== QETH_PROT_IPV4
)? 12 : 40;
1503 entry_len
+= 2; /* \n + terminator */
1504 spin_lock_irqsave(&card
->ip_lock
, flags
);
1505 list_for_each_entry(ipaddr
, &card
->ip_list
, entry
){
1506 if (ipaddr
->proto
!= proto
)
1508 if (ipaddr
->type
!= QETH_IP_TYPE_RXIP
)
1510 /* String must not be longer than PAGE_SIZE. So we check if
1511 * string length gets near PAGE_SIZE. Then we can savely display
1512 * the next IPv6 address (worst case, compared to IPv4) */
1513 if ((PAGE_SIZE
- i
) <= entry_len
)
1515 qeth_ipaddr_to_string(proto
, (const u8
*)&ipaddr
->u
, addr_str
);
1516 i
+= snprintf(buf
+ i
, PAGE_SIZE
- i
, "%s\n", addr_str
);
1518 spin_unlock_irqrestore(&card
->ip_lock
, flags
);
1519 i
+= snprintf(buf
+ i
, PAGE_SIZE
- i
, "\n");
1525 qeth_dev_rxip_add4_show(struct device
*dev
, char *buf
)
1527 struct qeth_card
*card
= dev
->driver_data
;
1532 return qeth_dev_rxip_add_show(buf
, card
, QETH_PROT_IPV4
);
1536 qeth_parse_rxipe(const char* buf
, enum qeth_prot_versions proto
,
1539 if (qeth_string_to_ipaddr(buf
, proto
, addr
)){
1540 PRINT_WARN("Invalid IP address format!\n");
1546 static inline ssize_t
1547 qeth_dev_rxip_add_store(const char *buf
, size_t count
,
1548 struct qeth_card
*card
, enum qeth_prot_versions proto
)
1550 u8 addr
[16] = {0, };
1553 if (qeth_check_layer2(card
))
1555 if ((rc
= qeth_parse_rxipe(buf
, proto
, addr
)))
1558 if ((rc
= qeth_add_rxip(card
, proto
, addr
)))
1565 qeth_dev_rxip_add4_store(struct device
*dev
, const char *buf
, size_t count
)
1567 struct qeth_card
*card
= dev
->driver_data
;
1572 return qeth_dev_rxip_add_store(buf
, count
, card
, QETH_PROT_IPV4
);
1575 static QETH_DEVICE_ATTR(rxip_add4
, add4
, 0644,
1576 qeth_dev_rxip_add4_show
,
1577 qeth_dev_rxip_add4_store
);
1579 static inline ssize_t
1580 qeth_dev_rxip_del_store(const char *buf
, size_t count
,
1581 struct qeth_card
*card
, enum qeth_prot_versions proto
)
1586 if (qeth_check_layer2(card
))
1588 if ((rc
= qeth_parse_rxipe(buf
, proto
, addr
)))
1591 qeth_del_rxip(card
, proto
, addr
);
1597 qeth_dev_rxip_del4_store(struct device
*dev
, const char *buf
, size_t count
)
1599 struct qeth_card
*card
= dev
->driver_data
;
1604 return qeth_dev_rxip_del_store(buf
, count
, card
, QETH_PROT_IPV4
);
1607 static QETH_DEVICE_ATTR(rxip_del4
, del4
, 0200, NULL
,
1608 qeth_dev_rxip_del4_store
);
1610 #ifdef CONFIG_QETH_IPV6
1612 qeth_dev_rxip_add6_show(struct device
*dev
, char *buf
)
1614 struct qeth_card
*card
= dev
->driver_data
;
1619 return qeth_dev_rxip_add_show(buf
, card
, QETH_PROT_IPV6
);
1623 qeth_dev_rxip_add6_store(struct device
*dev
, const char *buf
, size_t count
)
1625 struct qeth_card
*card
= dev
->driver_data
;
1630 return qeth_dev_rxip_add_store(buf
, count
, card
, QETH_PROT_IPV6
);
1633 static QETH_DEVICE_ATTR(rxip_add6
, add6
, 0644,
1634 qeth_dev_rxip_add6_show
,
1635 qeth_dev_rxip_add6_store
);
1638 qeth_dev_rxip_del6_store(struct device
*dev
, const char *buf
, size_t count
)
1640 struct qeth_card
*card
= dev
->driver_data
;
1645 return qeth_dev_rxip_del_store(buf
, count
, card
, QETH_PROT_IPV6
);
1648 static QETH_DEVICE_ATTR(rxip_del6
, del6
, 0200, NULL
,
1649 qeth_dev_rxip_del6_store
);
1650 #endif /* CONFIG_QETH_IPV6 */
1652 static struct device_attribute
* qeth_rxip_device_attrs
[] = {
1653 &dev_attr_rxip_add4
,
1654 &dev_attr_rxip_del4
,
1655 #ifdef CONFIG_QETH_IPV6
1656 &dev_attr_rxip_add6
,
1657 &dev_attr_rxip_del6
,
1662 static struct attribute_group qeth_device_rxip_group
= {
1664 .attrs
= (struct attribute
**)qeth_rxip_device_attrs
,
1668 qeth_create_device_attributes(struct device
*dev
)
1672 if ((ret
= sysfs_create_group(&dev
->kobj
, &qeth_device_attr_group
)))
1674 if ((ret
= sysfs_create_group(&dev
->kobj
, &qeth_device_ipato_group
))){
1675 sysfs_remove_group(&dev
->kobj
, &qeth_device_attr_group
);
1678 if ((ret
= sysfs_create_group(&dev
->kobj
, &qeth_device_vipa_group
))){
1679 sysfs_remove_group(&dev
->kobj
, &qeth_device_attr_group
);
1680 sysfs_remove_group(&dev
->kobj
, &qeth_device_ipato_group
);
1683 if ((ret
= sysfs_create_group(&dev
->kobj
, &qeth_device_rxip_group
))){
1684 sysfs_remove_group(&dev
->kobj
, &qeth_device_attr_group
);
1685 sysfs_remove_group(&dev
->kobj
, &qeth_device_ipato_group
);
1686 sysfs_remove_group(&dev
->kobj
, &qeth_device_vipa_group
);
1688 if ((ret
= sysfs_create_group(&dev
->kobj
, &qeth_device_blkt_group
)))
1695 qeth_remove_device_attributes(struct device
*dev
)
1697 sysfs_remove_group(&dev
->kobj
, &qeth_device_attr_group
);
1698 sysfs_remove_group(&dev
->kobj
, &qeth_device_ipato_group
);
1699 sysfs_remove_group(&dev
->kobj
, &qeth_device_vipa_group
);
1700 sysfs_remove_group(&dev
->kobj
, &qeth_device_rxip_group
);
1701 sysfs_remove_group(&dev
->kobj
, &qeth_device_blkt_group
);
1704 /**********************/
1705 /* DRIVER ATTRIBUTES */
1706 /**********************/
1708 qeth_driver_group_store(struct device_driver
*ddrv
, const char *buf
,
1711 const char *start
, *end
;
1712 char bus_ids
[3][BUS_ID_SIZE
], *argv
[3];
1717 for (i
= 0; i
< 3; i
++) {
1718 static const char delim
[] = { ',', ',', '\n' };
1721 if (!(end
= strchr(start
, delim
[i
])))
1723 len
= min_t(ptrdiff_t, BUS_ID_SIZE
, end
- start
);
1724 strncpy(bus_ids
[i
], start
, len
);
1725 bus_ids
[i
][len
] = '\0';
1727 argv
[i
] = bus_ids
[i
];
1729 err
= ccwgroup_create(qeth_root_dev
, qeth_ccwgroup_driver
.driver_id
,
1730 &qeth_ccw_driver
, 3, argv
);
1738 static DRIVER_ATTR(group
, 0200, 0, qeth_driver_group_store
);
1741 qeth_driver_notifier_register_store(struct device_driver
*ddrv
, const char *buf
,
1748 tmp
= strsep((char **) &buf
, "\n");
1749 if (!strncmp(tmp
, "unregister", 10)){
1750 if ((rc
= qeth_notifier_unregister(current
)))
1755 signum
= simple_strtoul(tmp
, &tmp2
, 10);
1756 if ((signum
< 0) || (signum
> 32)){
1757 PRINT_WARN("Signal number %d is out of range\n", signum
);
1760 if ((rc
= qeth_notifier_register(current
, signum
)))
1766 static DRIVER_ATTR(notifier_register
, 0200, 0,
1767 qeth_driver_notifier_register_store
);
1770 qeth_create_driver_attributes(void)
1774 if ((rc
= driver_create_file(&qeth_ccwgroup_driver
.driver
,
1775 &driver_attr_group
)))
1777 return driver_create_file(&qeth_ccwgroup_driver
.driver
,
1778 &driver_attr_notifier_register
);
1782 qeth_remove_driver_attributes(void)
1784 driver_remove_file(&qeth_ccwgroup_driver
.driver
,
1785 &driver_attr_group
);
1786 driver_remove_file(&qeth_ccwgroup_driver
.driver
,
1787 &driver_attr_notifier_register
);