[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.LFD.2.01.0907081701050.3352@localhost.localdomain>
Date: Wed, 8 Jul 2009 17:01:14 -0700 (PDT)
From: Linus Torvalds <torvalds@...ux-foundation.org>
To: Anton Vorontsov <avorontsov@...mvista.com>
cc: Andrew Morton <akpm@...ux-foundation.org>, a.p.zijlstra@...llo.nl,
oleg@...hat.com, mingo@...e.hu, linux-kernel@...r.kernel.org,
netdev@...r.kernel.org
Subject: Re: [PATCH] netpoll: Fix carrier detection for drivers that are
using phylib
On Thu, 9 Jul 2009, Anton Vorontsov wrote:
>
> The netpoll code is using msleep() just a few lines below cond_resched(),
> so we won't make things worse. ;-)
Yeah. That function is definitely sleeping. It does things like
kmalloc(GFP_KERNEL), rtnl_lock() and synchronize_rcu() etc too, so an
added msleep() is the least of our problems.
Afaik, it's called from a bog-standard "module_init()", which happens late
enough that everything works.
In fact, I wonder if we should set SYSTEM_RUNNING much earlier - _before_
doing the whole "do_initcalls()". By then we've set up all the core stuff
and enabled interrupts, so we really _are_ running. We just don't
necessarily have drivers, filesystems etc loaded yet. But anything that
happens late enough to be an initcall should be largely considered to
be during "normal code".
(The "early_initcall" cases are special - those really do happen pretty
early).
So ACK on Anton's patch, but I wonder if we _also_ should do the
following?
Looking at the people looking at SYSTEM_RUNNING, I do note some odd cases.
Why the heck does kernel/perf_counter.c do it, for example?
Linus
---
init/main.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/init/main.c b/init/main.c
index 2c5ade7..f10d9cd 100644
--- a/init/main.c
+++ b/init/main.c
@@ -788,6 +788,7 @@ static void __init do_initcalls(void)
{
initcall_t *call;
+ system_state = SYSTEM_RUNNING;
for (call = __early_initcall_end; call < __initcall_end; call++)
do_one_initcall(*call);
@@ -839,7 +840,6 @@ static noinline int init_post(void)
free_initmem();
unlock_kernel();
mark_rodata_ro();
- system_state = SYSTEM_RUNNING;
numa_default_policy();
if (sys_open((const char __user *) "/dev/console", O_RDWR, 0) < 0)
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists