summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authorbapt <bapt@FreeBSD.org>2015-12-15 13:01:14 +0000
committerbapt <bapt@FreeBSD.org>2015-12-15 13:01:14 +0000
commitf1133c49a08f58da994ea8bfdfe91efeaa98ae25 (patch)
treec92d81b10bc215597d73142d97712c76dd120cfa /usr.sbin
parent05fc63996b9ee710bc7b4699d5dfa8427e069f35 (diff)
downloadFreeBSD-src-f1133c49a08f58da994ea8bfdfe91efeaa98ae25.zip
FreeBSD-src-f1133c49a08f58da994ea8bfdfe91efeaa98ae25.tar.gz
Show the enclosure name and id in sesutil map
Sponsored by: Gandi.net
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/sesutil/sesutil.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/usr.sbin/sesutil/sesutil.c b/usr.sbin/sesutil/sesutil.c
index 5c96070..0f04c07 100644
--- a/usr.sbin/sesutil/sesutil.c
+++ b/usr.sbin/sesutil/sesutil.c
@@ -302,6 +302,7 @@ static int
objmap(int argc, char **argv __unused)
{
struct sbuf *extra;
+ encioc_string_t stri;
encioc_elm_devnames_t e_devname;
encioc_elm_status_t e_status;
encioc_elm_desc_t e_desc;
@@ -310,6 +311,7 @@ objmap(int argc, char **argv __unused)
int fd;
unsigned int j, nobj;
size_t i;
+ char str[32];
if (argc != 1) {
usage(stderr, "map");
@@ -355,6 +357,15 @@ objmap(int argc, char **argv __unused)
}
printf("%s:\n", g.gl_pathv[i] + 5);
+ stri.bufsiz = sizeof(str);
+ stri.buf = &str[0];
+ if (ioctl(fd, ENCIOC_GETENCNAME, (caddr_t) &stri) == 0)
+ printf("\tEnclosure Name: %s\n", stri.buf);
+ stri.bufsiz = sizeof(str);
+ stri.buf = &str[0];
+ if (ioctl(fd, ENCIOC_GETENCID, (caddr_t) &stri) == 0)
+ printf("\tEnclosure ID: %s\n", stri.buf);
+
for (j = 0; j < nobj; j++) {
/* Get the status of the element */
memset(&e_status, 0, sizeof(e_status));
OpenPOWER on IntegriCloud