Re: [PATCH] netpoll: Fix carrier detection for drivers that areusing phylib

From: Linus Torvalds
Date: Wed Jul 08 2009 - 20:03:15 EST




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 linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/