From: Andrew Morton <akpm@osdl.org>
To: Oleg Nesterov <oleg@tv-sign.ru>
Cc: Jens Axboe <axboe@suse.de>, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] sys_ioprio_set: don't disable irqs
Date: Mon, 21 Aug 2006 15:48:41 -0700 [thread overview]
Message-ID: <20060821154841.e6ea500a.akpm@osdl.org> (raw)
In-Reply-To: <20060820205034.GA5755@oleg>
On Mon, 21 Aug 2006 00:50:34 +0400
Oleg Nesterov <oleg@tv-sign.ru> wrote:
> Question: why do we need to disable irqs in exit_io_context() ?
iirc it was to prevent IRQ-context code from getting a hold on
current->io_context and then playing around with it while it's getting
freed.
In practice, a preempt_disable() there would probably suffice (ie: if this
CPU is running an ISR, it won't be running exit_io_context as well). But
local_irq_disable() is clearer, albeit more expensive.
> Why do we need ->alloc_lock to clear io_context->task ?
To prevent races against elv_unregister(), I guess.
> In other words, could you explain why the patch below is not correct.
>
> Thanks,
>
> Oleg.
>
> --- 2.6.18-rc4/block/ll_rw_blk.c~6_exit 2006-08-20 19:30:10.000000000 +0400
> +++ 2.6.18-rc4/block/ll_rw_blk.c 2006-08-20 22:34:46.000000000 +0400
> @@ -3580,25 +3580,22 @@ EXPORT_SYMBOL(put_io_context);
> /* Called by the exitting task */
> void exit_io_context(void)
> {
> - unsigned long flags;
> struct io_context *ioc;
> struct cfq_io_context *cic;
>
> - local_irq_save(flags);
> task_lock(current);
> ioc = current->io_context;
> current->io_context = NULL;
> - ioc->task = NULL;
> task_unlock(current);
> - local_irq_restore(flags);
>
> + ioc->task = NULL;
> if (ioc->aic && ioc->aic->exit)
> ioc->aic->exit(ioc->aic);
> if (ioc->cic_root.rb_node != NULL) {
> cic = rb_entry(rb_first(&ioc->cic_root), struct cfq_io_context, rb_node);
> cic->exit(ioc);
> }
> -
> +
> put_io_context(ioc);
> }
>
next prev parent reply other threads:[~2006-08-21 22:48 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-08-20 20:43 [PATCH] sys_ioprio_set: don't disable irqs Oleg Nesterov
2006-08-20 20:50 ` Oleg Nesterov
2006-08-21 22:48 ` Andrew Morton [this message]
2006-08-22 17:22 ` [PATCH] elv_unregister: fix possible crash on module unload Oleg Nesterov
2006-08-22 13:05 ` Jens Axboe
2006-08-22 17:57 ` [PATCH] sys_ioprio_set: don't disable irqs Oleg Nesterov
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=20060821154841.e6ea500a.akpm@osdl.org \
--to=akpm@osdl.org \
--cc=axboe@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=oleg@tv-sign.ru \
/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.