svn commit: r264405 - head/usr.bin/iscsictl
Alexander Motin
mav at FreeBSD.org
Sun Apr 13 09:31:22 UTC 2014
Author: mav
Date: Sun Apr 13 09:31:22 2014
New Revision: 264405
URL: http://svnweb.freebsd.org/changeset/base/264405
Log:
Fix periph listing when IOCTL buffer border hits result for wanted bus.
Modified:
head/usr.bin/iscsictl/periphs.c
Modified: head/usr.bin/iscsictl/periphs.c
==============================================================================
--- head/usr.bin/iscsictl/periphs.c Sun Apr 13 06:30:02 2014 (r264404)
+++ head/usr.bin/iscsictl/periphs.c Sun Apr 13 09:31:22 2014 (r264405)
@@ -102,6 +102,9 @@ print_periphs(int session_id)
ccb.cdm.num_patterns = 0;
ccb.cdm.pattern_buf_len = 0;
+ skip_bus = 1;
+ skip_device = 1;
+
/*
* We do the ioctl multiple times if necessary, in case there are
* more than 100 nodes in the EDT.
@@ -120,9 +123,6 @@ print_periphs(int session_id)
break;
}
- skip_bus = 1;
- skip_device = 1;
-
for (i = 0; i < ccb.cdm.num_matches; i++) {
switch (ccb.cdm.matches[i].type) {
case DEV_MATCH_BUS: {
More information about the svn-src-all
mailing list