All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dave Jones <davej@redhat.com>
To: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Cc: nab@daterainc.com
Subject: Re: target: Add support for EXTENDED_COPY copy offload emulation
Date: Fri, 13 Sep 2013 16:43:54 -0400	[thread overview]
Message-ID: <20130913204354.GA20782@redhat.com> (raw)
In-Reply-To: <20130913000121.C53A6660D4A@gitolite.kernel.org>

On Fri, Sep 13, 2013 at 12:01:21AM +0000, Linux Kernel wrote:
 > Gitweb:     http://git.kernel.org/linus/;a=commit;h=cbf031f425fd0b30ff10ba83b612753189a6bbbf
 > Commit:     cbf031f425fd0b30ff10ba83b612753189a6bbbf
 > Parent:     89c12cc925a7d0982dc53b743a42108acc76aef4
 > Author:     Nicholas Bellinger <nab@daterainc.com>
 > AuthorDate: Tue Aug 20 15:38:55 2013 -0700
 > Committer:  Nicholas Bellinger <nab@linux-iscsi.org>
 > CommitDate: Tue Sep 10 16:48:43 2013 -0700
 > 
 >     target: Add support for EXTENDED_COPY copy offload emulation

...

 > +static int target_xcopy_parse_segdesc_02(struct se_cmd *se_cmd, struct xcopy_op *xop,
 > +					unsigned char *p)
 > +{
 > +	unsigned char *desc = p;
 > +	int dc = (desc[1] & 0x02);
 > +	unsigned short desc_len;
 > +
 > +	desc_len = get_unaligned_be16(&desc[2]);
 > +	if (desc_len != 0x18) {
 > +		pr_err("XCOPY segment desc 0x02: Illegal desc_len:"
 > +				" %hu\n", desc_len);
 > +		return -EINVAL;
 > +	}
 > +
 > +	xop->stdi = get_unaligned_be16(&desc[4]);
 > +	xop->dtdi = get_unaligned_be16(&desc[6]);
 > +	pr_debug("XCOPY seg desc 0x02: desc_len: %hu stdi: %hu dtdi: %hu, DC: %d\n",
 > +		desc_len, xop->stdi, xop->dtdi, dc);
 > +
 > +	xop->nolb = get_unaligned_be16(&desc[10]);
 > +	xop->src_lba = get_unaligned_be64(&desc[12]);
 > +	xop->dst_lba = get_unaligned_be64(&desc[20]);
 > +	pr_debug("XCOPY seg desc 0x02: nolb: %hu src_lba: %llu dst_lba: %llu\n",
 > +		xop->nolb, (unsigned long long)xop->src_lba,
 > +		(unsigned long long)xop->dst_lba);
 > +
 > +	if (dc != 0) {
 > +		xop->dbl = (desc[29] << 16) & 0xff;
 > +		xop->dbl |= (desc[30] << 8) & 0xff;
 > +		xop->dbl |= desc[31] & 0xff;
 > +
 > +		pr_debug("XCOPY seg desc 0x02: DC=1 w/ dbl: %u\n", xop->dbl);
 > +	}
 > +	return 0;
 > +}

Coverity picked up a new warning in this code.
It notes that (desc[30] << 8) & 0xff is always zero.

Did you want

 	xop->dbl = (desc[29] >> 16) & 0xff;

instead maybe ?

The << 16 looks suspect too, though it didn't warn on that.

	Dave



       reply	other threads:[~2013-09-13 20:44 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20130913000121.C53A6660D4A@gitolite.kernel.org>
2013-09-13 20:43 ` Dave Jones [this message]
2013-09-16 20:50   ` target: Add support for EXTENDED_COPY copy offload emulation Nicholas A. Bellinger

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=20130913204354.GA20782@redhat.com \
    --to=davej@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nab@daterainc.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 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.