From: Malahal Naineni <malahal@us.ibm.com>
To: jaxboe@fusionio.com, dm-devel@redhat.com, linux-scsi@vger.kernel.org
Subject: Re: [PATCH] block: set the bounce_pfn to the actual DMA limit rather than to max memory
Date: Wed, 22 Sep 2010 16:06:32 -0700 [thread overview]
Message-ID: <20100922230632.GA7478@us.ibm.com> (raw)
In-Reply-To: <c9516154fabc03112353.1285107750@malahal>
Jens, any comments on this patch?
Thanks, Malahal.
Malahal Naineni [malahal@us.ibm.com] wrote:
> The bounce_pfn of the request queue in 64 bit systems is set to the
> current max_low_pfn. Adding more memory later makes this incorrect.
> Memory allocated beyond this boot time max_low_pfn appear to require
> bounce buffers (bounce buffers are actually not allocated but used in
> calculating segments that may result in "over max segments limit"
> errors).
>
> Signed-off-by: Malahal Naineni (malahal@us.ibm.com)
>
> diff -r 09daf852c1c5 -r c9516154fabc block/blk-settings.c
> --- a/block/blk-settings.c Thu Sep 09 12:10:43 2010 -0700
> +++ b/block/blk-settings.c Mon Sep 13 10:15:24 2010 -0700
> @@ -214,16 +214,14 @@ void blk_queue_bounce_limit(struct reque
> */
> if (b_pfn < (min_t(u64, 0xffffffffUL, BLK_BOUNCE_HIGH) >> PAGE_SHIFT))
> dma = 1;
> - q->limits.bounce_pfn = max_low_pfn;
> #else
> if (b_pfn < blk_max_low_pfn)
> dma = 1;
> +#endif
> q->limits.bounce_pfn = b_pfn;
> -#endif
> if (dma) {
> init_emergency_isa_pool();
> q->limits.bounce_gfp = GFP_NOIO | GFP_DMA;
> - q->limits.bounce_pfn = b_pfn;
> }
> }
> EXPORT_SYMBOL(blk_queue_bounce_limit);
> --
> To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2010-09-22 23:06 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-21 22:22 [PATCH] block: set the bounce_pfn to the actual DMA limit rather than to max memory Malahal Naineni
2010-09-22 23:06 ` Malahal Naineni [this message]
2010-09-24 13:58 ` Jens Axboe
2010-09-24 17:05 ` Malahal Naineni
2010-09-24 18:28 ` Jens Axboe
2010-09-24 19:20 ` Malahal Naineni
2010-09-24 19:26 ` Jens Axboe
2010-10-01 2:30 ` Malahal Naineni
2010-10-01 12:46 ` Jens Axboe
-- strict thread matches above, loose matches on Subject: below --
2010-09-28 22:13 Luck, Tony
2010-09-28 22:59 ` Malahal Naineni
2010-09-28 23:40 ` Luck, Tony
2010-09-29 0:42 ` Malahal Naineni
2010-09-29 4:47 ` Luck, Tony
2010-09-29 5:55 ` Malahal Naineni
2010-09-29 16:00 ` Luck, Tony
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=20100922230632.GA7478@us.ibm.com \
--to=malahal@us.ibm.com \
--cc=dm-devel@redhat.com \
--cc=jaxboe@fusionio.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 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.