[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <200802280001.43316.bzolnier@gmail.com>
Date: Thu, 28 Feb 2008 00:01:43 +0100
From: Bartlomiej Zolnierkiewicz <bzolnier@...il.com>
To: petkovbb@...il.com
Cc: linux-kernel@...r.kernel.org, linux-ide@...r.kernel.org
Subject: Re: [PATCH 4/5] ide-cd: shorten lines longer than 80 columns
On Wednesday 27 February 2008, Borislav Petkov wrote:
> On Wed, Feb 27, 2008 at 10:18:50PM +0100, Bartlomiej Zolnierkiewicz wrote:
> > On Wednesday 27 February 2008, Borislav Petkov wrote:
> > > Signed-off-by: Borislav Petkov <petkovbb@...il.com>
> >
> > interdiff for the merged version
> >
[...]
> > diff -u b/drivers/ide/ide-cd.c b/drivers/ide/ide-cd.c
> > --- b/drivers/ide/ide-cd.c
> > +++ b/drivers/ide/ide-cd.c
> > @@ -510,7 +510,7 @@
> > default:
> > if (!(rq->cmd_flags & REQ_QUIET))
> > printk(KERN_INFO "ide-cd: cmd 0x%x timed out\n",
> > - rq->cmd[0]);
> > + rq->cmd[0]);
>
> why do you push the rq->cmd[0] thingy back here. Shouldn't it be aligned
> with the opening brace as the zillion others so far?
IDE is quite consistent with the above style but maybe it is just me being
used to it. I could revert this change if you feel strong about it...
> > @@ -819,8 +819,8 @@
> > static void restore_request(struct request *rq)
> > {
> > if (rq->buffer != bio_data(rq->bio)) {
> > - sector_t n = (rq->buffer - (char *) bio_data(rq->bio)) /
> > - SECTOR_SIZE;
> > + sector_t n =
> > + (rq->buffer - (char *)bio_data(rq->bio)) / SECTOR_SIZE;
>
> i must say, lines like this one always look ugly, no matter the formatting
> tricks.
For this case there is a simple solution: fix ide-cd to use hwif->sg_table
instead of having it to walk rq->bio's and the whole function will vanish. ;-)
[ IOW We are putting way too much time into these coding style fixes and as
the old code is replaced with the new one the coding style improves itself. ]
Thanks,
Bart
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists