From: Boaz Harrosh <bharrosh@panasas.com>
To: akpm@linux-foundation.org
Cc: James.Bottomley@HansenPartnership.com,
linux-scsi@vger.kernel.org, harvey.harrison@gmail.com
Subject: Re: [patch 10/17] scsi: gdth.c use unaligned access helpers
Date: Tue, 23 Sep 2008 10:08:17 +0300 [thread overview]
Message-ID: <48D895E1.7040705@panasas.com> (raw)
In-Reply-To: <200809222156.m8MLum2c032291@imap1.linux-foundation.org>
akpm@linux-foundation.org wrote:
> From: Harvey Harrison <harvey.harrison@gmail.com>
>
> Remove two now unnecessary local vars.
>
> [akpm@linux-foundation.org: coding-style fixes]
> Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
> Cc: Boaz Harrosh <bharrosh@panasas.com>
> Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> ---
>
> drivers/scsi/gdth.c | 23 ++++++++++-------------
> 1 file changed, 10 insertions(+), 13 deletions(-)
>
> diff -puN drivers/scsi/gdth.c~scsi-gdthc-use-unaligned-access-helpers drivers/scsi/gdth.c
> --- a/drivers/scsi/gdth.c~scsi-gdthc-use-unaligned-access-helpers
> +++ a/drivers/scsi/gdth.c
> @@ -131,6 +131,7 @@
> #include <asm/system.h>
> #include <asm/io.h>
> #include <asm/uaccess.h>
> +#include <asm/unaligned.h>
> #include <linux/spinlock.h>
> #include <linux/blkdev.h>
> #include <linux/scatterlist.h>
> @@ -2429,8 +2430,8 @@ static int gdth_fill_cache_cmd(gdth_ha_s
> {
> register gdth_cmd_str *cmdp;
> struct gdth_cmndinfo *cmndinfo = gdth_cmnd_priv(scp);
> - ulong32 cnt, blockcnt;
> - ulong64 no, blockno;
> + ulong32 blockcnt;
> + ulong64 blockno;
> int i, cmd_index, read_write, sgcnt, mode64;
>
> cmdp = ha->pccb;
> @@ -2498,19 +2499,15 @@ static int gdth_fill_cache_cmd(gdth_ha_s
>
> if (read_write) {
> if (scp->cmd_len == 16) {
> - memcpy(&no, &scp->cmnd[2], sizeof(ulong64));
> - blockno = be64_to_cpu(no);
> - memcpy(&cnt, &scp->cmnd[10], sizeof(ulong32));
> - blockcnt = be32_to_cpu(cnt);
> + blockno = get_unaligned_be64(&scp->cmnd[2]);
> + blockcnt = get_unaligned_be64(&scp->cmnd[10]);
+ blockcnt = get_unaligned_be32(&scp->cmnd[10]);
64 => 32
> } else if (scp->cmd_len == 10) {
> - memcpy(&no, &scp->cmnd[2], sizeof(ulong32));
> - blockno = be32_to_cpu(no);
> - memcpy(&cnt, &scp->cmnd[7], sizeof(ushort));
> - blockcnt = be16_to_cpu(cnt);
> + blockno = get_unaligned_be32(&scp->cmnd[2]);
> + blockcnt = get_unaligned_be16(&scp->cmnd[7]);
> } else {
> - memcpy(&no, &scp->cmnd[0], sizeof(ulong32));
> - blockno = be32_to_cpu(no) & 0x001fffffUL;
> - blockcnt= scp->cmnd[4]==0 ? 0x100 : scp->cmnd[4];
> + blockno = get_unaligned_be32(&scp->cmnd[2]);
> + blockno &= 0x001fffffUL;
> + blockcnt = scp->cmnd[4] == 0 ? 0x100 : scp->cmnd[4];
> }
> if (mode64) {
> cmdp->u.cache64.BlockNo = blockno;
> _
next prev parent reply other threads:[~2008-09-23 7:08 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-09-22 21:56 [patch 10/17] scsi: gdth.c use unaligned access helpers akpm
2008-09-23 7:08 ` Boaz Harrosh [this message]
2008-10-03 16:23 ` James Bottomley
2008-10-03 17:24 ` Harvey Harrison
2008-10-07 19:26 ` Matthew Wilcox
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=48D895E1.7040705@panasas.com \
--to=bharrosh@panasas.com \
--cc=James.Bottomley@HansenPartnership.com \
--cc=akpm@linux-foundation.org \
--cc=harvey.harrison@gmail.com \
--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