From: James Bottomley <James.Bottomley@HansenPartnership.com>
To: Roel Kluin <12o3l@tiscali.nl>
Cc: ballabio_dario@emc.com, linux-scsi@vger.kernel.org,
lkml <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH][drivers/scsi/u14-34f.c] duplicate test 'SCpnt->sc_data_direction == DMA_FROM_DEVICE'
Date: Wed, 06 Feb 2008 11:45:39 -0600 [thread overview]
Message-ID: <1202319939.3112.89.camel@localhost.localdomain> (raw)
In-Reply-To: <47A7937C.7040701@tiscali.nl>
On Mon, 2008-02-04 at 23:36 +0100, Roel Kluin wrote:
> It should be like this I guess? this patch was not yet tested, please
> confirm.
> --
> Note the duplicate test 'SCpnt->sc_data_direction == DMA_FROM_DEVICE'
>
> from Documentation/DMA-API.txt:
> DMA_TO_DEVICE = PCI_DMA_TODEVICE data is going from the
> memory to the device
> DMA_FROM_DEVICE = PCI_DMA_FROMDEVICE data is coming from
> the device to the
>
> Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
> ---
> diff --git a/drivers/scsi/u14-34f.c b/drivers/scsi/u14-34f.c
> index 662c004..1e704f9 100644
> --- a/drivers/scsi/u14-34f.c
> +++ b/drivers/scsi/u14-34f.c
> @@ -1208,15 +1208,15 @@ static void scsi_to_dev_dir(unsigned int i, unsigned int j) {
> };
>
> struct mscp *cpp;
> struct scsi_cmnd *SCpnt;
>
> cpp = &HD(j)->cp[i]; SCpnt = cpp->SCpnt;
>
> - if (SCpnt->sc_data_direction == DMA_FROM_DEVICE) {
> + if (SCpnt->sc_data_direction == DMA_TO_DEVICE) {
> cpp->xdir = DTD_IN;
> return;
> }
> else if (SCpnt->sc_data_direction == DMA_FROM_DEVICE) {
> cpp->xdir = DTD_OUT;
> return;
> }
Well spotted, this is definitely a huge bug in the driver.
However, I think on closer examination that DTD_IN actually means
transfer from device to host, so DMA_FROM_DEVICE is correct for that
case. It should be DMA_TO_DEVICE in the else if() piece.
Could you correct and resend the patch and I'll apply it.
Thanks,
James
next prev parent reply other threads:[~2008-02-06 17:45 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-02-04 22:36 [PATCH][drivers/scsi/u14-34f.c] duplicate test 'SCpnt->sc_data_direction == DMA_FROM_DEVICE' Roel Kluin
2008-02-05 8:09 ` Ballabio_Dario
2008-02-05 8:09 ` Ballabio_Dario
2008-02-05 8:29 ` Roel Kluin
2008-02-06 17:45 ` James Bottomley [this message]
2008-02-06 18:21 ` Roel Kluin
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=1202319939.3112.89.camel@localhost.localdomain \
--to=james.bottomley@hansenpartnership.com \
--cc=12o3l@tiscali.nl \
--cc=ballabio_dario@emc.com \
--cc=linux-kernel@vger.kernel.org \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.