Lines Matching refs:sense_buf
2506 u8 *sense_buf = cmd->scsi_cmd->sense_buffer;
2512 memset(sense_buf, 0, SCSI_SENSE_BUFFERSIZE);
2519 sense_buf[0] = 0x72;
2520 sense_buf[1] = PMCRAID_IOASC_SENSE_KEY(ioasc);
2521 sense_buf[2] = PMCRAID_IOASC_SENSE_CODE(ioasc);
2522 sense_buf[3] = PMCRAID_IOASC_SENSE_QUAL(ioasc);
2524 sense_buf[7] = 12;
2525 sense_buf[8] = 0;
2526 sense_buf[9] = 0x0A;
2527 sense_buf[10] = 0x80;
2531 sense_buf[12] = (failing_lba & 0xff000000) >> 24;
2532 sense_buf[13] = (failing_lba & 0x00ff0000) >> 16;
2533 sense_buf[14] = (failing_lba & 0x0000ff00) >> 8;
2534 sense_buf[15] = failing_lba & 0x000000ff;
2538 sense_buf[16] = (failing_lba & 0xff000000) >> 24;
2539 sense_buf[17] = (failing_lba & 0x00ff0000) >> 16;
2540 sense_buf[18] = (failing_lba & 0x0000ff00) >> 8;
2541 sense_buf[19] = failing_lba & 0x000000ff;
2543 sense_buf[0] = 0x70;
2544 sense_buf[2] = PMCRAID_IOASC_SENSE_KEY(ioasc);
2545 sense_buf[12] = PMCRAID_IOASC_SENSE_CODE(ioasc);
2546 sense_buf[13] = PMCRAID_IOASC_SENSE_QUAL(ioasc);
2553 sense_buf[0] |= 0x80;
2554 sense_buf[3] = (failing_lba >> 24) & 0xff;
2555 sense_buf[4] = (failing_lba >> 16) & 0xff;
2556 sense_buf[5] = (failing_lba >> 8) & 0xff;
2557 sense_buf[6] = failing_lba & 0xff;
2560 sense_buf[7] = 6; /* additional length */