* [PATCH 1/1] mmc: remove redundant irq disabling
@ 2011-03-25 8:47 John Ogness
2011-03-25 13:22 ` Chris Ball
0 siblings, 1 reply; 2+ messages in thread
From: John Ogness @ 2011-03-25 8:47 UTC (permalink / raw)
To: Chris Ball
Cc: Jens Axboe, Andrew Morton, Christoph Hellwig, Adrian Hunter,
linux-mmc, linux-kernel
From: John Ogness <john.ogness@linutronix.de>
There is no need to disable irq's when using the sg_copy_*_buffer()
functions because those functions do that already. There are also
no races for the mm_queue struct here that would require the irq's
to be disabled before calling sg_copy_*_buffer().
Signed-off-by: John Ogness <john.ogness@linutronix.de>
---
Patch against linux-next-20110324.
drivers/mmc/card/queue.c | 8 --------
1 files changed, 0 insertions(+), 8 deletions(-)
diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c
index 2ae7275..c07322c 100644
--- a/drivers/mmc/card/queue.c
+++ b/drivers/mmc/card/queue.c
@@ -343,18 +343,14 @@ unsigned int mmc_queue_map_sg(struct mmc_queue *mq)
*/
void mmc_queue_bounce_pre(struct mmc_queue *mq)
{
- unsigned long flags;
-
if (!mq->bounce_buf)
return;
if (rq_data_dir(mq->req) != WRITE)
return;
- local_irq_save(flags);
sg_copy_to_buffer(mq->bounce_sg, mq->bounce_sg_len,
mq->bounce_buf, mq->sg[0].length);
- local_irq_restore(flags);
}
/*
@@ -363,17 +359,13 @@ void mmc_queue_bounce_pre(struct mmc_queue *mq)
*/
void mmc_queue_bounce_post(struct mmc_queue *mq)
{
- unsigned long flags;
-
if (!mq->bounce_buf)
return;
if (rq_data_dir(mq->req) != READ)
return;
- local_irq_save(flags);
sg_copy_from_buffer(mq->bounce_sg, mq->bounce_sg_len,
mq->bounce_buf, mq->sg[0].length);
- local_irq_restore(flags);
}
--
1.7.2.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 1/1] mmc: remove redundant irq disabling
2011-03-25 8:47 [PATCH 1/1] mmc: remove redundant irq disabling John Ogness
@ 2011-03-25 13:22 ` Chris Ball
0 siblings, 0 replies; 2+ messages in thread
From: Chris Ball @ 2011-03-25 13:22 UTC (permalink / raw)
To: John Ogness; +Cc: Jens Axboe, linux-mmc
Hi John,
On Fri, Mar 25 2011, John Ogness wrote:
> From: John Ogness <john.ogness@linutronix.de>
>
> There is no need to disable irq's when using the sg_copy_*_buffer()
> functions because those functions do that already. There are also
> no races for the mm_queue struct here that would require the irq's
> to be disabled before calling sg_copy_*_buffer().
>
> Signed-off-by: John Ogness <john.ogness@linutronix.de>
> ---
> Patch against linux-next-20110324.
>
> drivers/mmc/card/queue.c | 8 --------
> 1 files changed, 0 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c
> index 2ae7275..c07322c 100644
> --- a/drivers/mmc/card/queue.c
> +++ b/drivers/mmc/card/queue.c
> @@ -343,18 +343,14 @@ unsigned int mmc_queue_map_sg(struct mmc_queue *mq)
> */
> void mmc_queue_bounce_pre(struct mmc_queue *mq)
> {
> - unsigned long flags;
> -
> if (!mq->bounce_buf)
> return;
>
> if (rq_data_dir(mq->req) != WRITE)
> return;
>
> - local_irq_save(flags);
> sg_copy_to_buffer(mq->bounce_sg, mq->bounce_sg_len,
> mq->bounce_buf, mq->sg[0].length);
> - local_irq_restore(flags);
> }
>
> /*
> @@ -363,17 +359,13 @@ void mmc_queue_bounce_pre(struct mmc_queue *mq)
> */
> void mmc_queue_bounce_post(struct mmc_queue *mq)
> {
> - unsigned long flags;
> -
> if (!mq->bounce_buf)
> return;
>
> if (rq_data_dir(mq->req) != READ)
> return;
>
> - local_irq_save(flags);
> sg_copy_from_buffer(mq->bounce_sg, mq->bounce_sg_len,
> mq->bounce_buf, mq->sg[0].length);
> - local_irq_restore(flags);
> }
Thanks, I'll push this to mmc-next for .40.
- Chris.
--
Chris Ball <cjb@laptop.org> <http://printf.net/>
One Laptop Per Child
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-03-25 13:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-25 8:47 [PATCH 1/1] mmc: remove redundant irq disabling John Ogness
2011-03-25 13:22 ` Chris Ball
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox