All of lore.kernel.org
 help / color / mirror / Atom feed
* Some sleeping function called from invalid context
@ 2005-04-05  9:35 Marcel Holtmann
  2005-04-05 11:13 ` Arnaldo Carvalho de Melo
  0 siblings, 1 reply; 4+ messages in thread
From: Marcel Holtmann @ 2005-04-05  9:35 UTC (permalink / raw)
  To: Network Development Mailing List

Hi,

while testing the latest kernel from the Bitkeeper repository, I got
some sleeping functions called from invalid context:

Freeing unused kernel memory: 180k freed
Debug: sleeping function called from invalid context at mm/slab.c:2090
in_atomic():1, irqs_disabled():0
 [<c0119936>] __might_sleep+0xa6/0xb0
 [<c014ab93>] kmem_cache_alloc+0x73/0x80
 [<c0149c0e>] kmem_cache_create+0xfe/0x630
 [<c026994d>] proto_register+0x9d/0xc0
 [<f88c901c>] af_unix_init+0x1c/0x7a [unix]
 [<c0139d62>] sys_init_module+0x1b2/0x290
 [<c0103025>] syscall_call+0x7/0xb
NET: Registered protocol family 1

Debug: sleeping function called from invalid context at mm/slab.c:2090
in_atomic():1, irqs_disabled():0
 [<c0119936>] __might_sleep+0xa6/0xb0
 [<c014ab93>] kmem_cache_alloc+0x73/0x80
 [<c0149c0e>] kmem_cache_create+0xfe/0x630
 [<c0115bed>] wake_up_process+0x1d/0x30
 [<c0126a50>] free_uid+0x20/0x90
 [<c026994d>] proto_register+0x9d/0xc0
 [<f94a70b9>] inet6_init+0x19/0x200 [ipv6]
 [<c0139d62>] sys_init_module+0x1b2/0x290
 [<c0103025>] syscall_call+0x7/0xb
NET: Registered protocol family 10

Regards

Marcel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Some sleeping function called from invalid context
  2005-04-05  9:35 Some sleeping function called from invalid context Marcel Holtmann
@ 2005-04-05 11:13 ` Arnaldo Carvalho de Melo
  2005-04-05 12:18   ` Arnaldo Carvalho de Melo
  0 siblings, 1 reply; 4+ messages in thread
From: Arnaldo Carvalho de Melo @ 2005-04-05 11:13 UTC (permalink / raw)
  To: Marcel Holtmann; +Cc: Network Development Mailing List

On Apr 5, 2005 6:35 AM, Marcel Holtmann <marcel@holtmann.org> wrote:
> Hi,
> 
> while testing the latest kernel from the Bitkeeper repository, I got
> some sleeping functions called from invalid context:
> 
> Freeing unused kernel memory: 180k freed
> Debug: sleeping function called from invalid context at mm/slab.c:2090
> in_atomic():1, irqs_disabled():0
>  [<c0119936>] __might_sleep+0xa6/0xb0
>  [<c014ab93>] kmem_cache_alloc+0x73/0x80
>  [<c0149c0e>] kmem_cache_create+0xfe/0x630
>  [<c026994d>] proto_register+0x9d/0xc0
>  [<f88c901c>] af_unix_init+0x1c/0x7a [unix]
>  [<c0139d62>] sys_init_module+0x1b2/0x290
>  [<c0103025>] syscall_call+0x7/0xb
> NET: Registered protocol family 1

Damn, thanks for reporting, looking at it now.

- Arnaldo

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Some sleeping function called from invalid context
  2005-04-05 11:13 ` Arnaldo Carvalho de Melo
@ 2005-04-05 12:18   ` Arnaldo Carvalho de Melo
  2005-04-05 18:11     ` Arnaldo Carvalho de Melo
  0 siblings, 1 reply; 4+ messages in thread
From: Arnaldo Carvalho de Melo @ 2005-04-05 12:18 UTC (permalink / raw)
  To: Marcel Holtmann; +Cc: Network Development Mailing List

