Re: [GIT]: Networking

From: Ingo Molnar
Date: Tue Jun 16 2009 - 05:26:55 EST



* David Miller <davem@xxxxxxxxxxxxx> wrote:

> From: Ingo Molnar <mingo@xxxxxxx>
> Date: Tue, 16 Jun 2009 11:15:38 +0200
>
> > BUG: sleeping function called from invalid context at net/core/sock.c:1851
>
> This line in my tree (and Linus's) reads:
>
> if (sk->sk_lock.owned)
>
> what gives? :-)

hmmm - i have to declare the small kmemcheck annotation attached
below :-)

(kmemcheck is off in the config so it shouldnt matter)

So the line is:

might_sleep();

Lemme dig.

Ingo

diff --git a/net/core/sock.c b/net/core/sock.c
index 06e26b7..b0ba569 100644
--- a/net/core/sock.c
+++ b/net/core/sock.c
@@ -945,6 +945,8 @@ static struct sock *sk_prot_alloc(struct proto *prot, gfp_t priority,
sk = kmalloc(prot->obj_size, priority);

if (sk != NULL) {
+ kmemcheck_annotate_bitfield(sk, flags);
+
if (security_sk_alloc(sk, family, priority))
goto out_free;

--
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/