Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
sas_task.c
Go to the documentation of this file.
1 #include <linux/kernel.h>
2 #include <linux/export.h>
3 #include <scsi/sas.h>
4 #include <scsi/libsas.h>
5 
6 /* fill task_status_struct based on SSP response frame */
8  struct ssp_response_iu *iu)
9 {
10  struct task_status_struct *tstat = &task->task_status;
11 
12  tstat->resp = SAS_TASK_COMPLETE;
13 
14  if (iu->datapres == 0)
15  tstat->stat = iu->status;
16  else if (iu->datapres == 1)
17  tstat->stat = iu->resp_data[3];
18  else if (iu->datapres == 2) {
20  tstat->buf_valid_size =
22  be32_to_cpu(iu->sense_data_len));
23  memcpy(tstat->buf, iu->sense_data, tstat->buf_valid_size);
24 
25  if (iu->status != SAM_STAT_CHECK_CONDITION)
26  dev_printk(KERN_WARNING, dev,
27  "dev %llx sent sense data, but "
28  "stat(%x) is not CHECK CONDITION\n",
29  SAS_ADDR(task->dev->sas_addr),
30  iu->status);
31  }
32  else
33  /* when datapres contains corrupt/unknown value... */
35 }
37