[Bug 12987] New: lots of kernel oopses caused by using inotify syscalls

bugzilla-daemon at bugzilla.ubuntu.com bugzilla-daemon at bugzilla.ubuntu.com
Wed Jul 27 06:56:30 UTC 2005


Please do not reply to this email.  You can add comments at
http://bugzilla.ubuntu.com/show_bug.cgi?id=12987
Ubuntu | linux

           Summary: lots of kernel oopses caused by using inotify syscalls
           Product: Ubuntu
           Version: unspecified
          Platform: i386
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: linux
        AssignedTo: fabbione at ubuntu.com
        ReportedBy: desrt at desrt.ca
         QAContact: kernel-bugs at lists.ubuntu.com


I was just playing around with inotify on my breezy system.  I wrote a little
program:


#include <sys/syscall.h>

# define __NR_inotify_init      291
# define __NR_inotify_add_watch 292
# define __NR_inotify_rm_watch  293

static inline int inotify_init (void)
{
        return syscall (__NR_inotify_init);
}

static inline int inotify_add_watch (int fd, const char *name, int mask)
{
        return syscall (__NR_inotify_add_watch, fd, name, mask);
}

static inline int inotify_rm_watch (int fd, int wd)
{
        return syscall (__NR_inotify_rm_watch, fd, wd);
}

int main( void )
{
  int fd = inotify_init();
  inotify_add_watch( fd, "/home/desrt/Desktop", -1 );
}

Pretty simple stuff... not even vaguely complete.  Anyway, it compiled so I
figured "eh.. why not run it", so I did.

At this point, gnome-terminal locked solid.  So I hit the close button and
clicked on "force quit" when it came up (thus closing all of my terms).  All
attempts to restart gnome-terminal are met with failure.  All attempts to start
an xterm result in an xterm-sized window popping up for a split-second then
disappearing.  SSHing to the box fails.  Basically, anything that attempts to
open a pseudoterminal is screwed at this point.

I am, however, able to SSH to the machine and issue commands (since this just
redirects the output of the command via pipes.. not pseudoterminals.)

I was able to discover that the inotify test program I wrote is locked in
uninteruptable sleep.

desrt    11481  0.0  0.0   1384   248 pts/5    D+   02:41   0:00 ./inot

I was also able to get a kernel log of lots of oopses.  None of them seem
related to inotify, though.  Very strange.  'eventd' is a program that I run
from inside a screen session (ie: outputs to a pty).  It appears that anything
running at the time connected to a pty and anything I try to start that wants to
use a pty dies.

