svn commit: r260059 - head/sbin/camcontrol
Scott Long
scottl at FreeBSD.org
Sun Dec 29 20:48:48 UTC 2013
Author: scottl
Date: Sun Dec 29 20:48:47 2013
New Revision: 260059
URL: http://svnweb.freebsd.org/changeset/base/260059
Log:
Add the '-b' flag to 'camcontrol devlist'. This prints only the existing
buses and their parent sims, useful for creating a sim->bus->device map.
Obtained from: Netflix
MFC after: 3 days
Modified:
head/sbin/camcontrol/camcontrol.8
head/sbin/camcontrol/camcontrol.c
Modified: head/sbin/camcontrol/camcontrol.8
==============================================================================
--- head/sbin/camcontrol/camcontrol.8 Sun Dec 29 20:41:32 2013 (r260058)
+++ head/sbin/camcontrol/camcontrol.8 Sun Dec 29 20:48:47 2013 (r260059)
@@ -41,6 +41,7 @@
.Op command args
.Nm
.Ic devlist
+.Op Fl b
.Op Fl v
.Nm
.Ic periphlist
@@ -361,6 +362,10 @@ With the
.Fl v
argument, SCSI bus number, adapter name and unit numbers are printed as
well.
+On the other hand, with the
+.Fl b
+argument, only the bus adapter, and unit information will be printed, and
+device information will be omitted.
.It Ic periphlist
List all peripheral drivers attached to a given physical device (logical
unit).
Modified: head/sbin/camcontrol/camcontrol.c
==============================================================================
--- head/sbin/camcontrol/camcontrol.c Sun Dec 29 20:41:32 2013 (r260058)
+++ head/sbin/camcontrol/camcontrol.c Sun Dec 29 20:48:47 2013 (r260059)
@@ -202,7 +202,7 @@ static struct camcontrol_opts option_tab
{"defects", CAM_CMD_READ_DEFECTS, CAM_ARG_NONE, readdefect_opts},
{"defectlist", CAM_CMD_READ_DEFECTS, CAM_ARG_NONE, readdefect_opts},
#endif /* MINIMALISTIC */
- {"devlist", CAM_CMD_DEVTREE, CAM_ARG_NONE, NULL},
+ {"devlist", CAM_CMD_DEVTREE, CAM_ARG_NONE, "-b"},
#ifndef MINIMALISTIC
{"periphlist", CAM_CMD_DEVLIST, CAM_ARG_NONE, NULL},
{"modepage", CAM_CMD_MODE_PAGE, CAM_ARG_NONE, "bdelm:P:"},
@@ -254,7 +254,7 @@ camcontrol_optret getoption(struct camco
#ifndef MINIMALISTIC
static int getdevlist(struct cam_device *device);
#endif /* MINIMALISTIC */
-static int getdevtree(void);
+static int getdevtree(int argc, char **argv, char *combinedopt);
#ifndef MINIMALISTIC
static int testunitready(struct cam_device *device, int retry_count,
int timeout, int quiet);
@@ -411,7 +411,7 @@ getdevlist(struct cam_device *device)
#endif /* MINIMALISTIC */
static int
-getdevtree(void)
+getdevtree(int argc, char **argv, char *combinedopt)
{
union ccb ccb;
int bufsize, fd;
@@ -419,6 +419,19 @@ getdevtree(void)
int need_close = 0;
int error = 0;
int skip_device = 0;
+ int busonly = 0;
+ char c;
+
+ while ((c = getopt(argc, argv, combinedopt)) != -1) {
+ switch(c) {
+ case 'b':
+ if ((arglist & CAM_ARG_VERBOSE) == 0)
+ busonly = 1;
+ break;
+ default:
+ break;
+ }
+ }
if ((fd = open(XPT_DEVICE, O_RDWR)) == -1) {
warn("couldn't open %s", XPT_DEVICE);
@@ -478,7 +491,8 @@ getdevtree(void)
* Only print the bus information if the
* user turns on the verbose flag.
*/
- if ((arglist & CAM_ARG_VERBOSE) == 0)
+ if ((busonly == 0) &&
+ (arglist & CAM_ARG_VERBOSE) == 0)
break;
bus_result =
@@ -489,11 +503,12 @@ getdevtree(void)
need_close = 0;
}
- fprintf(stdout, "scbus%d on %s%d bus %d:\n",
+ fprintf(stdout, "scbus%d on %s%d bus %d%s\n",
bus_result->path_id,
bus_result->dev_name,
bus_result->unit_number,
- bus_result->bus_id);
+ bus_result->bus_id,
+ (busonly ? "" : ":"));
break;
}
case DEV_MATCH_DEVICE: {
@@ -501,6 +516,9 @@ getdevtree(void)
char vendor[16], product[48], revision[16];
char fw[5], tmpstr[256];
+ if (busonly == 1)
+ break;
+
dev_result =
&ccb.cdm.matches[i].result.device_result;
@@ -582,7 +600,7 @@ getdevtree(void)
periph_result =
&ccb.cdm.matches[i].result.periph_result;
- if (skip_device != 0)
+ if (busonly || skip_device != 0)
break;
if (need_close > 1)
@@ -8178,7 +8196,7 @@ main(int argc, char **argv)
break;
#endif /* MINIMALISTIC */
case CAM_CMD_DEVTREE:
- error = getdevtree();
+ error = getdevtree(argc, argv, combinedopt);
break;
#ifndef MINIMALISTIC
case CAM_CMD_TUR:
More information about the svn-src-head
mailing list