On Apr 5, 2005 8:13 AM, Arnaldo Carvalho de Melo <arnaldo.melo@gmail.com> wrote:
> On Apr 5, 2005 6:35 AM, Marcel Holtmann <marcel@holtmann.org> wrote:
> > Hi,
> >
> > while testing the latest kernel from the Bitkeeper repository, I got
> > some sleeping functions called from invalid context:
> >
> > Freeing unused kernel memory: 180k freed
> > Debug: sleeping function called from invalid context at mm/slab.c:2090
> > in_atomic():1, irqs_disabled():0
> >  [<c0119936>] __might_sleep+0xa6/0xb0
> >  [<c014ab93>] kmem_cache_alloc+0x73/0x80
> >  [<c0149c0e>] kmem_cache_create+0xfe/0x630
> >  [<c026994d>] proto_register+0x9d/0xc0
> >  [<f88c901c>] af_unix_init+0x1c/0x7a [unix]
> >  [<c0139d62>] sys_init_module+0x1b2/0x290
> >  [<c0103025>] syscall_call+0x7/0xb
> > NET: Registered protocol family 1
> 
> Damn, thanks for reporting, looking at it now.

Humm, recent changes in slab.[ch]... I'll try booting with a kernel without
proto_register to see if this is some bug introduced by this changeset or
if the problem would appear without it, that is my current guess, as we
were doing a kmem_cache_create at module __init time before, and it
uses SLAB_KERNEL at some point...

I.e. with regards to per protocol slab cache creating at module init time
we are doing the same thing as before the proto_register changeset,
unless I'm missing some obvious thing...

- Arnaldo

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Some sleeping function called from invalid context
  2005-04-05 12:18   ` Arnaldo Carvalho de Melo
@ 2005-04-05 18:11     ` Arnaldo Carvalho de Melo
  0 siblings, 0 replies; 4+ messages in thread
From: Arnaldo Carvalho de Melo @ 2005-04-05 18:11 UTC (permalink / raw)
  To: Marcel Holtmann; +Cc: Network Development Mailing List

On Apr 5, 2005 9:18 AM, Arnaldo Carvalho de Melo <arnaldo.melo@gmail.com> wrote:
> On Apr 5, 2005 8:13 AM, Arnaldo Carvalho de Melo <arnaldo.melo@gmail.com> wrote:
> > On Apr 5, 2005 6:35 AM, Marcel Holtmann <marcel@holtmann.org> wrote:
> > > Hi,
> > >
> > > while testing the latest kernel from the Bitkeeper repository, I got
> > > some sleeping functions called from invalid context:
> > >
> > > Freeing unused kernel memory: 180k freed
> > > Debug: sleeping function called from invalid context at mm/slab.c:2090
> > > in_atomic():1, irqs_disabled():0
> > >  [<c0119936>] __might_sleep+0xa6/0xb0
> > >  [<c014ab93>] kmem_cache_alloc+0x73/0x80
> > >  [<c0149c0e>] kmem_cache_create+0xfe/0x630
> > >  [<c026994d>] proto_register+0x9d/0xc0
> > >  [<f88c901c>] af_unix_init+0x1c/0x7a [unix]
> > >  [<c0139d62>] sys_init_module+0x1b2/0x290
> > >  [<c0103025>] syscall_call+0x7/0xb
> > > NET: Registered protocol family 1
> >
> > Damn, thanks for reporting, looking at it now.
> 
> Humm, recent changes in slab.[ch]... I'll try booting with a kernel without
> proto_register to see if this is some bug introduced by this changeset or
> if the problem would appear without it, that is my current guess, as we
> were doing a kmem_cache_create at module __init time before, and it
> uses SLAB_KERNEL at some point...
> 
> I.e. with regards to per protocol slab cache creating at module init time
> we are doing the same thing as before the proto_register changeset,
> unless I'm missing some obvious thing...

Yes, I was missing something, one should not call kmem_cache_create with a
spinlock held, patch will be available shortly, thanks a lot Marcel
for reporting this
one!

- Arnaldo

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-04-05 18:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-05  9:35 Some sleeping function called from invalid context Marcel Holtmann
2005-04-05 11:13 ` Arnaldo Carvalho de Melo
2005-04-05 12:18   ` Arnaldo Carvalho de Melo
2005-04-05 18:11     ` Arnaldo Carvalho de Melo

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.