diff options
author | Dan Williams <dan.j.williams@intel.com> | 2011-06-16 16:59:56 -0700 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2011-07-03 04:04:51 -0700 |
commit | e9bf709564e90abea25ca7aeae8c3de5cc6468d7 (patch) | |
tree | e4569a311fd0181109ad7b265425a74af2a41553 /drivers/scsi/isci/request.h | |
parent | ddcc7e347a891937be65358b43f40b7f81185f8f (diff) | |
download | op-kernel-dev-e9bf709564e90abea25ca7aeae8c3de5cc6468d7.zip op-kernel-dev-e9bf709564e90abea25ca7aeae8c3de5cc6468d7.tar.gz |
isci: fix support for arbitrarily large smp requests
Instead of duplicating the smp request buffer reuse the one provided by
libsas. This future proofs the driver to support arbitrarily large smp
requests, and shrinks the request structure size by ~700 bytes.
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/scsi/isci/request.h')
-rw-r--r-- | drivers/scsi/isci/request.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/scsi/isci/request.h b/drivers/scsi/isci/request.h index 324fb7b..7c8b59a 100644 --- a/drivers/scsi/isci/request.h +++ b/drivers/scsi/isci/request.h @@ -244,7 +244,6 @@ struct scic_sds_request { } ssp; struct { - struct smp_req cmd; struct smp_resp rsp; } smp; |