From: Douglas Gilbert <dougg@torque.net>
To: James Bottomley <James.Bottomley@SteelEye.com>
Cc: SCSI Mailing List <linux-scsi@vger.kernel.org>, bunk@fs.tum.de
Subject: Re: Is scsi_cmnd::underflow still useful?
Date: Tue, 13 Jul 2004 18:09:00 -0400 [thread overview]
Message-ID: <40F45D7C.3030903@torque.net> (raw)
In-Reply-To: <1089680114.2074.198.camel@mulgrave>
James Bottomley wrote:
> On Mon, 2004-07-12 at 14:40, Douglas Gilbert wrote:
>
>>Doesn't look like many LLDs act on scsi_cmnd::underflow.
>>Seems to me that scsi_cmnd::resid is a more general
>>replacement.
>
>
> well, I know I suggested a recent use of it to the USB people , so I
> don't think it's entirely unused. resid can't be a replacement because
> they mean different things:
>
> resid - number of bytes left over after a transaction
> underflow - driver must return error if less than this amount
> transferred.
James,
Here is a code snippet from one of the few LLDs that acts on
scsi_cmnd::underflow: qla2xxx/qla_isr.c . It shows
the relationship between request_buflen, resid and underflow:
if ((unsigned)(cp->request_bufflen - resid) <
cp->underflow) {
qla_printk(KERN_INFO, ha,
"scsi(%ld:%d:%d:%d): Mid-layer underflow "
"detected (%x of %x bytes)...returning "
"error status.\n",
ha->host_no, b, t, l, resid,
cp->request_bufflen);
cp->result = DID_ERROR << 16;
break;
}
Rather than ask the LLD report an error (and leave the upper
layers wondering if any data was sent or received) wouldn't
it be better to allow the issuer of the scsi_cmnd object to
decide whether the response was deficient (based on resid)?
I am responsible for resid being added (in the lk 2.3 series)
at the prompting of Joerg Schilling. The scsi_cmnd::underflow
parameter was not of use to him, even if I exposed it to
applications via sg_io_hdr. resid is a "steal" from CAM and
the only complaints I have received about it are concerning
LLDs that do _not_ implement it.
Doug Gilbert
prev parent reply other threads:[~2004-07-13 22:09 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-07-12 19:40 Is scsi_cmnd::underflow still useful? Douglas Gilbert
2004-07-13 0:55 ` James Bottomley
2004-07-13 5:09 ` Matthew Dharm
2004-07-13 22:09 ` Douglas Gilbert [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=40F45D7C.3030903@torque.net \
--to=dougg@torque.net \
--cc=James.Bottomley@SteelEye.com \
--cc=bunk@fs.tum.de \
--cc=linux-scsi@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox