2 * Copyright (c) 2006 QLogic, Inc. All rights reserved.
3 * Copyright (c) 2006 PathScale, Inc. All rights reserved.
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34 #include <linux/ctype.h>
35 #include <linux/pci.h>
37 #include "ipath_kernel.h"
38 #include "ips_common.h"
39 #include "ipath_layer.h"
42 * ipath_parse_ushort - parse an unsigned short value in an arbitrary base
43 * @str: the string containing the number
44 * @valp: where to put the result
46 * returns the number of bytes consumed, or negative value on error
48 int ipath_parse_ushort(const char *str, unsigned short *valp)
54 if (!isdigit(str[0])) {
59 val = simple_strtoul(str, &end, 0);
76 static ssize_t show_version(struct device_driver *dev, char *buf)
78 /* The string printed here is already newline-terminated. */
79 return scnprintf(buf, PAGE_SIZE, "%s", ipath_core_version);
82 static ssize_t show_num_units(struct device_driver *dev, char *buf)
84 return scnprintf(buf, PAGE_SIZE, "%d\n",
85 ipath_count_units(NULL, NULL, NULL));
88 #define DRIVER_STAT(name, attr) \
89 static ssize_t show_stat_##name(struct device_driver *dev, \
93 buf, PAGE_SIZE, "%llu\n", \
94 (unsigned long long) ipath_stats.sps_ ##attr); \
96 static DRIVER_ATTR(name, S_IRUGO, show_stat_##name, NULL)
98 DRIVER_STAT(intrs, ints);
99 DRIVER_STAT(err_intrs, errints);
100 DRIVER_STAT(errs, errs);
101 DRIVER_STAT(pkt_errs, pkterrs);
102 DRIVER_STAT(crc_errs, crcerrs);
103 DRIVER_STAT(hw_errs, hwerrs);
104 DRIVER_STAT(ib_link, iblink);
105 DRIVER_STAT(port0_pkts, port0pkts);
106 DRIVER_STAT(ether_spkts, ether_spkts);
107 DRIVER_STAT(ether_rpkts, ether_rpkts);
108 DRIVER_STAT(sma_spkts, sma_spkts);
109 DRIVER_STAT(sma_rpkts, sma_rpkts);
110 DRIVER_STAT(hdrq_full, hdrqfull);
111 DRIVER_STAT(etid_full, etidfull);
112 DRIVER_STAT(no_piobufs, nopiobufs);
113 DRIVER_STAT(ports, ports);
114 DRIVER_STAT(pkey0, pkeys[0]);
115 DRIVER_STAT(pkey1, pkeys[1]);
116 DRIVER_STAT(pkey2, pkeys[2]);
117 DRIVER_STAT(pkey3, pkeys[3]);
118 /* XXX fix the following when dynamic table of devices used */
119 DRIVER_STAT(lid0, lid[0]);
120 DRIVER_STAT(lid1, lid[1]);
121 DRIVER_STAT(lid2, lid[2]);
122 DRIVER_STAT(lid3, lid[3]);
124 DRIVER_STAT(nports, nports);
125 DRIVER_STAT(null_intr, nullintr);
126 DRIVER_STAT(max_pkts_call, maxpkts_call);
127 DRIVER_STAT(avg_pkts_call, avgpkts_call);
128 DRIVER_STAT(page_locks, pagelocks);
129 DRIVER_STAT(page_unlocks, pageunlocks);
130 DRIVER_STAT(krdrops, krdrops);
131 /* XXX fix the following when dynamic table of devices used */
132 DRIVER_STAT(mlid0, mlid[0]);
133 DRIVER_STAT(mlid1, mlid[1]);
134 DRIVER_STAT(mlid2, mlid[2]);
135 DRIVER_STAT(mlid3, mlid[3]);
137 static struct attribute *driver_stat_attributes[] = {
138 &driver_attr_intrs.attr,
139 &driver_attr_err_intrs.attr,
140 &driver_attr_errs.attr,
141 &driver_attr_pkt_errs.attr,
142 &driver_attr_crc_errs.attr,
143 &driver_attr_hw_errs.attr,
144 &driver_attr_ib_link.attr,
145 &driver_attr_port0_pkts.attr,
146 &driver_attr_ether_spkts.attr,
147 &driver_attr_ether_rpkts.attr,
148 &driver_attr_sma_spkts.attr,
149 &driver_attr_sma_rpkts.attr,
150 &driver_attr_hdrq_full.attr,
151 &driver_attr_etid_full.attr,
152 &driver_attr_no_piobufs.attr,
153 &driver_attr_ports.attr,
154 &driver_attr_pkey0.attr,
155 &driver_attr_pkey1.attr,
156 &driver_attr_pkey2.attr,
157 &driver_attr_pkey3.attr,
158 &driver_attr_lid0.attr,
159 &driver_attr_lid1.attr,
160 &driver_attr_lid2.attr,
161 &driver_attr_lid3.attr,
162 &driver_attr_nports.attr,
163 &driver_attr_null_intr.attr,
164 &driver_attr_max_pkts_call.attr,
165 &driver_attr_avg_pkts_call.attr,
166 &driver_attr_page_locks.attr,
167 &driver_attr_page_unlocks.attr,
168 &driver_attr_krdrops.attr,
169 &driver_attr_mlid0.attr,
170 &driver_attr_mlid1.attr,
171 &driver_attr_mlid2.attr,
172 &driver_attr_mlid3.attr,
176 static struct attribute_group driver_stat_attr_group = {
178 .attrs = driver_stat_attributes
181 static ssize_t show_status(struct device *dev,
182 struct device_attribute *attr,
185 struct ipath_devdata *dd = dev_get_drvdata(dev);
188 if (!dd->ipath_statusp) {
193 ret = scnprintf(buf, PAGE_SIZE, "0x%llx\n",
194 (unsigned long long) *(dd->ipath_statusp));
200 static const char *ipath_status_str[] = {
210 "Fatal_Hardware_Error",
214 static ssize_t show_status_str(struct device *dev,
215 struct device_attribute *attr,
218 struct ipath_devdata *dd = dev_get_drvdata(dev);
223 if (!dd->ipath_statusp) {
228 s = *(dd->ipath_statusp);
230 for (any = i = 0; s && ipath_status_str[i]; i++) {
232 if (any && strlcat(buf, " ", PAGE_SIZE) >=
236 if (strlcat(buf, ipath_status_str[i],
237 PAGE_SIZE) >= PAGE_SIZE)
244 strlcat(buf, "\n", PAGE_SIZE);
252 static ssize_t show_boardversion(struct device *dev,
253 struct device_attribute *attr,
256 struct ipath_devdata *dd = dev_get_drvdata(dev);
257 /* The string printed here is already newline-terminated. */
258 return scnprintf(buf, PAGE_SIZE, "%s", dd->ipath_boardversion);
261 static ssize_t show_lid(struct device *dev,
262 struct device_attribute *attr,
265 struct ipath_devdata *dd = dev_get_drvdata(dev);
267 return scnprintf(buf, PAGE_SIZE, "0x%x\n", dd->ipath_lid);
270 static ssize_t store_lid(struct device *dev,
271 struct device_attribute *attr,
275 struct ipath_devdata *dd = dev_get_drvdata(dev);
279 ret = ipath_parse_ushort(buf, &lid);
283 if (lid == 0 || lid >= 0xc000) {
288 ipath_set_sps_lid(dd, lid, 0);
292 ipath_dev_err(dd, "attempt to set invalid LID\n");
297 static ssize_t show_mlid(struct device *dev,
298 struct device_attribute *attr,
301 struct ipath_devdata *dd = dev_get_drvdata(dev);
303 return scnprintf(buf, PAGE_SIZE, "0x%x\n", dd->ipath_mlid);
306 static ssize_t store_mlid(struct device *dev,
307 struct device_attribute *attr,
311 struct ipath_devdata *dd = dev_get_drvdata(dev);
316 ret = ipath_parse_ushort(buf, &mlid);
320 unit = dd->ipath_unit;
322 dd->ipath_mlid = mlid;
323 ipath_stats.sps_mlid[unit] = mlid;
324 ipath_layer_intr(dd, IPATH_LAYER_INT_BCAST);
328 ipath_dev_err(dd, "attempt to set invalid MLID\n");
333 static ssize_t show_guid(struct device *dev,
334 struct device_attribute *attr,
337 struct ipath_devdata *dd = dev_get_drvdata(dev);
340 guid = (u8 *) & (dd->ipath_guid);
342 return scnprintf(buf, PAGE_SIZE,
343 "%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x\n",
344 guid[0], guid[1], guid[2], guid[3],
345 guid[4], guid[5], guid[6], guid[7]);
348 static ssize_t store_guid(struct device *dev,
349 struct device_attribute *attr,
353 struct ipath_devdata *dd = dev_get_drvdata(dev);
355 unsigned short guid[8];
360 if (sscanf(buf, "%hx:%hx:%hx:%hx:%hx:%hx:%hx:%hx",
361 &guid[0], &guid[1], &guid[2], &guid[3],
362 &guid[4], &guid[5], &guid[6], &guid[7]) != 8)
367 for (i = 0; i < 8; i++) {
373 dd->ipath_guid = nguid;
380 ipath_dev_err(dd, "attempt to set invalid GUID\n");
387 static ssize_t show_nguid(struct device *dev,
388 struct device_attribute *attr,
391 struct ipath_devdata *dd = dev_get_drvdata(dev);
393 return scnprintf(buf, PAGE_SIZE, "%u\n", dd->ipath_nguid);
396 static ssize_t show_serial(struct device *dev,
397 struct device_attribute *attr,
400 struct ipath_devdata *dd = dev_get_drvdata(dev);
402 buf[sizeof dd->ipath_serial] = '\0';
403 memcpy(buf, dd->ipath_serial, sizeof dd->ipath_serial);
408 static ssize_t show_unit(struct device *dev,
409 struct device_attribute *attr,
412 struct ipath_devdata *dd = dev_get_drvdata(dev);
414 return scnprintf(buf, PAGE_SIZE, "%u\n", dd->ipath_unit);
417 #define DEVICE_COUNTER(name, attr) \
418 static ssize_t show_counter_##name(struct device *dev, \
419 struct device_attribute *attr, \
422 struct ipath_devdata *dd = dev_get_drvdata(dev); \
424 buf, PAGE_SIZE, "%llu\n", (unsigned long long) \
426 dd, offsetof(struct infinipath_counters, \
427 attr) / sizeof(u64))); \
429 static DEVICE_ATTR(name, S_IRUGO, show_counter_##name, NULL);
431 DEVICE_COUNTER(ib_link_downeds, IBLinkDownedCnt);
432 DEVICE_COUNTER(ib_link_err_recoveries, IBLinkErrRecoveryCnt);
433 DEVICE_COUNTER(ib_status_changes, IBStatusChangeCnt);
434 DEVICE_COUNTER(ib_symbol_errs, IBSymbolErrCnt);
435 DEVICE_COUNTER(lb_flow_stalls, LBFlowStallCnt);
436 DEVICE_COUNTER(lb_ints, LBIntCnt);
437 DEVICE_COUNTER(rx_bad_formats, RxBadFormatCnt);
438 DEVICE_COUNTER(rx_buf_ovfls, RxBufOvflCnt);
439 DEVICE_COUNTER(rx_data_pkts, RxDataPktCnt);
440 DEVICE_COUNTER(rx_dropped_pkts, RxDroppedPktCnt);
441 DEVICE_COUNTER(rx_dwords, RxDwordCnt);
442 DEVICE_COUNTER(rx_ebps, RxEBPCnt);
443 DEVICE_COUNTER(rx_flow_ctrl_errs, RxFlowCtrlErrCnt);
444 DEVICE_COUNTER(rx_flow_pkts, RxFlowPktCnt);
445 DEVICE_COUNTER(rx_icrc_errs, RxICRCErrCnt);
446 DEVICE_COUNTER(rx_len_errs, RxLenErrCnt);
447 DEVICE_COUNTER(rx_link_problems, RxLinkProblemCnt);
448 DEVICE_COUNTER(rx_lpcrc_errs, RxLPCRCErrCnt);
449 DEVICE_COUNTER(rx_max_min_len_errs, RxMaxMinLenErrCnt);
450 DEVICE_COUNTER(rx_p0_hdr_egr_ovfls, RxP0HdrEgrOvflCnt);
451 DEVICE_COUNTER(rx_p1_hdr_egr_ovfls, RxP1HdrEgrOvflCnt);
452 DEVICE_COUNTER(rx_p2_hdr_egr_ovfls, RxP2HdrEgrOvflCnt);
453 DEVICE_COUNTER(rx_p3_hdr_egr_ovfls, RxP3HdrEgrOvflCnt);
454 DEVICE_COUNTER(rx_p4_hdr_egr_ovfls, RxP4HdrEgrOvflCnt);
455 DEVICE_COUNTER(rx_p5_hdr_egr_ovfls, RxP5HdrEgrOvflCnt);
456 DEVICE_COUNTER(rx_p6_hdr_egr_ovfls, RxP6HdrEgrOvflCnt);
457 DEVICE_COUNTER(rx_p7_hdr_egr_ovfls, RxP7HdrEgrOvflCnt);
458 DEVICE_COUNTER(rx_p8_hdr_egr_ovfls, RxP8HdrEgrOvflCnt);
459 DEVICE_COUNTER(rx_pkey_mismatches, RxPKeyMismatchCnt);
460 DEVICE_COUNTER(rx_tid_full_errs, RxTIDFullErrCnt);
461 DEVICE_COUNTER(rx_tid_valid_errs, RxTIDValidErrCnt);
462 DEVICE_COUNTER(rx_vcrc_errs, RxVCRCErrCnt);
463 DEVICE_COUNTER(tx_data_pkts, TxDataPktCnt);
464 DEVICE_COUNTER(tx_dropped_pkts, TxDroppedPktCnt);
465 DEVICE_COUNTER(tx_dwords, TxDwordCnt);
466 DEVICE_COUNTER(tx_flow_pkts, TxFlowPktCnt);
467 DEVICE_COUNTER(tx_flow_stalls, TxFlowStallCnt);
468 DEVICE_COUNTER(tx_len_errs, TxLenErrCnt);
469 DEVICE_COUNTER(tx_max_min_len_errs, TxMaxMinLenErrCnt);
470 DEVICE_COUNTER(tx_underruns, TxUnderrunCnt);
471 DEVICE_COUNTER(tx_unsup_vl_errs, TxUnsupVLErrCnt);
473 static struct attribute *dev_counter_attributes[] = {
474 &dev_attr_ib_link_downeds.attr,
475 &dev_attr_ib_link_err_recoveries.attr,
476 &dev_attr_ib_status_changes.attr,
477 &dev_attr_ib_symbol_errs.attr,
478 &dev_attr_lb_flow_stalls.attr,
479 &dev_attr_lb_ints.attr,
480 &dev_attr_rx_bad_formats.attr,
481 &dev_attr_rx_buf_ovfls.attr,
482 &dev_attr_rx_data_pkts.attr,
483 &dev_attr_rx_dropped_pkts.attr,
484 &dev_attr_rx_dwords.attr,
485 &dev_attr_rx_ebps.attr,
486 &dev_attr_rx_flow_ctrl_errs.attr,
487 &dev_attr_rx_flow_pkts.attr,
488 &dev_attr_rx_icrc_errs.attr,
489 &dev_attr_rx_len_errs.attr,
490 &dev_attr_rx_link_problems.attr,
491 &dev_attr_rx_lpcrc_errs.attr,
492 &dev_attr_rx_max_min_len_errs.attr,
493 &dev_attr_rx_p0_hdr_egr_ovfls.attr,
494 &dev_attr_rx_p1_hdr_egr_ovfls.attr,
495 &dev_attr_rx_p2_hdr_egr_ovfls.attr,
496 &dev_attr_rx_p3_hdr_egr_ovfls.attr,
497 &dev_attr_rx_p4_hdr_egr_ovfls.attr,
498 &dev_attr_rx_p5_hdr_egr_ovfls.attr,
499 &dev_attr_rx_p6_hdr_egr_ovfls.attr,
500 &dev_attr_rx_p7_hdr_egr_ovfls.attr,
501 &dev_attr_rx_p8_hdr_egr_ovfls.attr,
502 &dev_attr_rx_pkey_mismatches.attr,
503 &dev_attr_rx_tid_full_errs.attr,
504 &dev_attr_rx_tid_valid_errs.attr,
505 &dev_attr_rx_vcrc_errs.attr,
506 &dev_attr_tx_data_pkts.attr,
507 &dev_attr_tx_dropped_pkts.attr,
508 &dev_attr_tx_dwords.attr,
509 &dev_attr_tx_flow_pkts.attr,
510 &dev_attr_tx_flow_stalls.attr,
511 &dev_attr_tx_len_errs.attr,
512 &dev_attr_tx_max_min_len_errs.attr,
513 &dev_attr_tx_underruns.attr,
514 &dev_attr_tx_unsup_vl_errs.attr,
518 static struct attribute_group dev_counter_attr_group = {
520 .attrs = dev_counter_attributes
523 static ssize_t store_reset(struct device *dev,
524 struct device_attribute *attr,
528 struct ipath_devdata *dd = dev_get_drvdata(dev);
531 if (count < 5 || memcmp(buf, "reset", 5)) {
536 if (dd->ipath_flags & IPATH_DISABLED) {
538 * post-reset init would re-enable interrupts, etc.
539 * so don't allow reset on disabled devices. Not
540 * perfect error, but about the best choice.
542 dev_info(dev,"Unit %d is disabled, can't reset\n",
546 ret = ipath_reset_device(dd->ipath_unit);
548 return ret<0 ? ret : count;
551 static ssize_t store_link_state(struct device *dev,
552 struct device_attribute *attr,
556 struct ipath_devdata *dd = dev_get_drvdata(dev);
560 ret = ipath_parse_ushort(buf, &state);
564 r = ipath_layer_set_linkstate(dd, state);
572 ipath_dev_err(dd, "attempt to set invalid link state\n");
577 static ssize_t show_mtu(struct device *dev,
578 struct device_attribute *attr,
581 struct ipath_devdata *dd = dev_get_drvdata(dev);
582 return scnprintf(buf, PAGE_SIZE, "%u\n", dd->ipath_ibmtu);
585 static ssize_t store_mtu(struct device *dev,
586 struct device_attribute *attr,
590 struct ipath_devdata *dd = dev_get_drvdata(dev);
595 ret = ipath_parse_ushort(buf, &mtu);
599 r = ipath_layer_set_mtu(dd, mtu);
605 ipath_dev_err(dd, "attempt to set invalid MTU\n");
610 static ssize_t show_enabled(struct device *dev,
611 struct device_attribute *attr,
614 struct ipath_devdata *dd = dev_get_drvdata(dev);
615 return scnprintf(buf, PAGE_SIZE, "%u\n",
616 (dd->ipath_flags & IPATH_DISABLED) ? 0 : 1);
619 static ssize_t store_enabled(struct device *dev,
620 struct device_attribute *attr,
624 struct ipath_devdata *dd = dev_get_drvdata(dev);
628 ret = ipath_parse_ushort(buf, &enable);
630 ipath_dev_err(dd, "attempt to use non-numeric on enable\n");
635 if (!(dd->ipath_flags & IPATH_DISABLED))
638 dev_info(dev, "Enabling unit %d\n", dd->ipath_unit);
639 /* same as post-reset */
640 ret = ipath_init_chip(dd, 1);
642 ipath_dev_err(dd, "Failed to enable unit %d\n",
645 dd->ipath_flags &= ~IPATH_DISABLED;
646 *dd->ipath_statusp &= ~IPATH_STATUS_ADMIN_DISABLED;
649 else if (!(dd->ipath_flags & IPATH_DISABLED)) {
650 dev_info(dev, "Disabling unit %d\n", dd->ipath_unit);
651 ipath_shutdown_device(dd);
652 dd->ipath_flags |= IPATH_DISABLED;
653 *dd->ipath_statusp |= IPATH_STATUS_ADMIN_DISABLED;
660 static DRIVER_ATTR(num_units, S_IRUGO, show_num_units, NULL);
661 static DRIVER_ATTR(version, S_IRUGO, show_version, NULL);
663 static struct attribute *driver_attributes[] = {
664 &driver_attr_num_units.attr,
665 &driver_attr_version.attr,
669 static struct attribute_group driver_attr_group = {
670 .attrs = driver_attributes
673 static DEVICE_ATTR(guid, S_IWUSR | S_IRUGO, show_guid, store_guid);
674 static DEVICE_ATTR(lid, S_IWUSR | S_IRUGO, show_lid, store_lid);
675 static DEVICE_ATTR(link_state, S_IWUSR, NULL, store_link_state);
676 static DEVICE_ATTR(mlid, S_IWUSR | S_IRUGO, show_mlid, store_mlid);
677 static DEVICE_ATTR(mtu, S_IWUSR | S_IRUGO, show_mtu, store_mtu);
678 static DEVICE_ATTR(enabled, S_IWUSR | S_IRUGO, show_enabled, store_enabled);
679 static DEVICE_ATTR(nguid, S_IRUGO, show_nguid, NULL);
680 static DEVICE_ATTR(reset, S_IWUSR, NULL, store_reset);
681 static DEVICE_ATTR(serial, S_IRUGO, show_serial, NULL);
682 static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
683 static DEVICE_ATTR(status_str, S_IRUGO, show_status_str, NULL);
684 static DEVICE_ATTR(boardversion, S_IRUGO, show_boardversion, NULL);
685 static DEVICE_ATTR(unit, S_IRUGO, show_unit, NULL);
687 static struct attribute *dev_attributes[] = {
690 &dev_attr_link_state.attr,
693 &dev_attr_nguid.attr,
694 &dev_attr_serial.attr,
695 &dev_attr_status.attr,
696 &dev_attr_status_str.attr,
697 &dev_attr_boardversion.attr,
699 &dev_attr_enabled.attr,
703 static struct attribute_group dev_attr_group = {
704 .attrs = dev_attributes
708 * ipath_expose_reset - create a device reset file
709 * @dev: the device structure
711 * Only expose a file that lets us reset the device after someone
712 * enters diag mode. A device reset is quite likely to crash the
713 * machine entirely, so we don't want to normally make it
716 * Called with ipath_mutex held.
718 int ipath_expose_reset(struct device *dev)
724 ret = device_create_file(dev, &dev_attr_reset);
733 int ipath_driver_create_group(struct device_driver *drv)
737 ret = sysfs_create_group(&drv->kobj, &driver_attr_group);
741 ret = sysfs_create_group(&drv->kobj, &driver_stat_attr_group);
743 sysfs_remove_group(&drv->kobj, &driver_attr_group);
749 void ipath_driver_remove_group(struct device_driver *drv)
751 sysfs_remove_group(&drv->kobj, &driver_stat_attr_group);
752 sysfs_remove_group(&drv->kobj, &driver_attr_group);
755 int ipath_device_create_group(struct device *dev, struct ipath_devdata *dd)
760 ret = sysfs_create_group(&dev->kobj, &dev_attr_group);
764 ret = sysfs_create_group(&dev->kobj, &dev_counter_attr_group);
768 snprintf(unit, sizeof(unit), "%02d", dd->ipath_unit);
769 ret = sysfs_create_link(&dev->driver->kobj, &dev->kobj, unit);
773 sysfs_remove_group(&dev->kobj, &dev_counter_attr_group);
775 sysfs_remove_group(&dev->kobj, &dev_attr_group);
780 void ipath_device_remove_group(struct device *dev, struct ipath_devdata *dd)
784 snprintf(unit, sizeof(unit), "%02d", dd->ipath_unit);
785 sysfs_remove_link(&dev->driver->kobj, unit);
787 sysfs_remove_group(&dev->kobj, &dev_counter_attr_group);
788 sysfs_remove_group(&dev->kobj, &dev_attr_group);
790 device_remove_file(dev, &dev_attr_reset);