Show the enclosure name and id in sesutil map
Sponsored by: Gandi.net
This commit is contained in:
parent
ae47b5ecd3
commit
60f466403f
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user