All of lore.kernel.org
 help / color / mirror / Atom feed
From: Con Kolivas <kernel@kolivas.org>
To: Andrew Morton <akpm@osdl.org>
Cc: linux-kernel@vger.kernel.org
Subject: Re: 2.6.10-rc1-mm3
Date: Fri, 05 Nov 2004 21:56:48 +1100	[thread overview]
Message-ID: <418B5C70.7090206@kolivas.org> (raw)
In-Reply-To: <20041105001328.3ba97e08.akpm@osdl.org>

[-- Attachment #1: Type: text/plain, Size: 3347 bytes --]

It's life Jim but not as we know it...


This happened during modprobe of alsa modules. Keyboard still alive, 
everything else dead; not even sysrq would do anything, netconsole had 
no output, luckily this made it to syslog:

Nov  5 21:39:27 pc kernel: Unable to handle kernel paging request at 
virtual address f8c00000
Nov  5 21:39:27 pc kernel:  printing eip:
Nov  5 21:39:27 pc kernel: c02bddce
Nov  5 21:39:27 pc kernel: *pde = 00000000
Nov  5 21:39:27 pc kernel: Oops: 0002 [#1]
Nov  5 21:39:27 pc kernel: PREEMPT SMP
Nov  5 21:39:27 pc kernel: Modules linked in: soundcore intel_agp 
agpgart bttv video_buf firmware_class i2c_algo_bit btcx_risc i2c_core us
blp ehci_hcd uhci_hcd
Nov  5 21:39:27 pc kernel: CPU:    0
Nov  5 21:39:27 pc kernel: EIP:    0060:[<c02bddce>]    Not tainted VLI
Nov  5 21:39:27 pc kernel: EFLAGS: 00010246   (2.6.10-rc1-mm3)
Nov  5 21:39:27 pc kernel: EIP is at __lock_text_end+0xbe3/0x119a
Nov  5 21:39:27 pc kernel: eax: 00000000   ebx: 000a151a   ecx: 0002851a 
   edx: b7c82008
Nov  5 21:39:27 pc kernel: esi: b7cfb008   edi: f8c00000   ebp: f6c1c000 
   esp: f6c1cf14
Nov  5 21:39:27 pc kernel: ds: 007b   es: 007b   ss: 0068
Nov  5 21:39:27 pc kernel: Process modprobe (pid: 955, 
threadinfo=f6c1c000 task=f76ef530)
Nov  5 21:39:27 pc kernel: Stack: 00000002 0002851a f8b87000 b7c82008 
c01d2a10 b7c82008 000a151a 08049410
Nov  5 21:39:27 pc kernel:        c012f697 00000000 00000001 00008000 
00000000 00000000 c1707400 f6a41580
Nov  5 21:39:27 pc kernel:        f58c4ac4 f58c4ac4 00000046 00000000 
f6a41580 00000246 00000246 00000000
Nov  5 21:39:27 pc kernel: Call Trace:
Nov  5 21:39:27 pc kernel:  [<c01d2a10>] copy_from_user+0x29/0x4d
Nov  5 21:39:27 pc kernel:  [<c012f697>] load_module+0x73/0x916
Nov  5 21:39:27 pc kernel:  [<c0142007>] do_munmap+0x10e/0x11c
Nov  5 21:39:27 pc kernel:  [<c012ff87>] sys_init_module+0x4d/0x207
Nov  5 21:39:27 pc kernel:  [<c0104b31>] sysenter_past_esp+0x52/0x71
Nov  5 21:39:27 pc kernel: Code: 88 00 51 50 31 c0 f3 aa 58 59 e9 75 4b 
f1 ff 01 c1 e9 a9 4b f1 ff 8d 4c 88 00 e9 a0 4b f1 ff 01 c1 eb 04
8d 4c 88 00 51 50 31 c0 <f3> aa 58 59 e9 d1 4b f1 ff ba f2 ff ff ff e9 
60 96 f1 ff b9 f2

*__lock_text_end+0xbe3: hidden in inlined functions

*copy_from_user+0x29: hidden in inlined functions

*load_module+0x73:
0xc012f697 is in load_module (kernel/module.c:1457).
1452            /* Suck in entire file: we'll want most of it. */
1453            /* vmalloc barfs on "unusual" numbers.  Check here */
1454            if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
1455                    return ERR_PTR(-ENOMEM);
1456            if (copy_from_user(hdr, umod, len) != 0) {
1457                    err = -EFAULT;

*do_munmap+0x10e:
0xc0142007 is in do_munmap (mm/mmap.c:1753).
1748            spin_unlock(&mm->page_table_lock);
1749
1750            /* Fix up all other VM information */
1751            unmap_vma_list(mm, mpnt);
1752
1753            return 0;

*sys_init_module+0x4d: inlined

*sysenter_past_esp+0x52:
0xc0104b31 is at arch/i386/kernel/entry.S:243.
238             testb 
$(_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT),TI_flags(%ebp)
239             jnz syscall_trace_entry
240             cmpl $(nr_syscalls), %eax
241             jae syscall_badsys
242             call *sys_call_table(,%eax,4)
243             movl %eax,EAX(%esp)


Con

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 256 bytes --]

  parent reply	other threads:[~2004-11-05 10:57 UTC|newest]

Thread overview: 79+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-11-05  8:13 2.6.10-rc1-mm3 Andrew Morton
2004-11-05  9:41 ` 2.6.10-rc1-mm3 Lorenzo Allegrucci
2004-11-05 10:17   ` 2.6.10-rc1-mm3 Andrew Morton
2004-11-05 10:48     ` 2.6.10-rc1-mm3 Andi Kleen
2004-11-05 12:36       ` 2.6.10-rc1-mm3 Lorenzo Allegrucci
2004-11-05 10:22   ` 2.6.10-rc1-mm3 Ingo Molnar
2004-11-05 10:38     ` 2.6.10-rc1-mm3 Andi Kleen
2004-11-05 11:09     ` 2.6.10-rc1-mm3 Ingo Molnar
2004-11-05 11:17       ` 2.6.10-rc1-mm3 Andi Kleen
2004-11-05 11:24         ` 2.6.10-rc1-mm3 Ingo Molnar
2004-11-05 11:43           ` 2.6.10-rc1-mm3 Andi Kleen
2004-11-05 12:15           ` 2.6.10-rc1-mm3 Ingo Molnar
2004-11-05 12:22             ` 2.6.10-rc1-mm3 Andi Kleen
2004-11-05 12:57               ` 2.6.10-rc1-mm3 Rafael J. Wysocki
2004-11-05 13:02                 ` 2.6.10-rc1-mm3 Andi Kleen
2004-11-05 17:47                   ` 2.6.10-rc1-mm3 Rafael J. Wysocki
2004-11-05 11:20       ` 2.6.10-rc1-mm3 Russell King
2004-11-05 11:30         ` 2.6.10-rc1-mm3 Andi Kleen
2004-11-05 10:17 ` 2.6.10-rc1-mm3 Ingo Molnar
2004-11-05 15:54   ` 2.6.10-rc1-mm3 Michael Baehr
2004-11-05 10:56 ` Con Kolivas [this message]
2004-11-05 16:45 ` 2.6.10-rc1-mm3: ACPI problem due to un-exported hotplug_path Adrian Bunk
2004-11-05 18:05   ` Greg KH
2004-11-05 20:10     ` Kay Sievers
2004-11-05 20:32       ` Ashok Raj
2004-11-05 20:43         ` Greg KH
2004-11-05 20:45         ` Kay Sievers
2004-11-05 20:42       ` Greg KH
2004-11-06  5:18         ` Keshavamurthy Anil S
2004-11-06  5:50           ` Dmitry Torokhov
     [not found]           ` <20041105211848.A21098-39QZ/XbsZ5/mO6KZMuUCQVaTQe2KTcn/@public.gmane.org>
2004-11-09 22:55             ` Greg KH
2004-11-09 22:55               ` Greg KH
     [not found]               ` <20041109225502.GC7618-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2004-11-09 23:48                 ` Dmitry Torokhov
2004-11-09 23:48                   ` [ACPI] " Dmitry Torokhov
     [not found]                   ` <d120d5000411091548584bf8c5-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2004-11-10  0:08                     ` Greg KH
2004-11-10  0:08                       ` [ACPI] " Greg KH
     [not found]                       ` <20041110000811.GA8543-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2004-11-10  4:15                         ` Dmitry Torokhov
2004-11-10  4:15                           ` [ACPI] " Dmitry Torokhov
2004-11-16  5:54                           ` Greg KH
2004-11-05 16:52 ` 2.6.10-rc1-mm3: drm_ati_pcigart_{init,cleanup} multiple definition Adrian Bunk
2004-11-05 17:19   ` Dave Airlie
2004-11-05 17:33     ` Jon Smirl
2004-11-05 18:07 ` 2.6.10-rc1-mm3 Rafael J. Wysocki
2004-11-05 18:48   ` 2.6.10-rc1-mm3: (fix for make xconfig) Rafael J. Wysocki
2004-11-05 20:26     ` Sam Ravnborg
2004-11-08 22:34       ` Sam Ravnborg
2004-11-05 18:07 ` 2.6.10-rc1-mm3 Adam Heath
2004-11-06  7:16 ` 2.6.10-rc1-mm3 Pasi Savolainen
2004-11-06  9:39 ` [PATCH][TRIVIAL] sched.c whitespace mangler Con Kolivas
2004-11-07  1:32 ` 2.6.10-rc1-mm3: "bttv card=" breakage Adrian Bunk
2004-11-07  2:15   ` Andrew Morton
     [not found] <20041105001328.3ba97e08.akpm@osdl.org.suse.lists.linux.kernel>
     [not found] ` <418B5C70.7090206@kolivas.org.suse.lists.linux.kernel>
2004-11-05 11:53   ` 2.6.10-rc1-mm3 Andi Kleen
2004-11-05 12:16     ` 2.6.10-rc1-mm3 Con Kolivas
2004-11-05 12:23       ` 2.6.10-rc1-mm3 Andi Kleen
  -- strict thread matches above, loose matches on Subject: below --
2004-11-06 19:04 2.6.10-rc1-mm3 Paul Blazejowski
2004-11-07 10:48 ` 2.6.10-rc1-mm3 Andrew Morton
2004-11-07 17:24   ` 2.6.10-rc1-mm3 Paul Blazejowski
2004-11-08  7:59   ` 2.6.10-rc1-mm3 Ingo Molnar
2004-11-08  7:42     ` 2.6.10-rc1-mm3 Andrew Morton
2004-11-08 22:42       ` 2.6.10-rc1-mm3 Greg KH
2004-11-09  5:27         ` 2.6.10-rc1-mm3 Andrew Morton
2004-11-09  7:14           ` 2.6.10-rc1-mm3 Greg KH
2004-11-09  8:05             ` 2.6.10-rc1-mm3 Greg KH
2004-11-09  8:15               ` 2.6.10-rc1-mm3 Andrew Morton
2004-11-09  8:27                 ` 2.6.10-rc1-mm3 Greg KH
2004-11-09 12:11               ` 2.6.10-rc1-mm3 Tejun Heo
2004-11-09  7:53           ` 2.6.10-rc1-mm3 Olivier Poitrey
2004-11-09  8:22             ` 2.6.10-rc1-mm3 Arjan van de Ven
2004-11-09  9:25               ` 2.6.10-rc1-mm3 Olivier Poitrey
2004-11-09 10:37               ` 2.6.10-rc1-mm3 Ingo Molnar
2004-11-09  9:39                 ` 2.6.10-rc1-mm3 Andrew Morton
2004-11-09 10:44                   ` 2.6.10-rc1-mm3 Ingo Molnar
2004-11-09 10:33           ` 2.6.10-rc1-mm3 Andries Brouwer
2004-11-11  1:52             ` 2.6.10-rc1-mm3 H. Peter Anvin
2004-11-09 18:24           ` 2.6.10-rc1-mm3 Paul Blazejowski
2004-11-08 12:34 2.6.10-rc1-mm3 Karsten Wiese
2004-11-08 21:40 ` 2.6.10-rc1-mm3 Karsten Wiese
2004-11-08 22:25   ` 2.6.10-rc1-mm3 linux-os
2004-11-08 23:30   ` 2.6.10-rc1-mm3 Chris Wright

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=418B5C70.7090206@kolivas.org \
    --to=kernel@kolivas.org \
    --cc=akpm@osdl.org \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.