[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20070629122906.GA13035@elte.hu>
Date: Fri, 29 Jun 2007 14:29:06 +0200
From: Ingo Molnar <mingo@...e.hu>
To: Alexey Kuznetsov <kuznet@....inr.ac.ru>
Cc: Jeff Garzik <jeff@...zik.org>,
Linus Torvalds <torvalds@...ux-foundation.org>,
Steven Rostedt <rostedt@...dmis.org>,
LKML <linux-kernel@...r.kernel.org>,
Andrew Morton <akpm@...ux-foundation.org>,
Thomas Gleixner <tglx@...utronix.de>,
Christoph Hellwig <hch@...radead.org>,
john stultz <johnstul@...ibm.com>,
Oleg Nesterov <oleg@...sign.ru>,
"Paul E. McKenney" <paulmck@...ux.vnet.ibm.com>,
Dipankar Sarma <dipankar@...ibm.com>,
"David S. Miller" <davem@...emloft.net>, matthew.wilcox@...com
Subject: Re: [RFC PATCH 0/6] Convert all tasklets to workqueues
* Alexey Kuznetsov <kuznet@....inr.ac.ru> wrote:
> > also, the "be afraid of the hardirq or the process context" mantra
> > is overblown as well. If something is too heavy for a hardirq, _it's
> > too heavy for a tasklet too_. Most hardirqs are (or should be)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> > running with interrupts enabled, which makes their difference to
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> > softirqs miniscule.
^^^^^^^^^^^^^^^^^^
>
> Incorrect.
>
> The difference between softirqs and hardirqs lays not in their
> "heavyness". It is in reentrancy protection, which has to be done with
> local_irq_disable(), unless networking is not isolated from hardirqs.
i know that pretty well ;)
> That's all. Networking is too hairy to allow to be executed with
> disabled hardirqs. And moving this hairyiness to process context
> requires <irony mode> a little </> more efforts than conversion
> tasklets to work queues.
as i said above (see the underlined sentence), hardirq contexts already
run just fine with hardirqs enabled. So your dismissal of executing that
'hairy' bit in hardirq context is not that automatically true as you
seem to assume i think.
also, network softirq locking dependencies arent all that magic or
complex either: they do not operate on sockets that are already locked
by a user context, they are per CPU and they are not preempted by
'themselves', nor are they preempted by certain other softirqs (such as
they are not preempted by the timer softirq). Am i missing some point of
yours?
Ingo
-
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