desrt at gala:~$ ssh moonpix dmesg
[... normal log messages here ...]
[4554381.904000] Unable to handle kernel paging request at virtual address 0a9ca cec
[4554381.904000]  printing eip:
[4554381.904000] c0208002
[4554381.904000] *pde = 00000000
[4554381.904000] Oops: 0002 [#1]
[4554381.904000] SMP
[4554381.904000] Modules linked in: jfs xfs exportfs reiserfs ext2 hfs hfsplus n
tfs nls_cp437 vfat fat isofs nls_utf8 udf usb_storage binfmt_misc ipv6 video son
y_acpi pcc_acpi hotkey button battery container ac parport_pc lp parport joydev
tsdev pcspkr rtc emu10k1_gp snd_emu10k1 snd_rawmidi snd_seq_device snd_ac97_code
c snd_pcm_oss snd_mixer_oss snd_pcm snd_timer snd_page_alloc snd_util_mem snd_hw
dep evdev snd soundcore skge usbhid i2c_i801 i2c_core piix ide_core tpm_atmel tp
m_nsc tpm hw_random uhci_hcd usbcore shpchp pci_hotplug intel_agp agpgart analog
 gameport ohci1394 mousedev ext3 jbd mbcache sd_mod sr_mod cdrom sbp2 ieee1394 s
g ata_piix libata scsi_mod unix thermal processor fan fbcon tileblit font bitbli
t vesafb cfbcopyarea cfbimgblt cfbfillrect softcursor capability commoncap
[4554381.904000] CPU:    1
[4554381.905000] EIP:    0060:[<c0208002>]    Not tainted VLI
[4554381.905000] EFLAGS: 00210282   (2.6.12-4-686-smp)
[4554381.905000] EIP is at n_tty_flush_buffer+0x4e/0x4f
[4554381.905000] eax: d4a4f000   ebx: ee13a000   ecx: 00000001   edx: c0208001
[4554381.905000] esi: 00000000   edi: 00000000   ebp: 00000000   esp: f1585edc
[4554381.905000] ds: 007b   es: 007b   ss: 0068
[4554381.905000] Process gnome-terminal (pid: 16562, threadinfo=f1584000 task=f6
742020)
[4554381.905000] Stack: c020b4ff d4a4f000 ee13a000 c020a73a ee13a000 f6b99280 00
200096 ee13a000
[4554381.905000]        ee13a00c d4017280 00000000 c02062da ee13a000 d4017280 00
000000 00000145
[4554381.905000]        d82297e0 d4017280 00000001 c0174d7b d4017280 00000000 d8
229780 00000000
[4554381.905000] Call Trace:
[4554381.905000]  [<c020b4ff>] pty_chars_in_buffer+0x1e/0x47
[4554381.905000]  [<c020a73a>] normal_poll+0xeb/0x1a5
[4554381.905000]  [<c02062da>] tty_poll+0x98/0x9c
[4554381.905000]  [<c0174d7b>] do_pollfd+0x86/0x8a
[4554381.905000]  [<c0174ddf>] do_poll+0x60/0xc7
[4554381.905000]  [<c017500e>] sys_poll+0x1c8/0x21e
[4554381.905000]  [<c01218a0>] sys_gettimeofday+0x3b/0x7f
[4554381.905000]  [<c0174411>] __pollwait+0x0/0xc7
[4554381.905000]  [<c01030a7>] sysenter_past_esp+0x54/0x75
[4554381.905000] Code: 83 c4 04 5b c3 80 8b cd 00 00 00 01 c7 44 24 0c 00 00 00
00 83 c4 04 05 4c 09 00 00 b9 01 00 00 00 ba 01 00 00 00 5b e9 93 08 f1 <ff> 83
ec 0c 89 1c 24 8b 5c 24 10 89 7c 24 08 8d bb 1c 0c 00 00
[4554381.905000]  <1>general protection fault: a118 [#2]
[4554381.965000] SMP
[4554381.965000] Modules linked in: jfs xfs exportfs reiserfs ext2 hfs hfsplus n
tfs nls_cp437 vfat fat isofs nls_utf8 udf usb_storage binfmt_misc ipv6 video son
y_acpi pcc_acpi hotkey button battery container ac parport_pc lp parport joydev
tsdev pcspkr rtc emu10k1_gp snd_emu10k1 snd_rawmidi snd_seq_device snd_ac97_code
c snd_pcm_oss snd_mixer_oss snd_pcm snd_timer snd_page_alloc snd_util_mem snd_hw
dep evdev snd soundcore skge usbhid i2c_i801 i2c_core piix ide_core tpm_atmel tp
m_nsc tpm hw_random uhci_hcd usbcore shpchp pci_hotplug intel_agp agpgart analog
 gameport ohci1394 mousedev ext3 jbd mbcache sd_mod sr_mod cdrom sbp2 ieee1394 s
g ata_piix libata scsi_mod unix thermal processor fan fbcon tileblit font bitbli
t vesafb cfbcopyarea cfbimgblt cfbfillrect softcursor capability commoncap
[4554381.965000] CPU:    1
[4554381.965000] EIP:    0060:[<c020a45c>]    Not tainted VLI
[4554381.965000] EFLAGS: 00010297   (2.6.12-4-686-smp)
[4554381.965000] EIP is at write_chan+0x3/0x1f6
[4554381.965000] eax: c0204bb1   ebx: f7a7f000   ecx: 00000000   edx: f7a91680
[4554381.965000] esi: fffffff2   edi: f7a7efff   ebp: 00000032   esp: ee9fdf38
[4554381.965000] ds: 007b   es: 007b   ss: 0068
[4554381.965000] Process eventd (pid: 14547, threadinfo=ee9fc000 task=e7d7b540)
[4554381.965000] Stack: f7a91680 f7afd800 00000032 ee9fc000 00000032 00000000 b7
fa8000 c020a459
[4554381.965000]        f7a7f00c 00000032 f7a91680 b7fa8000 00000000 c0160634 f7
a91680 b7fa8000
[4554381.965000]        00000032 ee9fdfa4 f7a91680 fffffff7 b7fa8000 ee9fc000 c0
1607c8 f7a91680
[4554381.965000] Call Trace:
[4554381.965000]  [<c020a459>] write_chan+0x0/0x1f6
[4554381.965000]  [<c0160634>] vfs_write+0xf0/0x1b3
[4554381.965000]  [<c01607c8>] sys_write+0x51/0x80
[4554381.965000]  [<c01030a7>] sysenter_past_esp+0x54/0x75
[4554381.965000] Code: 92 fc ff ff c7 44 24 20 f5 ff ff ff e9 85 fc ff ff c7 44
24 20 fb ff ff ff e9 78 fc ff ff b8 f5 ff ff ff e9 df fc ff ff 58 5f 4f <c5> 57
b9 05 00 00 00 56 53 83 ec 54 8d 7c 24 14 8b 6c 24 68 8b
[4554381.965000]  <1>general protection fault: d208 [#3]
[4554406.939000] SMP
[4554406.939000] Modules linked in: jfs xfs exportfs reiserfs ext2 hfs hfsplus n
tfs nls_cp437 vfat fat isofs nls_utf8 udf usb_storage binfmt_misc ipv6 video son
y_acpi pcc_acpi hotkey button battery container ac parport_pc lp parport joydev
tsdev pcspkr rtc emu10k1_gp snd_emu10k1 snd_rawmidi snd_seq_device snd_ac97_code
c snd_pcm_oss snd_mixer_oss snd_pcm snd_timer snd_page_alloc snd_util_mem snd_hw
dep evdev snd soundcore skge usbhid i2c_i801 i2c_core piix ide_core tpm_atmel tp
m_nsc tpm hw_random uhci_hcd usbcore shpchp pci_hotplug intel_agp agpgart analog
 gameport ohci1394 mousedev ext3 jbd mbcache sd_mod sr_mod cdrom sbp2 ieee1394 s
g ata_piix libata scsi_mod unix thermal processor fan fbcon tileblit font bitbli
t vesafb cfbcopyarea cfbimgblt cfbfillrect softcursor capability commoncap
[4554406.939000] CPU:    1
[4554406.939000] EIP:    0060:[<c020a45c>]    Not tainted VLI
[4554406.939000] EFLAGS: 00210297   (2.6.12-4-686-smp)
[4554406.939000] EIP is at write_chan+0x3/0x1f6
[4554406.940000] eax: c0204bb1   ebx: c48ca000   ecx: 00000000   edx: ee588680
[4554406.940000] esi: fffffff2   edi: c48c9fff   ebp: 0000001f   esp: ee9fdf38
[4554406.940000] ds: 007b   es: 007b   ss: 0068
[4554406.940000] Process bash (pid: 11493, threadinfo=ee9fc000 task=f7ab8020)
[4554406.940000] Stack: ee588680 ee816c00 0000001f ee9fc000 00000400 00000000 08
0edc08 c020a459
[4554406.940000]        c48ca00c 0000001f ee588680 080edc08 00000000 c0160634 ee
588680 080edc08
[4554406.940000]        0000001f ee9fdfa4 ee588680 fffffff7 080edc08 ee9fc000 c0
1607c8 ee588680
[4554406.940000] Call Trace:
[4554406.940000]  [<c020a459>] write_chan+0x0/0x1f6
[4554406.940000]  [<c0160634>] vfs_write+0xf0/0x1b3
[4554406.940000]  [<c01607c8>] sys_write+0x51/0x80
[4554406.940000]  [<c01030a7>] sysenter_past_esp+0x54/0x75
[4554406.940000] Code: 92 fc ff ff c7 44 24 20 f5 ff ff ff e9 85 fc ff ff c7 44
24 20 fb ff ff ff e9 78 fc ff ff b8 f5 ff ff ff e9 df fc ff ff 58 5f 4f <c5> 57
b9 05 00 00 00 56 53 83 ec 54 8d 7c 24 14 8b 6c 24 68 8b
[4554406.940000]  <1>general protection fault: 6150 [#4]
[4554432.302000] SMP
[4554432.302000] Modules linked in: jfs xfs exportfs reiserfs ext2 hfs hfsplus n
tfs nls_cp437 vfat fat isofs nls_utf8 udf usb_storage binfmt_misc ipv6 video son
y_acpi pcc_acpi hotkey button battery container ac parport_pc lp parport joydev
tsdev pcspkr rtc emu10k1_gp snd_emu10k1 snd_rawmidi snd_seq_device snd_ac97_code
c snd_pcm_oss snd_mixer_oss snd_pcm snd_timer snd_page_alloc snd_util_mem snd_hw
dep evdev snd soundcore skge usbhid i2c_i801 i2c_core piix ide_core tpm_atmel tp
m_nsc tpm hw_random uhci_hcd usbcore shpchp pci_hotplug intel_agp agpgart analog
 gameport ohci1394 mousedev ext3 jbd mbcache sd_mod sr_mod cdrom sbp2 ieee1394 s
g ata_piix libata scsi_mod unix thermal processor fan fbcon tileblit font bitbli
t vesafb cfbcopyarea cfbimgblt cfbfillrect softcursor capability commoncap
[4554432.302000] CPU:    0
[4554432.302000] EIP:    0060:[<c020a45c>]    Not tainted VLI
[4554432.302000] EFLAGS: 00010297   (2.6.12-4-686-smp)
[4554432.302000] EIP is at write_chan+0x3/0x1f6
[4554432.302000] eax: c0204bb1   ebx: f34f6000   ecx: 00000000   edx: f6a41680
[4554432.302000] esi: fffffff2   edi: f34f5fff   ebp: 00000043   esp: ef9f5f38
[4554432.302000] ds: 007b   es: 007b   ss: 0068
[4554432.302000] Process ssh (pid: 21035, threadinfo=ef9f4000 task=df812020)
[4554432.302000] Stack: f6a41680 f7667800 00000043 ef9f4000 00000043 00000000 08
09aae8 c020a459
[4554432.302000]        f34f600c 00000043 f6a41680 0809aae8 00000000 c0160634 f6
a41680 0809aae8
[4554432.302000]        00000043 ef9f5fa4 f6a41680 fffffff7 00000043 ef9f4000 c0
1607c8 f6a41680
[4554432.302000] Call Trace:
[4554432.302000]  [<c020a459>] write_chan+0x0/0x1f6
[4554432.302000]  [<c0160634>] vfs_write+0xf0/0x1b3
[4554432.302000]  [<c01607c8>] sys_write+0x51/0x80
[4554432.302000]  [<c01030a7>] sysenter_past_esp+0x54/0x75
[4554432.302000] Code: 92 fc ff ff c7 44 24 20 f5 ff ff ff e9 85 fc ff ff c7 44
24 20 fb ff ff ff e9 78 fc ff ff b8 f5 ff ff ff e9 df fc ff ff 58 5f 4f <c5> 57
b9 05 00 00 00 56 53 83 ec 54 8d 7c 24 14 8b 6c 24 68 8b
[4554432.302000]  <1>general protection fault: 0304 [#5]
[4554499.710000] SMP
[4554499.710000] Modules linked in: jfs xfs exportfs reiserfs ext2 hfs hfsplus n
tfs nls_cp437 vfat fat isofs nls_utf8 udf usb_storage binfmt_misc ipv6 video son
y_acpi pcc_acpi hotkey button battery container ac parport_pc lp parport joydev
tsdev pcspkr rtc emu10k1_gp snd_emu10k1 snd_rawmidi snd_seq_device snd_ac97_code
c snd_pcm_oss snd_mixer_oss snd_pcm snd_timer snd_page_alloc snd_util_mem snd_hw
dep evdev snd soundcore skge usbhid i2c_i801 i2c_core piix ide_core tpm_atmel tp
m_nsc tpm hw_random uhci_hcd usbcore shpchp pci_hotplug intel_agp agpgart analog
 gameport ohci1394 mousedev ext3 jbd mbcache sd_mod sr_mod cdrom sbp2 ieee1394 s
g ata_piix libata scsi_mod unix thermal processor fan fbcon tileblit font bitbli
t vesafb cfbcopyarea cfbimgblt cfbfillrect softcursor capability commoncap
[4554499.710000] CPU:    1
[4554499.710000] EIP:    0060:[<c020a45c>]    Not tainted VLI
[4554499.710000] EFLAGS: 00210297   (2.6.12-4-686-smp)
[4554499.710000] EIP is at write_chan+0x3/0x1f6
[4554499.710000] eax: c0204bb1   ebx: e6ede000   ecx: 00000000   edx: f4a52980
[4554499.710000] esi: fffffff2   edi: e6eddfff   ebp: 0000001f   esp: c5749f38
[4554499.710000] ds: 007b   es: 007b   ss: 0068
[4554499.710000] Process bash (pid: 11542, threadinfo=c5748000 task=e5cd9540)
[4554499.710000] Stack: f4a52980 d70ed800 0000001f c5748000 00000400 00000000 08
0edc08 c020a459
[4554499.710000]        e6ede00c 0000001f f4a52980 080edc08 00000000 c0160634 f4
a52980 080edc08
[4554499.710000]        0000001f c5749fa4 f4a52980 fffffff7 080edc08 c5748000 c0
1607c8 f4a52980
[4554499.710000] Call Trace:
[4554499.710000]  [<c020a459>] write_chan+0x0/0x1f6
[4554499.710000]  [<c0160634>] vfs_write+0xf0/0x1b3
[4554499.710000]  [<c01607c8>] sys_write+0x51/0x80
[4554499.710000]  [<c01030a7>] sysenter_past_esp+0x54/0x75
[4554499.710000] Code: 92 fc ff ff c7 44 24 20 f5 ff ff ff e9 85 fc ff ff c7 44
24 20 fb ff ff ff e9 78 fc ff ff b8 f5 ff ff ff e9 df fc ff ff 58 5f 4f <c5> 57
b9 05 00 00 00 56 53 83 ec 54 8d 7c 24 14 8b 6c 24 68 8b
[4554499.710000]  <1>general protection fault: 1e64 [#6]
[4554551.034000] SMP
[4554551.034000] Modules linked in: jfs xfs exportfs reiserfs ext2 hfs hfsplus n
tfs nls_cp437 vfat fat isofs nls_utf8 udf usb_storage binfmt_misc ipv6 video son
y_acpi pcc_acpi hotkey button battery container ac parport_pc lp parport joydev
tsdev pcspkr rtc emu10k1_gp snd_emu10k1 snd_rawmidi snd_seq_device snd_ac97_code
c snd_pcm_oss snd_mixer_oss snd_pcm snd_timer snd_page_alloc snd_util_mem snd_hw
dep evdev snd soundcore skge usbhid i2c_i801 i2c_core piix ide_core tpm_atmel tp
m_nsc tpm hw_random uhci_hcd usbcore shpchp pci_hotplug intel_agp agpgart analog
 gameport ohci1394 mousedev ext3 jbd mbcache sd_mod sr_mod cdrom sbp2 ieee1394 s
g ata_piix libata scsi_mod unix thermal processor fan fbcon tileblit font bitbli
t vesafb cfbcopyarea cfbimgblt cfbfillrect softcursor capability commoncap
[4554551.034000] CPU:    0
[4554551.034000] EIP:    0060:[<c020a45c>]    Not tainted VLI
[4554551.034000] EFLAGS: 00010297   (2.6.12-4-686-smp)
[4554551.034000] EIP is at write_chan+0x3/0x1f6
[4554551.034000] eax: c0204bb1   ebx: d3547000   ecx: 00000000   edx: f6cf7280
[4554551.034000] esi: fffffff2   edi: d3546fff   ebp: 0000001f   esp: ced97f38
[4554551.034000] ds: 007b   es: 007b   ss: 0068
[4554551.034000] Process bash (pid: 11564, threadinfo=ced96000 task=eaad5540)
[4554551.034000] Stack: f6cf7280 ee816c00 0000001f ced96000 00000400 00000000 08
0edc08 c020a459
[4554551.034000]        d354700c 0000001f f6cf7280 080edc08 00000000 c0160634 f6
cf7280 080edc08
[4554551.034000]        0000001f ced97fa4 f6cf7280 fffffff7 080edc08 ced96000 c0
1607c8 f6cf7280
[4554551.034000] Call Trace:
[4554551.034000]  [<c020a459>] write_chan+0x0/0x1f6
[4554551.034000]  [<c0160634>] vfs_write+0xf0/0x1b3
[4554551.034000]  [<c01607c8>] sys_write+0x51/0x80
[4554551.034000]  [<c01030a7>] sysenter_past_esp+0x54/0x75
[4554551.034000] Code: 92 fc ff ff c7 44 24 20 f5 ff ff ff e9 85 fc ff ff c7 44
24 20 fb ff ff ff e9 78 fc ff ff b8 f5 ff ff ff e9 df fc ff ff 58 5f 4f <c5> 57
b9 05 00 00 00 56 53 83 ec 54 8d 7c 24 14 8b 6c 24 68 8b
[4554551.034000]  <1>general protection fault: ee50 [#7]
[4554553.093000] SMP
[4554553.093000] Modules linked in: jfs xfs exportfs reiserfs ext2 hfs hfsplus n
tfs nls_cp437 vfat fat isofs nls_utf8 udf usb_storage binfmt_misc ipv6 video son
y_acpi pcc_acpi hotkey button battery container ac parport_pc lp parport joydev
tsdev pcspkr rtc emu10k1_gp snd_emu10k1 snd_rawmidi snd_seq_device snd_ac97_code
c snd_pcm_oss snd_mixer_oss snd_pcm snd_timer snd_page_alloc snd_util_mem snd_hw
dep evdev snd soundcore skge usbhid i2c_i801 i2c_core piix ide_core tpm_atmel tp
m_nsc tpm hw_random uhci_hcd usbcore shpchp pci_hotplug intel_agp agpgart analog
 gameport ohci1394 mousedev ext3 jbd mbcache sd_mod sr_mod cdrom sbp2 ieee1394 s
g ata_piix libata scsi_mod unix thermal processor fan fbcon tileblit font bitbli
t vesafb cfbcopyarea cfbimgblt cfbfillrect softcursor capability commoncap
[4554553.093000] CPU:    0
[4554553.093000] EIP:    0060:[<c020a45c>]    Not tainted VLI
[4554553.093000] EFLAGS: 00010297   (2.6.12-4-686-smp)
[4554553.093000] EIP is at write_chan+0x3/0x1f6
[4554553.093000] eax: c0204bb1   ebx: f2664000   ecx: 00000000   edx: f1ba7180
[4554553.093000] esi: fffffff2   edi: f2663fff   ebp: 0000001f   esp: ef9f5f38
[4554553.093000] ds: 007b   es: 007b   ss: 0068
[4554553.093000] Process bash (pid: 11569, threadinfo=ef9f4000 task=e5cd9540)
[4554553.093000] Stack: f1ba7180 f1b0a400 0000001f ef9f4000 00000400 00000000 08
0edc08 c020a459
[4554553.093000]        f266400c 0000001f f1ba7180 080edc08 00000000 c0160634 f1
ba7180 080edc08
[4554553.093000]        0000001f ef9f5fa4 f1ba7180 fffffff7 080edc08 ef9f4000 c0
1607c8 f1ba7180
[4554553.093000] Call Trace:
[4554553.093000]  [<c020a459>] write_chan+0x0/0x1f6
[4554553.093000]  [<c0160634>] vfs_write+0xf0/0x1b3
[4554553.093000]  [<c01607c8>] sys_write+0x51/0x80
[4554553.093000]  [<c01030a7>] sysenter_past_esp+0x54/0x75
[4554553.093000] Code: 92 fc ff ff c7 44 24 20 f5 ff ff ff e9 85 fc ff ff c7 44
24 20 fb ff ff ff e9 78 fc ff ff b8 f5 ff ff ff e9 df fc ff ff 58 5f 4f <c5> 57
b9 05 00 00 00 56 53 83 ec 54 8d 7c 24 14 8b 6c 24 68 8b
[4554553.093000]  <1>general protection fault: d214 [#8]
[4554625.033000] SMP
[4554625.033000] Modules linked in: jfs xfs exportfs reiserfs ext2 hfs hfsplus n
tfs nls_cp437 vfat fat isofs nls_utf8 udf usb_storage binfmt_misc ipv6 video son
y_acpi pcc_acpi hotkey button battery container ac parport_pc lp parport joydev
tsdev pcspkr rtc emu10k1_gp snd_emu10k1 snd_rawmidi snd_seq_device snd_ac97_code
c snd_pcm_oss snd_mixer_oss snd_pcm snd_timer snd_page_alloc snd_util_mem snd_hw
dep evdev snd soundcore skge usbhid i2c_i801 i2c_core piix ide_core tpm_atmel tp
m_nsc tpm hw_random uhci_hcd usbcore shpchp pci_hotplug intel_agp agpgart analog
 gameport ohci1394 mousedev ext3 jbd mbcache sd_mod sr_mod cdrom sbp2 ieee1394 s
g ata_piix libata scsi_mod unix thermal processor fan fbcon tileblit font bitbli
t vesafb cfbcopyarea cfbimgblt cfbfillrect softcursor capability commoncap
[4554625.033000] CPU:    1
[4554625.033000] EIP:    0060:[<c020a45c>]    Not tainted VLI
[4554625.033000] EFLAGS: 00010297   (2.6.12-4-686-smp)
[4554625.033000] EIP is at write_chan+0x3/0x1f6
[4554625.033000] eax: c0204bb1   ebx: d84f2000   ecx: 00000000   edx: f7926180
[4554625.033000] esi: fffffff2   edi: d84f1fff   ebp: 00000052   esp: ced97f38
[4554625.033000] ds: 007b   es: 007b   ss: 0068
[4554625.033000] Process sshd (pid: 11586, threadinfo=ced96000 task=f6a32a60)
[4554625.033000] Stack: f7926180 d623c000 00000052 ced96000 00000400 00000000 b7
ef6000 c020a459
[4554625.033000]        d84f200c 00000052 f7926180 b7ef6000 00000000 c0160634 f7
926180 b7ef6000
[4554625.033000]        00000052 ced97fa4 f7926180 fffffff7 b7ef6000 ced96000 c0
1607c8 f7926180
[4554625.033000] Call Trace:
[4554625.033000]  [<c020a459>] write_chan+0x0/0x1f6
[4554625.033000]  [<c0160634>] vfs_write+0xf0/0x1b3
[4554625.033000]  [<c01607c8>] sys_write+0x51/0x80
[4554625.033000]  [<c01030a7>] sysenter_past_esp+0x54/0x75
[4554625.033000] Code: 92 fc ff ff c7 44 24 20 f5 ff ff ff e9 85 fc ff ff c7 44
24 20 fb ff ff ff e9 78 fc ff ff b8 f5 ff ff ff e9 df fc ff ff 58 5f 4f <c5> 57
b9 05 00 00 00 56 53 83 ec 54 8d 7c 24 14 8b 6c 24 68 8b
[4554625.033000]  <1>general protection fault: 0000 [#9]
[4554626.945000] SMP
[4554626.945000] Modules linked in: jfs xfs exportfs reiserfs ext2 hfs hfsplus n
tfs nls_cp437 vfat fat isofs nls_utf8 udf usb_storage binfmt_misc ipv6 video son
y_acpi pcc_acpi hotkey button battery container ac parport_pc lp parport joydev
tsdev pcspkr rtc emu10k1_gp snd_emu10k1 snd_rawmidi snd_seq_device snd_ac97_code
c snd_pcm_oss snd_mixer_oss snd_pcm snd_timer snd_page_alloc snd_util_mem snd_hw
dep evdev snd soundcore skge usbhid i2c_i801 i2c_core piix ide_core tpm_atmel tp
m_nsc tpm hw_random uhci_hcd usbcore shpchp pci_hotplug intel_agp agpgart analog
 gameport ohci1394 mousedev ext3 jbd mbcache sd_mod sr_mod cdrom sbp2 ieee1394 s
g ata_piix libata scsi_mod unix thermal processor fan fbcon tileblit font bitbli
t vesafb cfbcopyarea cfbimgblt cfbfillrect softcursor capability commoncap
[4554626.945000] CPU:    1
[4554626.945000] EIP:    0060:[<c020a481>]    Not tainted VLI
[4554626.945000] EFLAGS: 00010286   (2.6.12-4-686-smp)
[4554626.945000] EIP is at write_chan+0x28/0x1f6
[4554626.945000] eax: f35ee000   ebx: c020a459   ecx: 00000000   edx: 00000000
[4554626.945000] esi: b7f5b000   edi: f35efef4   ebp: 00000400   esp: f35efee0
[4554626.945000] ds: 0000   es: 007b   ss: 0068
[4554626.945000] Process sshd (pid: 11590, threadinfo=f35ee000 task=f79b8540)
[4554626.945000] Stack: c0203b86 ec317000 dfede580 f3e86284 b7f5b000 00000001 00
000001 b7f5b000
[4554626.945000]        00000006 f35effbc f35effbc 00000000 f5104800 c01c9531 f5
104800 b7f5b000
[4554626.945000]        00000052 ec317000 fffffff2 00000052 c0204bb1 ec317000 f1
a91380 f5104800
[4554626.945000] Call Trace:
[4554626.945000]  [<c0203b86>] tty_ldisc_ref_wait+0x11/0xb7
[4554626.945000]  [<c01c9531>] copy_from_user+0x46/0x79
[4554626.945000]  [<c0204bb1>] tty_write+0x16e/0x24c
[4554626.945000]  [<c020a459>] write_chan+0x0/0x1f6
[4554626.945000]  [<c0160634>] vfs_write+0xf0/0x1b3
[4554626.945000]  [<c01607c8>] sys_write+0x51/0x80
[4554626.945000]  [<c01030a7>] sysenter_past_esp+0x54/0x75
[4554626.945000] Code: fc ff ff 58 5f 4f c5 57 b9 05 00 00 00 56 53 83 ec 54 8d
7c 24 14 8b 6c 24 68 8b 5c 24 74 8b 74 24 70 f3 ab b8 00 e0 ff ff 21 e0 <8b> 10
8b 44 24 14 89 44 24 34 8b 44 24 20 89 54 24 18 89 44 24
[4554626.946000]  <1>general protection fault: 99c0 [#10]
[4554627.744000] SMP
[4554627.744000] Modules linked in: jfs xfs exportfs reiserfs ext2 hfs hfsplus n
tfs nls_cp437 vfat fat isofs nls_utf8 udf usb_storage binfmt_misc ipv6 video son
y_acpi pcc_acpi hotkey button battery container ac parport_pc lp parport joydev
tsdev pcspkr rtc emu10k1_gp snd_emu10k1 snd_rawmidi snd_seq_device snd_ac97_code
c snd_pcm_oss snd_mixer_oss snd_pcm snd_timer snd_page_alloc snd_util_mem snd_hw
dep evdev snd soundcore skge usbhid i2c_i801 i2c_core piix ide_core tpm_atmel tp
m_nsc tpm hw_random uhci_hcd usbcore shpchp pci_hotplug intel_agp agpgart analog
 gameport ohci1394 mousedev ext3 jbd mbcache sd_mod sr_mod cdrom sbp2 ieee1394 s
g ata_piix libata scsi_mod unix thermal processor fan fbcon tileblit font bitbli
t vesafb cfbcopyarea cfbimgblt cfbfillrect softcursor capability commoncap
[4554627.744000] CPU:    1
[4554627.744000] EIP:    0060:[<c020a45c>]    Not tainted VLI
[4554627.744000] EFLAGS: 00010297   (2.6.12-4-686-smp)
[4554627.744000] EIP is at write_chan+0x3/0x1f6
[4554627.744000] eax: c0204bb1   ebx: d943c000   ecx: 00000000   edx: f7bd2980
[4554627.744000] esi: fffffff2   edi: d943bfff   ebp: 00000052   esp: d82ebf38
[4554627.744000] ds: 007b   es: 007b   ss: 0068
[4554627.744000] Process sshd (pid: 11596, threadinfo=d82ea000 task=f6bd4020)
[4554627.744000] Stack: f7bd2980 e1c1a000 00000052 d82ea000 00000400 00000000 b7
fb3000 c020a459
[4554627.744000]        d943c00c 00000052 f7bd2980 b7fb3000 00000000 c0160634 f7
bd2980 b7fb3000
[4554627.744000]        00000052 d82ebfa4 f7bd2980 fffffff7 b7fb3000 d82ea000 c0
1607c8 f7bd2980
[4554627.744000] Call Trace:
[4554627.744000]  [<c020a459>] write_chan+0x0/0x1f6
[4554627.744000]  [<c0160634>] vfs_write+0xf0/0x1b3
[4554627.744000]  [<c01607c8>] sys_write+0x51/0x80
[4554627.744000]  [<c01030a7>] sysenter_past_esp+0x54/0x75
[4554627.745000] Code: 92 fc ff ff c7 44 24 20 f5 ff ff ff e9 85 fc ff ff c7 44
24 20 fb ff ff ff e9 78 fc ff ff b8 f5 ff ff ff e9 df fc ff ff 58 5f 4f <c5> 57
b9 05 00 00 00 56 53 83 ec 54 8d 7c 24 14 8b 6c 24 68 8b
[4554627.745000]
desrt at gala:~$


I'm gonna restart my computer now and see if I can get this to happen again.

-- 
Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.




More information about the kernel-bugs mailing list