Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Apr 2014 09:31:22 +0000 (UTC)
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r264405 - head/usr.bin/iscsictl
Message-ID:  <201404130931.s3D9VMMr054824@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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: {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404130931.s3D9VMMr054824>