mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Michael Schmitz <schmitzmic@gmail.com>
To: Finn Thain <fthain@telegraphics.com.au>,
	"James E.J. Bottomley" <jejb@linux.ibm.com>,
	"Martin K. Petersen" <martin.petersen@oracle.com>
Cc: linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] NCR5380: Support chained sg lists
Date: Wed, 12 Jun 2019 11:47:56 +1200	[thread overview]
Message-ID: <a79e01ba-e47c-6b29-3625-29bfb7122ad8@gmail.com> (raw)
In-Reply-To: <739c214bafcb9af3f6d5037cc03f57f692966675.1560223509.git.fthain@telegraphics.com.au>

On 11/06/19 3:25 PM, Finn Thain wrote:

> My understanding is that support for chained scatterlists is to
> become mandatory for LLDs.
>
> Cc: Michael Schmitz <schmitzmic@gmail.com>
> Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
Reviewed-by: Michael Schmitz <schmitzmic@gmail.com>
> ---
>   drivers/scsi/NCR5380.c | 41 ++++++++++++++++++-----------------------
>   1 file changed, 18 insertions(+), 23 deletions(-)
>
> diff --git a/drivers/scsi/NCR5380.c b/drivers/scsi/NCR5380.c
> index d9fa9cf2fd8b..536426f25e86 100644
> --- a/drivers/scsi/NCR5380.c
> +++ b/drivers/scsi/NCR5380.c
> @@ -149,12 +149,10 @@ static inline void initialize_SCp(struct scsi_cmnd *cmd)
>   
>   	if (scsi_bufflen(cmd)) {
>   		cmd->SCp.buffer = scsi_sglist(cmd);
> -		cmd->SCp.buffers_residual = scsi_sg_count(cmd) - 1;
>   		cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
>   		cmd->SCp.this_residual = cmd->SCp.buffer->length;
>   	} else {
>   		cmd->SCp.buffer = NULL;
> -		cmd->SCp.buffers_residual = 0;
>   		cmd->SCp.ptr = NULL;
>   		cmd->SCp.this_residual = 0;
>   	}
> @@ -163,6 +161,17 @@ static inline void initialize_SCp(struct scsi_cmnd *cmd)
>   	cmd->SCp.Message = 0;
>   }
>   
> +static inline void advance_sg_buffer(struct scsi_cmnd *cmd)
> +{
> +	struct scatterlist *s = cmd->SCp.buffer;
> +
> +	if (!cmd->SCp.this_residual && s && !sg_is_last(s)) {
> +		cmd->SCp.buffer = sg_next(s);
> +		cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
> +		cmd->SCp.this_residual = cmd->SCp.buffer->length;
> +	}
> +}
> +
>   /**
>    * NCR5380_poll_politely2 - wait for two chip register values
>    * @hostdata: host private data
> @@ -1670,12 +1679,7 @@ static void NCR5380_information_transfer(struct Scsi_Host *instance)
>   			    sun3_dma_setup_done != cmd) {
>   				int count;
>   
> -				if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
> -					++cmd->SCp.buffer;
> -					--cmd->SCp.buffers_residual;
> -					cmd->SCp.this_residual = cmd->SCp.buffer->length;
> -					cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
> -				}
> +				advance_sg_buffer(cmd);
>   
>   				count = sun3scsi_dma_xfer_len(hostdata, cmd);
>   
> @@ -1725,15 +1729,11 @@ static void NCR5380_information_transfer(struct Scsi_Host *instance)
>   				 * scatter-gather list, move onto the next one.
>   				 */
>   
> -				if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
> -					++cmd->SCp.buffer;
> -					--cmd->SCp.buffers_residual;
> -					cmd->SCp.this_residual = cmd->SCp.buffer->length;
> -					cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
> -					dsprintk(NDEBUG_INFORMATION, instance, "%d bytes and %d buffers left\n",
> -					         cmd->SCp.this_residual,
> -					         cmd->SCp.buffers_residual);
> -				}
> +				advance_sg_buffer(cmd);
> +				dsprintk(NDEBUG_INFORMATION, instance,
> +					"this residual %d, sg ents %d\n",
> +					cmd->SCp.this_residual,
> +					sg_nents(cmd->SCp.buffer));
>   
>   				/*
>   				 * The preferred transfer method is going to be
> @@ -2126,12 +2126,7 @@ static void NCR5380_reselect(struct Scsi_Host *instance)
>   	if (sun3_dma_setup_done != tmp) {
>   		int count;
>   
> -		if (!tmp->SCp.this_residual && tmp->SCp.buffers_residual) {
> -			++tmp->SCp.buffer;
> -			--tmp->SCp.buffers_residual;
> -			tmp->SCp.this_residual = tmp->SCp.buffer->length;
> -			tmp->SCp.ptr = sg_virt(tmp->SCp.buffer);
> -		}
> +		advance_sg_buffer(tmp);
>   
>   		count = sun3scsi_dma_xfer_len(hostdata, tmp);
>   

      parent reply	other threads:[~2019-06-11 23:48 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-11  3:25 Finn Thain
2019-06-11  5:02 ` Michael Schmitz
2019-06-11  9:19   ` Finn Thain
2019-06-11 23:47 ` Michael Schmitz [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=a79e01ba-e47c-6b29-3625-29bfb7122ad8@gmail.com \
    --to=schmitzmic@gmail.com \
    --cc=fthain@telegraphics.com.au \
    --cc=jejb@linux.ibm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=martin.petersen@oracle.com \
    /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

all inboxes | Powered by JetHome®