-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 77166 b: refs/heads/master c: 366ca51 h: refs/heads/master v: v3
- Loading branch information
James Bottomley
authored and
James Bottomley
committed
Jan 25, 2008
1 parent
bf1f9f0
commit f1f2d79
Showing
5 changed files
with
45 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 1292500b159c00a8fece072b004f154e6fda9f48 | ||
refs/heads/master: 366ca51f30de1cbb5b356c70b7bb22051c558e41 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#include <linux/kernel.h> | ||
#include <scsi/sas.h> | ||
#include <scsi/libsas.h> | ||
|
||
/* fill task_status_struct based on SSP response frame */ | ||
void sas_ssp_task_response(struct device *dev, struct sas_task *task, | ||
struct ssp_response_iu *iu) | ||
{ | ||
struct task_status_struct *tstat = &task->task_status; | ||
|
||
tstat->resp = SAS_TASK_COMPLETE; | ||
|
||
if (iu->datapres == 0) | ||
tstat->stat = iu->status; | ||
else if (iu->datapres == 1) | ||
tstat->stat = iu->resp_data[3]; | ||
else if (iu->datapres == 2) { | ||
tstat->stat = SAM_CHECK_COND; | ||
tstat->buf_valid_size = | ||
min_t(int, SAS_STATUS_BUF_SIZE, | ||
be32_to_cpu(iu->sense_data_len)); | ||
memcpy(tstat->buf, iu->sense_data, tstat->buf_valid_size); | ||
|
||
if (iu->status != SAM_CHECK_COND) | ||
dev_printk(KERN_WARNING, dev, | ||
"dev %llx sent sense data, but " | ||
"stat(%x) is not CHECK CONDITION\n", | ||
SAS_ADDR(task->dev->sas_addr), | ||
iu->status); | ||
} | ||
else | ||
/* when datapres contains corrupt/unknown value... */ | ||
tstat->stat = SAM_CHECK_COND; | ||
} | ||
EXPORT_SYMBOL_GPL(sas_ssp_task_response); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters