Searched defs:mx_resp_len (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/fm/libseslog/common/
H A Dlibseslog.c141 read_log(int sg_fd, unsigned char *resp, int mx_resp_len) argument
149 if (mx_resp_len > 0xffff) {
160 logsCmdBlk[7] = (unsigned char) ((mx_resp_len >> 8) & 0xff);
161 logsCmdBlk[8] = (unsigned char) (mx_resp_len & 0xff);
167 set_scsi_pt_data_in(&uscsi, resp, mx_resp_len);
462 sg_ll_mode_sense10(int sg_fd, void * resp, int mx_resp_len) argument
473 modesCmdBlk[7] = (unsigned char) ((mx_resp_len >> 8) & 0xff);
474 modesCmdBlk[8] = (unsigned char) (mx_resp_len & 0xff);
479 set_scsi_pt_data_in(&uscsi, (unsigned char *) resp, mx_resp_len);

Completed in 68 milliseconds