All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
To: "Stuart_Hayes@dell.com" <Stuart_Hayes@dell.com>
Cc: axboe@suse.de, linux-ide@vger.kernel.org
Subject: Re: [PATCH 2.6.11.6] ide-scsi: kmap scatter/gather before doing PIO
Date: Mon, 2 May 2005 17:46:25 +0200	[thread overview]
Message-ID: <58cb370e050502084657287238@mail.gmail.com> (raw)
In-Reply-To: <7A8F92187EF7A249BF847F1BF4903C040AFCD0@ausx2kmpc103.aus.amer.dell.com>

Hi,

On 5/2/05, Stuart_Hayes@dell.com <Stuart_Hayes@dell.com> wrote:
> Jens Axboe wrote:
> > On Fri, Apr 29 2005, Stuart_Hayes@Dell.com wrote:
> >>> With more testing, I've discovered a problem with thin patch--I used
> >>> the "KM_USER0" window for kmap_atomic(), but that's apparently not
> >>> safe to use in an interrupt handler, because there are places in the
> >>> kernel where KM_USER0 is used without masking interrupts (see
> >>> include/linux/highmem.h for several examples).  This patch is
> >>> identical to the previous one I sent in, except it uses the KM_IRQ0
> >>> window, which I verified is not used anywhere without IRQs masked.
> >>>
> >>> This patch is against 2.6.11.7... the latest kernel on kernel.org
> >>> didn't yet have the previous patch I submitted.  If it would be more
> >>> useful, I can make this patch against an ide-scsi.c that already has
> >>> my previous patch applied--I wasn't sure which would be better.
> >
> > (you should inline the patch so one can comment on it...)
> >
> > The IO code typically uses the BIO defines for this.
> >
> > diff -purN linux-2.6.11.7/drivers/scsi/ide-scsi.c
> > linux-2.6.11.7mods/drivers/scsi/ide-scsi.c ---
> > linux-2.6.11.7/drivers/scsi/ide-scsi.c        2005-04-07
> 14:57:46.000000000
> > -0400 +++ linux-2.6.11.7mods/drivers/scsi/ide-scsi.c  2005-04-29
> >       11:46:55.000000000 -0400 @@ -143,6 +143,9 @@ static void
> >       idescsi_input_buffers (ide_d  { int count; char *buf;
> > +#ifdef CONFIG_HIGHMEM
> > +     unsigned long flags;
> > +#endif
> >
> >       while (bcount) {
> >               if (pc->sg - (struct scatterlist *)
> pc->scsi_cmd->request_buffer >
> >                       pc->scsi_cmd->use_sg) { @@ -151,8 +154,15 @@
> static void
> >               idescsi_input_buffers (ide_d return; }
> >               count = min(pc->sg->length - pc->b_count, bcount);
> > -             buf = page_address(pc->sg->page) + pc->sg->offset;
> > +#ifdef CONFIG_HIGHMEM
> > +             local_irq_save(flags);
> > +#endif
> >
> > This is just aweful, don't add tons of ifdefs. If you must
> > differentiate, just do something ala:
> >
> >         if (PageHighMem(page)) {
> >                 save interrupts
> >                 buf = kmap
> >         } else
> >                 buf = page_address(xxx).
> >
> > and so on. But why are you still doing it this way? Did we not agree
> > that adding a host template no-high-mem defines was way better??
> 
> The ifdefs were at Bart's request.

Yep, ifdefs are my fault.

Thanks for PageHighMem() hint Jens, we should use it also for ide-taskfile.c.

> The reason I went back to the kmap_atomic() fix instead of adding a
> no-high-mem flag in the host is that I couldn't get James to accept that

What is no-high-mem flag?

> patch, while this one is ide-scsi only, and Bart did accept it.  And, to
> be honest, I wasn't really sure why the kmap_atomic() fix was inferior.
> 
> But I'd certainly defer to your (or Bart's) judgment on those things--
> you guys have a lot more experience than me with the kernel.  I am
> hesitant to change the "ifdef"s to "if"s at this point, since Bart
> already accepted it (previously) with the ifdefs, but I'd be more than
> happy to change it if he agrees.

I agree ;-)

Cheers,
Bartlomiej

  reply	other threads:[~2005-05-02 15:46 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-05-02 15:17 [PATCH 2.6.11.6] ide-scsi: kmap scatter/gather before doing PIO Stuart_Hayes
2005-05-02 15:46 ` Bartlomiej Zolnierkiewicz [this message]
2005-05-02 16:01   ` Jens Axboe
2005-05-02 16:01 ` Jens Axboe
  -- strict thread matches above, loose matches on Subject: below --
2005-05-02 20:03 Stuart_Hayes
2005-05-02 15:56 Stuart_Hayes
2005-04-29 15:53 Stuart_Hayes
2005-05-01 15:49 ` Jens Axboe
2005-04-29 15:45 Stuart_Hayes
2005-04-05 21:08 Stuart_Hayes
2005-04-05 21:41 ` Bartlomiej Zolnierkiewicz
2005-04-05 19:12 Stuart_Hayes
2005-04-05 20:27 ` Bartlomiej Zolnierkiewicz

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=58cb370e050502084657287238@mail.gmail.com \
    --to=bzolnier@gmail.com \
    --cc=Stuart_Hayes@dell.com \
    --cc=axboe@suse.de \
    --cc=linux-ide@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.