|
View:
New views
13 Messages
—
Rating Filter:
Alert me
|
|
|
|
|
|
Re: xsrc/42262: Thinkpad T500 Intel GM45 Express X doesn't like i915drmLooks like an intel-agp resource conflict - there's a clause in
drm_netbsd_ioremap to catch one case of this, but not in another situation where it can occur. The attached patch might fix this. -- Thanks, Jeremy Index: drm_memory.c =================================================================== RCS file: /cvsroot/src/sys/external/bsd/drm/dist/bsd-core/drm_memory.c,v retrieving revision 1.6 diff -u -p -r1.6 drm_memory.c --- drm_memory.c 2 Sep 2009 01:36:41 -0000 1.6 +++ drm_memory.c 4 Nov 2009 11:32:34 -0000 @@ -158,6 +158,10 @@ drm_netbsd_ioremap(struct drm_device *de dev->agp_map_data[i].flags, &map->bsh); if (rv) { dev->agp_map_data[i].mapped--; +#if NAGP_I810 > 0 /* XXX even more i810 kludge */ + if (agp_i810_borrow(map->offset, &map->bsh)) + return bus_space_vaddr(map->bst, map->bsh); +#endif DRM_DEBUG("ioremap: failed to map (%d)\n", rv); return NULL; } |
|
|
|
|
|
|
|
|
Re: xsrc/42262: Thinkpad T500 Intel GM45 Express X doesn't like i915drmHi,
It appears agp_i810_borrow does some sanity checks, so that only the base of the agp aperture can be mapped - i915_drm tries to map the status page at some other location, which is rejected by agp_i810_borrow. The attached patch should allow anywhere in the aperture to be mapped. (Please test with the previous patch too) -- Thanks, Jeremy Index: agp_i810.c =================================================================== RCS file: /cvsroot/src/sys/dev/pci/agp_i810.c,v retrieving revision 1.64 diff -u -p -r1.64 agp_i810.c --- agp_i810.c 4 May 2009 11:05:45 -0000 1.64 +++ agp_i810.c 14 Nov 2009 00:36:22 -0000 @@ -1,4 +1,4 @@ -/* $NetBSD: agp_i810.c,v 1.64 2009/05/04 11:05:45 markd Exp $ */ +/* $NetBSD: agp_i810.c,v 1.63 2009/02/19 05:58:37 markd Exp $ */ /*- * Copyright (c) 2000 Doug Rabson @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: agp_i810.c,v 1.64 2009/05/04 11:05:45 markd Exp $"); +__KERNEL_RCSID(0, "$NetBSD: agp_i810.c,v 1.63 2009/02/19 05:58:37 markd Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -84,6 +84,7 @@ struct agp_i810_softc { /* XXX hack, see below */ static bus_addr_t agp_i810_vga_regbase; +static bus_size_t agp_i810_vga_regsize; static bus_space_handle_t agp_i810_vga_bsh; static u_int32_t agp_i810_get_aperture(struct agp_softc *); @@ -385,6 +385,7 @@ agp_i810_attach(device_t parent, device_ * of VGA chip registers */ agp_i810_vga_regbase = mmadr; + agp_i810_vga_regsize = mmadrsize; agp_i810_vga_bsh = isc->bsh; return agp_i810_init(sc); @@ -398,7 +399,8 @@ int agp_i810_borrow(bus_addr_t base, bus_space_handle_t *hdlp) { - if (!agp_i810_vga_regbase || base != agp_i810_vga_regbase) + if (!agp_i810_vga_regbase || base < agp_i810_vga_regbase + || base > agp_i810_vga_regbase + agp_i810_vga_regsize) return 0; *hdlp = agp_i810_vga_bsh; return 1; |
|
|
|
|
|
|
|
|
Re: xsrc/42262: Thinkpad T500 Intel GM45 Express X doesn't like i915drmHi,
After putting some more cycles into this, I think the problem is the same as stated before (can't submap part of agp space), just I've been looking in the wrong place. The attached patch should DTRT, no need to test with the previous two patches. -- Thanks, Jeremy |
|
|
|
|
|
Re: xsrc/42262: Thinkpad T500 Intel GM45 Express X doesn't like i915drmS.P.Zeidler wrote:
> The following reply was made to PR xsrc/42262; it has been noted by GNATS. > > From: "S.P.Zeidler" <spz@...> > To: Jeremy Morse <jeremy.morse@...> > Cc: gnats-bugs@... > Subject: Re: xsrc/42262: Thinkpad T500 Intel GM45 Express X doesn't like > i915drm > Date: Sat, 21 Nov 2009 10:16:44 +0100 > > Hi Jeremy, > > Thus wrote Jeremy Morse (jeremy.morse@...): > > > > After putting some more cycles into this, I think the problem is the > > > same as stated before (can't submap part of agp space), just I've been > > > looking in the wrong place. The attached patch should DTRT, no need to > > > test with the previous two patches. > > A kernel with this patch (otherwise current as of 20091116) freezes > from 'X -verbose 4 -config xorg.conf.new' at: > (==) Depth 24 pixmap format is 32 bpp > (II) do I need RAC? No, I don't. > (II) resource ranges after preInit: > [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] > [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] > [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] > [3] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD) > [4] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD) > [5] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD) > [6] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] > [7] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] > [8] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU) > [9] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU) > (II) intel(0): Kernel reported 491520 total, 0 used > (II) intel(0): I830CheckAvailableMemory: 1966080 kB available > (WW) intel(0): DRI2 requires UXA > drmOpenDevice: node name is /dev/dri/card0 > drmOpenDevice: open result is 16, (OK) > > The machine needs to have all power sources removed to reboot after that, > otherwise it hangs after 'mainbus0 (root)'. xsrc/42262 my screen remains black, but the machine doesn't hang, but my /var/log/messages is flooded with drm messages. I have appended part of my /var/log/messages ad /var/log/Xorg.0.log. Regards, Matthias Nov 21 12:09:10 slug /netbsd: Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, Nov 21 12:09:10 slug /netbsd: 2006, 2007, 2008, 2009 Nov 21 12:09:10 slug /netbsd: The NetBSD Foundation, Inc. All rights reserved. Nov 21 12:09:10 slug /netbsd: Copyright (c) 1982, 1986, 1989, 1991, 1993 Nov 21 12:09:10 slug /netbsd: The Regents of the University of California. All rights reserved. Nov 21 12:09:10 slug /netbsd: Nov 21 12:09:10 slug /netbsd: NetBSD 5.99.22 (SLUG) #17: Wed Nov 18 20:12:52 CET 2009 Nov 21 12:09:10 slug /netbsd: leo@slug:/usr/src/sys/arch/i386/compile/SLUG Nov 21 12:09:10 slug /netbsd: total memory = 2016 MB Nov 21 12:09:10 slug /netbsd: avail memory = 1977 MB Nov 21 12:09:10 slug /netbsd: timecounter: Timecounters tick every 10.000 msec Nov 21 12:09:10 slug /netbsd: RTC BIOS diagnostic error 0x11<memory_size> Nov 21 12:09:10 slug /netbsd: timecounter: Timecounter "i8254" frequency 1193182 Hz quality 100 Nov 21 12:09:10 slug /netbsd: Dell Inc. OptiPlex 755 Nov 21 12:09:10 slug /netbsd: mainbus0 (root) Nov 21 12:09:10 slug /netbsd: cpu0 at mainbus0 apid 0: Intel 686-class, 2327MHz, id 0x6fb Nov 21 12:09:10 slug /netbsd: cpu0: Intel(R) On Demand Clock Modulation (state disabled) Nov 21 12:09:10 slug /netbsd: cpu1 at mainbus0 apid 1: Intel 686-class, 2327MHz, id 0x6fb Nov 21 12:09:10 slug /netbsd: ioapic0 at mainbus0 apid 8: pa 0xfec00000, version 20, 24 pins Nov 21 12:09:10 slug /netbsd: acpi0 at mainbus0: Intel ACPICA 20090730 Nov 21 12:09:10 slug /netbsd: acpi0: X/RSDT: OemId <DELL , B9K ,00000015>, AslId <ASL ,00000061> Nov 21 12:09:10 slug /netbsd: ACPI Warning for \_SB_.PCI0.PCI3._PRT: Return Package has no elements (empty) (20090730/nspredef-547) Nov 21 12:09:10 slug /netbsd: ACPI Warning for \_SB_.PCI0.PCI5._PRT: Return Package has no elements (empty) (20090730/nspredef-547) Nov 21 12:09:10 slug /netbsd: ACPI Warning for \_SB_.PCI0.PCI6._PRT: Return Package has no elements (empty) (20090730/nspredef-547) Nov 21 12:09:10 slug /netbsd: acpi0: SCI interrupting at int 9 Nov 21 12:09:10 slug /netbsd: acpi0: fixed-feature power button present Nov 21 12:09:10 slug /netbsd: timecounter: Timecounter "ACPI-Fast" frequency 3579545 Hz quality 1000 Nov 21 12:09:10 slug /netbsd: ACPI-Fast 24-bit timer Nov 21 12:09:10 slug /netbsd: acpibut0 at acpi0 (VBTN, PNP0C0C): ACPI Power Button Nov 21 12:09:10 slug /netbsd: npx0 at acpi0 (FPU, PNP0C04): io 0xf0-0xff irq 13 Nov 21 12:09:10 slug /netbsd: npx0: reported by CPUID; using exception 16 Nov 21 12:09:10 slug /netbsd: pcppi0 at acpi0 (SPK, PNP0800): io 0x61 Nov 21 12:09:10 slug /netbsd: midi0 at pcppi0: PC speaker Nov 21 12:09:10 slug /netbsd: spkr0 at pcppi0 Nov 21 12:09:10 slug /netbsd: sysbeep0 at pcppi0 Nov 21 12:09:10 slug /netbsd: attimer0 at acpi0 (TMR, PNP0100): io 0x40-0x5f irq 0 Nov 21 12:09:10 slug /netbsd: lpt0 at acpi0 (PRT, PNP0401): io 0x378-0x37f,0x778-0x77f irq 7 Nov 21 12:09:10 slug /netbsd: com0 at acpi0 (COMA, PNP0501-1): io 0x3f8-0x3ff irq 4 Nov 21 12:09:10 slug /netbsd: com0: ns16550a, working fifo Nov 21 12:09:10 slug /netbsd: TPM (SMO1200) at acpi0 not configured Nov 21 12:09:10 slug /netbsd: hpet0 at acpi0 (HPET, PNP0103): mem 0xfed00000-0xfed003ff Nov 21 12:09:10 slug /netbsd: timecounter: Timecounter "hpet0" frequency 14318179 Hz quality 2000 Nov 21 12:09:10 slug /netbsd: apm0 at acpi0: Power Management spec V1.2 Nov 21 12:09:10 slug /netbsd: attimer0: attached to pcppi0 Nov 21 12:09:10 slug /netbsd: pci0 at mainbus0 bus 0: configuration mode 1 Nov 21 12:09:10 slug /netbsd: pci0: i/o space, memory space enabled, rd/line, rd/mult, wr/inv ok Nov 21 12:09:10 slug /netbsd: pchb0 at pci0 dev 0 function 0: vendor 0x8086 product 0x29b0 (rev. 0x02) Nov 21 12:09:10 slug /netbsd: agp0 at pchb0: detected 6140k stolen memory Nov 21 12:09:10 slug /netbsd: agp0: aperture at 0xd0000000, size 0x10000000 Nov 21 12:09:10 slug /netbsd: vga0 at pci0 dev 2 function 0: vendor 0x8086 product 0x29b2 (rev. 0x02) Nov 21 12:09:10 slug /netbsd: wsdisplay0 at vga0 kbdmux 1: console (80x25, vt100 emulation) Nov 21 12:09:10 slug /netbsd: wsmux1: connecting to wsdisplay0 Nov 21 12:09:10 slug /netbsd: i915drm0 at vga0: Intel Q35 Nov 21 12:09:10 slug /netbsd: i915drm0: AGP at 0xd0000000 256MB Nov 21 12:09:10 slug /netbsd: i915drm0: Initialized i915 1.6.0 20080730 Nov 21 12:09:10 slug /netbsd: vendor 0x8086 product 0x29b3 (miscellaneous display, revision 0x02) at pci0 dev 2 function 1 not configured Nov 21 12:09:10 slug /netbsd: vendor 0x8086 product 0x29b4 (miscellaneous communications, revision 0x02) at pci0 dev 3 function 0 not configured Nov 21 12:09:10 slug /netbsd: vendor 0x8086 product 0x29b6 (IDE mass storage, interface 0x85, revision 0x02) at pci0 dev 3 function 2 not configured Nov 21 12:09:10 slug /netbsd: vendor 0x8086 product 0x29b7 (serial communications, interface 0x02, revision 0x02) at pci0 dev 3 function 3 not configured Nov 21 12:09:10 slug /netbsd: wm0 at pci0 dev 25 function 0: 82801I (AMT) LAN Controller, rev. 2 Nov 21 12:09:10 slug /netbsd: wm0: interrupting at ioapic0 pin 21 Nov 21 12:09:10 slug /netbsd: wm0: PCI-Express bus Nov 21 12:09:10 slug /netbsd: wm0: FLASH Nov 21 12:09:10 slug /netbsd: wm0: Ethernet address 00:21:9b:58:0d:33 Nov 21 12:09:10 slug /netbsd: ukphy0 at wm0 phy 1: OUI 0x005500, model 0x0039, rev. 0 Nov 21 12:09:10 slug /netbsd: ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-FDX, auto Nov 21 12:09:10 slug /netbsd: uhci0 at pci0 dev 26 function 0: vendor 0x8086 product 0x2937 (rev. 0x02) Nov 21 12:09:10 slug /netbsd: uhci0: interrupting at ioapic0 pin 16 Nov 21 12:09:10 slug /netbsd: usb0 at uhci0: USB revision 1.0 Nov 21 12:09:10 slug /netbsd: uhci1 at pci0 dev 26 function 1: vendor 0x8086 product 0x2938 (rev. 0x02) Nov 21 12:09:10 slug /netbsd: uhci1: interrupting at ioapic0 pin 17 Nov 21 12:09:10 slug /netbsd: usb1 at uhci1: USB revision 1.0 Nov 21 12:09:10 slug /netbsd: ehci0 at pci0 dev 26 function 7: vendor 0x8086 product 0x293c (rev. 0x02) Nov 21 12:09:10 slug /netbsd: ehci0: interrupting at ioapic0 pin 22 Nov 21 12:09:10 slug /netbsd: ehci0: EHCI version 1.0 Nov 21 12:09:10 slug /netbsd: ehci0: wrong number of companions (3 != 2) Nov 21 12:09:10 slug /netbsd: ehci0: ohci or uhci probably not configured Nov 21 12:09:10 slug /netbsd: ehci0: companion controllers, 2 ports each: uhci0 uhci1 Nov 21 12:09:10 slug /netbsd: usb2 at ehci0: USB revision 2.0 Nov 21 12:09:10 slug /netbsd: hdaudio0 at pci0 dev 27 function 0: HD Audio Controller Nov 21 12:09:10 slug /netbsd: hdaudio0: interrupting at ioapic0 pin 16 Nov 21 12:09:10 slug /netbsd: hdafg0 at hdaudio0 vendor 0x11D4 product 0x1984 nid 0x01 (firmware configuration) Nov 21 12:09:10 slug /netbsd: hdafg0: DAC0:04, Analog Speaker: Jack (Green, 12) Nov 21 12:09:10 slug /netbsd: hdafg0: ADC1:08, Analog Mic In: Jack (Pink, 14) Nov 21 12:09:10 slug /netbsd: hdafg0: ADC2:09, Analog Line In: Jack (Blue, 15) Nov 21 12:09:10 slug /netbsd: hdafg0: DAC3:03, Analog HP Out: Jack (Green, 11) Nov 21 12:09:10 slug /netbsd: hdafg0: 2ch/2ch 8000Hz-192000Hz 16/16 20/32 24/32 Nov 21 12:09:10 slug /netbsd: audio0 at hdafg0: full duplex, playback, capture, independent Nov 21 12:09:10 slug /netbsd: ppb0 at pci0 dev 28 function 0: vendor 0x8086 product 0x2940 (rev. 0x02) Nov 21 12:09:10 slug /netbsd: pci1 at ppb0 bus 1 Nov 21 12:09:10 slug /netbsd: pci1: i/o space, memory space enabled, rd/line, wr/inv ok Nov 21 12:09:10 slug /netbsd: uhci2 at pci0 dev 29 function 0: vendor 0x8086 product 0x2934 (rev. 0x02) Nov 21 12:09:10 slug /netbsd: uhci2: interrupting at ioapic0 pin 23 Nov 21 12:09:10 slug /netbsd: usb3 at uhci2: USB revision 1.0 Nov 21 12:09:10 slug /netbsd: uhci3 at pci0 dev 29 function 1: vendor 0x8086 product 0x2935 (rev. 0x02) Nov 21 12:09:10 slug /netbsd: uhci3: interrupting at ioapic0 pin 17 Nov 21 12:09:10 slug /netbsd: usb4 at uhci3: USB revision 1.0 Nov 21 12:09:10 slug /netbsd: uhci4 at pci0 dev 29 function 2: vendor 0x8086 product 0x2936 (rev. 0x02) Nov 21 12:09:10 slug /netbsd: uhci4: interrupting at ioapic0 pin 18 Nov 21 12:09:10 slug /netbsd: usb5 at uhci4: USB revision 1.0 Nov 21 12:09:10 slug /netbsd: ehci1 at pci0 dev 29 function 7: vendor 0x8086 product 0x293a (rev. 0x02) Nov 21 12:09:10 slug /netbsd: ehci1: interrupting at ioapic0 pin 23 Nov 21 12:09:10 slug /netbsd: ehci1: EHCI version 1.0 Nov 21 12:09:10 slug /netbsd: ehci1: companion controllers, 2 ports each: uhci2 uhci3 uhci4 Nov 21 12:09:10 slug /netbsd: usb6 at ehci1: USB revision 2.0 Nov 21 12:09:10 slug /netbsd: ppb1 at pci0 dev 30 function 0: vendor 0x8086 product 0x244e (rev. 0x92) Nov 21 12:09:10 slug /netbsd: pci2 at ppb1 bus 2 Nov 21 12:09:10 slug /netbsd: pci2: i/o space, memory space enabled Nov 21 12:09:10 slug /netbsd: ichlpcib0 at pci0 dev 31 function 0: vendor 0x8086 product 0x2914 (rev. 0x02) Nov 21 12:09:10 slug /netbsd: timecounter: Timecounter "ichlpcib0" frequency 3579545 Hz quality 1000 Nov 21 12:09:10 slug /netbsd: ichlpcib0: 24-bit timer Nov 21 12:09:10 slug /netbsd: ichlpcib0: TCO timer reboot disabled by hardware; hope SMBIOS properly handles it. Nov 21 12:09:10 slug /netbsd: ichlpcib0: TCO (watchdog) timer configured. Nov 21 12:09:10 slug /netbsd: ahcisata0 at pci0 dev 31 function 2: vendor 0x8086 product 0x2922 Nov 21 12:09:10 slug /netbsd: ahcisata0: interrupting at ioapic0 pin 18 Nov 21 12:09:10 slug /netbsd: ahcisata0: AHCI revision 1.2, 6 ports, 32 command slots, features 0xe722e0e0 Nov 21 12:09:10 slug /netbsd: atabus0 at ahcisata0 channel 0 Nov 21 12:09:10 slug /netbsd: atabus1 at ahcisata0 channel 1 Nov 21 12:09:10 slug /netbsd: atabus2 at ahcisata0 channel 2 Nov 21 12:09:10 slug /netbsd: atabus3 at ahcisata0 channel 3 Nov 21 12:09:10 slug /netbsd: atabus4 at ahcisata0 channel 5 Nov 21 12:09:10 slug /netbsd: ichsmb0 at pci0 dev 31 function 3: vendor 0x8086 product 0x2930 (rev. 0x02) Nov 21 12:09:10 slug /netbsd: ichsmb0: interrupting at ioapic0 pin 18 Nov 21 12:09:10 slug /netbsd: iic0 at ichsmb0: I2C bus Nov 21 12:09:10 slug /netbsd: spdmem0 at iic0 addr 0x50 Nov 21 12:09:10 slug /netbsd: spdmem0: DDR2 SDRAM, no parity or ECC, 2GB, 800MHz (PC2-6400) Nov 21 12:09:10 slug /netbsd: spdmem0: 14 rows, 10 cols, 2 ranks, 8 banks/chip, 2.50ns cycle time Nov 21 12:09:10 slug /netbsd: spdmem0: tAA-tRCD-tRP-tRAS: 6-6-6-18 Nov 21 12:09:10 slug /netbsd: spdmem0: voltage SSTL 1.8V, refresh time 7.8us (self-refreshing) Nov 21 12:09:10 slug /netbsd: isa0 at ichlpcib0 Nov 21 12:09:10 slug /netbsd: timecounter: Timecounter "clockinterrupt" frequency 100 Hz quality 0 Nov 21 12:09:10 slug /netbsd: timecounter: Timecounter "TSC" frequency 2327599260 Hz quality 3000 Nov 21 12:09:10 slug /netbsd: uhub0 at usb0: vendor 0x8086 UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 Nov 21 12:09:10 slug /netbsd: uhub0: 2 ports with 2 removable, self powered Nov 21 12:09:10 slug /netbsd: uhub1 at usb1: vendor 0x8086 UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 Nov 21 12:09:10 slug /netbsd: uhub1: 2 ports with 2 removable, self powered Nov 21 12:09:10 slug /netbsd: uhub2 at usb2: vendor 0x8086 EHCI root hub, class 9/0, rev 2.00/1.00, addr 1 Nov 21 12:09:10 slug /netbsd: uhub2: 6 ports with 6 removable, self powered Nov 21 12:09:10 slug /netbsd: uhub3 at usb3: vendor 0x8086 UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 Nov 21 12:09:10 slug /netbsd: uhub3: 2 ports with 2 removable, self powered Nov 21 12:09:10 slug /netbsd: uhub4 at usb4: vendor 0x8086 UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 Nov 21 12:09:10 slug /netbsd: uhub4: 2 ports with 2 removable, self powered Nov 21 12:09:10 slug /netbsd: uhub5 at usb5: vendor 0x8086 UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 Nov 21 12:09:10 slug /netbsd: uhub5: 2 ports with 2 removable, self powered Nov 21 12:09:10 slug /netbsd: uhub6 at usb6: vendor 0x8086 EHCI root hub, class 9/0, rev 2.00/1.00, addr 1 Nov 21 12:09:10 slug /netbsd: uhub6: 6 ports with 6 removable, self powered Nov 21 12:09:10 slug /netbsd: ahcisata0 port 0: device present, speed: 3.0Gb/s Nov 21 12:09:10 slug /netbsd: ahcisata0 port 1: device present, speed: 1.5Gb/s Nov 21 12:09:10 slug /netbsd: ahcisata0 port 3: device present, speed: 1.5Gb/s Nov 21 12:09:10 slug /netbsd: wd0 at atabus0 drive 0: <ST3160815AS> Nov 21 12:09:10 slug /netbsd: wd0: drive supports 16-sector PIO transfers, LBA48 addressing Nov 21 12:09:10 slug /netbsd: wd0: 149 GB, 310019 cyl, 16 head, 63 sec, 512 bytes/sect x 312500000 sectors Nov 21 12:09:10 slug /netbsd: wd0: drive supports PIO mode 4, DMA mode 2, Ultra-DMA mode 6 (Ultra/133) Nov 21 12:09:10 slug /netbsd: wd0(ahcisata0:0:0): using PIO mode 4, DMA mode 2, Ultra-DMA mode 6 (Ultra/133) (using DMA) Nov 21 12:09:10 slug /netbsd: atapibus0 at atabus1: 1 targets Nov 21 12:09:10 slug /netbsd: cd0 at atapibus0 drive 0: <TSSTcorpDVD-ROM TS-H353B, , D500> cdrom removable Nov 21 12:09:10 slug /netbsd: cd0: drive supports PIO mode 4, DMA mode 2, Ultra-DMA mode 2 (Ultra/33) Nov 21 12:09:10 slug /netbsd: cd0(ahcisata0:1:0): using PIO mode 4, DMA mode 2, Ultra-DMA mode 2 (Ultra/33) (using DMA) Nov 21 12:09:10 slug /netbsd: ahcisata0 port 2: PHY offline Nov 21 12:09:10 slug /netbsd: ahcisata0 port 5: PHY offline Nov 21 12:09:10 slug /netbsd: atapibus1 at atabus3: 1 targets Nov 21 12:09:10 slug /netbsd: cd1 at atapibus1 drive 0: <TSSTcorp CDDVDW SH-S223L, 0123556789KLMNOP, SB01> cdrom removable Nov 21 12:09:10 slug /netbsd: cd1: drive supports PIO mode 4, DMA mode 2, Ultra-DMA mode 5 (Ultra/100) Nov 21 12:09:10 slug /netbsd: cd1(ahcisata0:3:0): using PIO mode 4, DMA mode 2, Ultra-DMA mode 5 (Ultra/100) (using DMA) Nov 21 12:09:10 slug /netbsd: umass0 at uhub6 port 1 configuration 1 interface 0 Nov 21 12:09:10 slug /netbsd: umass0: Generic USB2.0-CRW, rev 2.00/51.95, addr 2 Nov 21 12:09:10 slug /netbsd: umass0: using SCSI over Bulk-Only Nov 21 12:09:10 slug /netbsd: scsibus0 at umass0: 2 targets, 4 luns per target Nov 21 12:09:10 slug /netbsd: sd0 at scsibus0 target 0 lun 0: <Generic-, Compact Flash, 1.00> disk removable Nov 21 12:09:10 slug /netbsd: sd0: drive offline Nov 21 12:09:10 slug /netbsd: sd1 at scsibus0 target 0 lun 1: <Generic-, SM/xD-Picture, 1.00> disk removable Nov 21 12:09:10 slug /netbsd: sd1: drive offline Nov 21 12:09:10 slug /netbsd: sd2 at scsibus0 target 0 lun 2: <Generic-, SD/MMC, 1.00> disk removable Nov 21 12:09:10 slug /netbsd: sd2: drive offline Nov 21 12:09:10 slug /netbsd: sd3 at scsibus0 target 0 lun 3: <Generic-, MS/MS-Pro, 1.00> disk removable Nov 21 12:09:10 slug /netbsd: sd3: drive offline Nov 21 12:09:10 slug /netbsd: ubt0 at uhub0 port 2 Nov 21 12:09:10 slug /netbsd: ubt0: ISSC ISSCEDRBTA, rev 2.00/3.73, addr 2 Nov 21 12:09:10 slug /netbsd: uhidev0 at uhub4 port 1 configuration 1 interface 0 Nov 21 12:09:10 slug /netbsd: uhidev0: Microsoft Natural<U+ae> Ergonomic Keyboard 4000, rev 2.00/1.73, addr 2, iclass 3/1 Nov 21 12:09:10 slug /netbsd: ukbd0 at uhidev0 Nov 21 12:09:10 slug /netbsd: pad0: outputs: 44100Hz, 16-bit, stereo Nov 21 12:09:10 slug /netbsd: audio1 at pad0: half duplex, playback, capture Nov 21 12:09:10 slug /netbsd: sd0(umass0:0:0:0): not ready, data = 00 00 00 00 3a 00 00 00 00 00 Nov 21 12:09:10 slug /netbsd: sd1(umass0:0:0:1): not ready, data = 00 00 00 00 3a 00 00 00 00 00 Nov 21 12:09:10 slug /netbsd: sd2(umass0:0:0:2): not ready, data = 00 00 00 00 3a 00 00 00 00 00 Nov 21 12:09:10 slug /netbsd: sd3(umass0:0:0:3): not ready, data = 00 00 00 00 3a 00 00 00 00 00 Nov 21 12:09:10 slug /netbsd: wskbd0 at ukbd0: console keyboard, using wsdisplay0 Nov 21 12:09:10 slug /netbsd: uhidev1 at uhub4 port 1 configuration 1 interface 1 Nov 21 12:09:10 slug /netbsd: uhidev1: Microsoft Natural<U+ae> Ergonomic Keyboard 4000, rev 2.00/1.73, addr 2, iclass 3/0 Nov 21 12:09:10 slug /netbsd: uhidev1: 1 report ids Nov 21 12:09:10 slug /netbsd: uhid0 at uhidev1 reportid 1: input=7, output=0, feature=0 Nov 21 12:09:10 slug /netbsd: sd0(umass0:0:0:0): not ready, data = 00 00 00 00 3a 00 00 00 00 00 Nov 21 12:09:10 slug /netbsd: sd1(umass0:0:0:1): not ready, data = 00 00 00 00 3a 00 00 00 00 00 Nov 21 12:09:10 slug /netbsd: sd2(umass0:0:0:2): not ready, data = 00 00 00 00 3a 00 00 00 00 00 Nov 21 12:09:10 slug /netbsd: sd3(umass0:0:0:3): not ready, data = 00 00 00 00 3a 00 00 00 00 00 Nov 21 12:09:10 slug /netbsd: sd0(umass0:0:0:0): not ready, data = 00 00 00 00 3a 00 00 00 00 00 Nov 21 12:09:10 slug /netbsd: sd1(umass0:0:0:1): not ready, data = 00 00 00 00 3a 00 00 00 00 00 Nov 21 12:09:10 slug /netbsd: sd2(umass0:0:0:2): not ready, data = 00 00 00 00 3a 00 00 00 00 00 Nov 21 12:09:10 slug /netbsd: sd3(umass0:0:0:3): not ready, data = 00 00 00 00 3a 00 00 00 00 00 Nov 21 12:09:10 slug /netbsd: boot device: wd0 Nov 21 12:09:10 slug /netbsd: root on wd0a dumps on wd0b Nov 21 12:09:10 slug /netbsd: root file system type: ffs Nov 21 12:09:10 slug /netbsd: uhidev2 at uhub5 port 1 configuration 1 interface 0 Nov 21 12:09:10 slug /netbsd: uhidev2: Darfon USB Optical Mouse, rev 1.10/3.00, addr 2, iclass 3/1 Nov 21 12:09:10 slug /netbsd: ums0 at uhidev2: 3 buttons and Z dir Nov 21 12:09:10 slug /netbsd: wsmouse0 at ums0 mux 0 Nov 21 12:09:10 slug /netbsd: uhub4: device problem, disabling port 2 Nov 21 12:09:10 slug /netbsd: uhidev3 at uhub5 port 2 configuration 1 interface 0 Nov 21 12:09:10 slug /netbsd: uhidev3: Mega World Thrustmaster dual analog 3.2, rev 1.10/1.01, addr 3, iclass 3/0 Nov 21 12:09:10 slug /netbsd: uhid1 at uhidev3: input=7, output=4, feature=0 Nov 21 12:09:10 slug /netbsd: wsdisplay0: screen 1 added (80x25, vt100 emulation) Nov 21 12:09:10 slug /netbsd: wsdisplay0: screen 2 added (80x25, vt100 emulation) Nov 21 12:09:10 slug /netbsd: wsdisplay0: screen 3 added (80x25, vt100 emulation) Nov 21 12:09:10 slug /netbsd: wsdisplay0: screen 4 added (80x25, vt100 emulation) Nov 21 12:09:10 slug ntpdate[152]: step time server 10.33.66.130 offset -1.009047 sec Nov 21 12:09:10 slug savecore: no core dump Nov 21 12:09:11 slug rpc.statd: Starting Nov 21 12:09:12 slug /netbsd: bthub0 at ubt0 local-bdaddr 00:11:67:b0:4b:90 Nov 21 12:09:11 slug rpc.statd: Starting Nov 21 12:09:12 slug ntpd[312]: ntpd 4.2.4p7-o Sat Jun 13 11:04:03 UTC 2009 (import) Nov 21 12:09:13 slug ntpd[323]: precision = 0.436 usec Nov 21 12:09:13 slug ntpd[323]: Listening on interface #0 wildcard, 0.0.0.0#123 Disabled Nov 21 12:09:13 slug ntpd[323]: Listening on interface #1 wildcard, ::#123 Disabled Nov 21 12:09:13 slug ntpd[323]: Listening on interface #2 wm0, fe80::221:9bff:fe58:d33#123 Enabled Nov 21 12:09:13 slug ntpd[323]: Listening on interface #3 wm0, 2001:a60:f057:0:221:9bff:fe58:d33#123 Enabled Nov 21 12:09:13 slug ntpd[323]: Listening on interface #4 wm0, 10.33.66.132#123 Enabled Nov 21 12:09:13 slug ntpd[323]: Listening on interface #5 lo0, 127.0.0.1#123 Enabled Nov 21 12:09:13 slug ntpd[323]: Listening on interface #6 lo0, ::1#123 Enabled Nov 21 12:09:13 slug ntpd[323]: Listening on interface #7 lo0, fe80::1#123 Enabled Nov 21 12:09:13 slug ntpd[323]: Listening on routing socket on fd #28 for interface updates Nov 21 12:09:13 slug ntpd[323]: kernel time sync status 0x2040<UNSYNC,NANO,MODE=0x0=PLL,CLK=0x0=A> Nov 21 12:09:13 slug ntpd[323]: frequency initialized 45.243 PPM from /var/db/ntp.drift Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_open] [drm:pid443:drm_open] open_count = 0 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_open_helper] [drm:pid443:drm_open_helper] pid = 443, minor = 0 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] offset = 0x00000000, size = 0x00002000, type = 2 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] 8192 13 0xc2f67000 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] Added map 2 0xc2f67000/0x2000 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_firstopen] [drm:pid443:drm_firstopen] Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0246400, nr=0x00, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0246400, nr=0x00, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_close] [drm:pid443:drm_close] open_count = 1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_close] [drm:pid443:drm_close] pid = 443, device = 0x0xcc472e00, open_count = 1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_close] [drm:pid443:drm_close] setting open_count 1 to 1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_lastclose] [drm:pid443:drm_lastclose] Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_open] [drm:pid443:drm_open] open_count = 0 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_open_helper] [drm:pid443:drm_open_helper] pid = 443, minor = 0 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] offset = 0x00000000, size = 0x00002000, type = 2 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] 8192 13 0xc2f67000 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] Added map 2 0xc2f67000/0x2000 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_firstopen] [drm:pid443:drm_firstopen] Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0246400, nr=0x00, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0246400, nr=0x00, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_close] [drm:pid443:drm_close] open_count = 1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_close] [drm:pid443:drm_close] pid = 443, device = 0x0xcc472e00, open_count = 1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_close] [drm:pid443:drm_close] setting open_count 1 to 1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_lastclose] [drm:pid443:drm_lastclose] Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_open] [drm:pid443:drm_open] open_count = 0 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_open_helper] [drm:pid443:drm_open_helper] pid = 443, minor = 0 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] offset = 0x00000000, size = 0x00002000, type = 2 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] 8192 13 0xc2f67000 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] Added map 2 0xc2f67000/0x2000 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_firstopen] [drm:pid443:drm_firstopen] Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0106407, nr=0x07, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0086401, nr=0x01, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0086401, nr=0x01, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0106407, nr=0x07, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0186415, nr=0x15, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] offset = 0x00000000, size = 0x00002000, type = 2 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] Found kernel map 2 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] Added map 2 0xc2f67000/0x2000 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0086426, nr=0x26, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0086426, nr=0x26, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0086420, nr=0x20, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ctxbitmap_next] [drm:pid443:drm_ctxbitmap_next] drm_ctxbitmap_next bit : 1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addctx] [drm:pid443:drm_addctx] 1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0x80086422, nr=0x22, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0x8008642a, nr=0x2a, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_lock] [drm:pid443:drm_lock] 1 (pid 443) requests lock (0x00000000), flags = 0x00000000 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_lock] [drm:pid443:drm_lock] 1 has lock Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0x8004667d, nr=0x7d, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0x8004667c, nr=0x7c, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0246400, nr=0x00, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0246400, nr=0x00, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0086446, nr=0x46, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0186415, nr=0x15, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] offset = 0xfea00000, size = 0x00080000, type = 1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] Found kernel map 1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] Added map 1 0xfea00000/0x80000 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0186415, nr=0x15, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] offset = 0xd0000000, size = 0x00020000, type = 3 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] Added map 3 0xd0000000/0x20000 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0x80446440, nr=0x40, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_netbsd_ioremap] [drm:pid443:drm_netbsd_ioremap] ioremap: flags 6 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_netbsd_ioremap] [drm:pid443:drm_netbsd_ioremap] ioremap mem found for d0000000, 20000: 0x0 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0186415, nr=0x15, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] offset = 0xd4000000, size = 0x00d20000, type = 3 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] Added map 3 0xd4000000/0xd20000 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0186415, nr=0x15, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] offset = 0xd1000000, size = 0x01000000, type = 3 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] Added map 3 0xd1000000/0x1000000 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0186415, nr=0x15, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] offset = 0xd2000000, size = 0x01000000, type = 3 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] Added map 3 0xd2000000/0x1000000 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0186415, nr=0x15, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] offset = 0xd8000000, size = 0x02000000, type = 3 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_addmap] [drm:pid443:drm_addmap] Added map 3 0xd8000000/0x2000000 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0x800c644a, nr=0x4a, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0x80086447, nr=0x47, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0x80086447, nr=0x47, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0x2000641e, nr=0x1e, dev 0xcc472e00, auth=1 Nov 21 12:09:17 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] no function Nov 21 12:09:18 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0x8004644d, nr=0x4d, dev 0xcc472e00, auth=1 Nov 21 12:09:18 slug syslogd[146]: last message repeated 3 times Nov 21 12:09:18 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0x80086408, nr=0x08, dev 0xcc472e00, auth=1 Nov 21 12:09:18 slug /netbsd: [drm:pid443:drm_modeset_ctl] [drm:pid443:drm_modeset_ctl] num_crtcs=2 Nov 21 12:09:18 slug /netbsd: [drm:pid443:drm_modeset_ctl] [drm:pid443:drm_modeset_ctl] crtc=0 Nov 21 12:09:18 slug /netbsd: [drm:pid443:drm_modeset_ctl] [drm:pid443:drm_modeset_ctl] post-modeset Nov 21 12:09:18 slug /netbsd: [drm:pid Nov 21 12:09:18 slug /netbsd: 443:drm_ioctl] pid=443, cmd=0x8004644d, nr=0x4d, dev 0xcc472e00, auth=1 Nov 21 12:09:18 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0x8004644d, nr=0x4d, dev 0xcc472e00, auth=1 Nov 21 12:09:18 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0x80086451, nr=0x51, dev 0xcc472e00, auth=1 Nov 21 12:09:18 slug /netbsd: [drm:pid443:i915_set_status_page] [drm:pid443:i915_set_status_page] set status page addr 0x0083b000 Nov 21 12:09:18 slug /netbsd: [drm:pid443:i915_set_status_page] [drm:pid443:i915_set_status_page] load hws HWS_PGA with gfx mem 0x83b000 Nov 21 12:09:18 slug /netbsd: [drm:pid443:i915_set_status_page] [drm:pid443:i915_set_status_page] load hws at 0xcd9b0000 Nov 21 12:09:18 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0106403, nr=0x03, dev 0xcc472e00, auth=1 Nov 21 12:09:18 slug /netbsd: [drm:pid443:drm_irq_by_busid] [drm:pid443:drm_irq_by_busid] 0:2:0 => IRQ 11 Nov 21 12:09:18 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0x80086414, nr=0x14, dev 0xcc472e00, auth=1 Nov 21 12:09:18 slug /netbsd: [drm:pid443:drm_irq_install] [drm:pid443:drm_irq_install] irq=11 Nov 21 12:09:18 slug /netbsd: i915drm0: interrupting at ioapic0 pin 16 Nov 21 12:09:18 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0x8004644d, nr=0x4d, dev 0xcc472e00, auth=1 Nov 21 12:09:18 slug /netbsd: [drm:pid0:i915_driver_irq_handler] [drm:pid0:i915_driver_irq_handler] iir = 0x00000040, pipestats a = 0x00020003, b = 0x00000000 Nov 21 12:09:18 slug /netbsd: [drm:pid0:i915_driver_irq_handler] [drm:pid0:i915_driver_irq_handler] iir = 0x00000040, pipestats a = 0x00020203, b = 0x00000000 Nov 21 12:09:19 slug syslogd[146]: last message repeated 58 times Nov 21 12:09:19 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0x8004644d, nr=0x4d, dev 0xcc472e00, auth=1 Nov 21 12:09:19 slug /netbsd: [drm:pid0:i915_driver_irq_handler] [drm:pid0:i915_driver_irq_handler] iir = 0x00000040, pipestats a = 0x00020203, b = 0x00000000 Nov 21 12:09:19 slug syslogd[146]: last message repeated 4 times Nov 21 12:09:19 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0xc0046444, nr=0x44, dev 0xcc472e00, auth=1 Nov 21 12:09:19 slug /netbsd: [drm:pid443:i915_emit_irq] [drm:pid443:i915_emit_irq] Nov 21 12:09:19 slug /netbsd: [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0x80046445, nr=0x45, dev 0xcc472e00, auth=1 Nov 21 12:09:19 slug /netbsd: [drm:pid443:i915_wait_irq] [drm:pid443:i915_wait_irq] irq_nr=1 breadcrumb=0 Nov 21 12:09:19 slug /netbsd: [drm:pid443:i915_user_irq_get] [drm:pid443:i915_user_irq_get] Nov 21 12:09:19 slug /netbsd: [drm:pid443:i915_enable_irq] [drm:pid443:i915_enable_irq] irq_enable_reg = 0xffffffaf, mask = 0x00000002 Nov 21 12:09:19 slug /netbsd: [drm:pid0:i915_driver_irq_handler] [drm:pid0:i915_driver_irq_handler] iir = 0x00000040, pipestats a = 0x00020203, b = 0x00000000 Nov 21 12:09:22 slug syslogd[146]: last message repeated 179 times X.Org X Server 1.6.3 Release Date: 2009-7-31 X Protocol Version 11, Revision 0 Build Operating System: NetBSD-5.99.19-i386 The NetBSD Foundation Current Operating System: NetBSD slug 5.99.22 NetBSD 5.99.22 (SLUG) #17: Wed Nov 18 20:12:52 CET 2009 leo@slug:/usr/src/sys/arch/i386/compile/SLUG i386 Build Date: 07 October 2009 04:23:24PM Before reporting problems, check http://www.pkgsrc.org/ to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Sat Nov 21 12:09:15 2009 (==) Using config file: "/etc/XF86Config" Parse error on line 4 of section Files in file /etc/XF86Config Ignoring obsolete keyword "RgbPath". (==) ServerLayout "Layout0" (**) |-->Screen "screen0" (0) (**) | |-->Monitor "tmds-1" (**) | |-->Device "vga0" (**) |-->Input Device "Mouse0" (**) |-->Input Device "Keyboard0" (**) Option "DontZap" "True" (**) Option "DontZoom" "True" (**) Option "AllowNonLocalXvidtune" "true" (**) Option "AIGLX" "off" (==) Not automatically adding devices (==) Not automatically enabling devices (WW) The directory "/usr/pkg/lib/X11/fonts/ttf" does not exist. Entry deleted from font path. (WW) The directory "/usr/pkg/lib/X11/fonts/OTF" does not exist. Entry deleted from font path. (**) FontPath set to: /usr/pkg/lib/X11/fonts/75dpi/:unscaled, /usr/pkg/lib/X11/fonts/100dpi/:unscaled, /usr/pkg/lib/X11/fonts/misc/:unscaled, /usr/pkg/lib/X11/fonts/75dpi, /usr/pkg/lib/X11/fonts/100dpi, /usr/pkg/lib/X11/fonts/misc, /usr/pkg/lib/X11/fonts/TTF, /usr/pkg/lib/X11/fonts/Type1, /usr/pkg/lib/X11/fonts/misc/, /usr/pkg/lib/X11/fonts/TTF/, /usr/pkg/lib/X11/fonts/Type1/, /usr/pkg/lib/X11/fonts/100dpi/, /usr/pkg/lib/X11/fonts/75dpi/, built-ins (==) ModulePath set to "/usr/pkg/lib/xorg/modules" (II) Loader magic: 0x5e0 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 5.0 X.Org XInput driver : 4.0 X.Org Server Extension : 2.0 (II) Loader running on netbsd (--) Using wscons driver on /dev/ttyE4 in pcvt compatibility mode (version 3.32) (--) using VT number 5 (--) PCI:*(0:0:2:0) 8086:29b2:1028:0211 rev 2, Mem @ 0xfea00000/524288, 0xd0000000/268435456, 0xfeb00000/1048576, I/O @ 0x0000ec90/8 (--) PCI: (0:0:2:1) 8086:29b3:1028:0211 rev 2, Mem @ 0xfea80000/524288 (II) System resource ranges: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file. (II) "dbe" will be loaded. This was enabled by default and also specified in the config file. (II) "glx" will be loaded. This was enabled by default and also specified in the config file. (II) "dri" will be loaded. This was enabled by default and also specified in the config file. (II) "dri2" will be loaded by default. (II) LoadModule: "dbe" (II) Loading /usr/pkg/lib/xorg/modules/extensions//libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 1.6.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "extmod" (II) Loading /usr/pkg/lib/xorg/modules/extensions//libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 1.6.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "type1" (WW) Warning, couldn't open module type1 (II) UnloadModule: "type1" (EE) Failed to load module "type1" (module does not exist, 0) (II) LoadModule: "freetype" (WW) Warning, couldn't open module freetype (II) UnloadModule: "freetype" (EE) Failed to load module "freetype" (module does not exist, 0) (II) LoadModule: "dri" (II) Loading /usr/pkg/lib/xorg/modules/extensions//libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 1.6.3, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (II) Loading extension XFree86-DRI (II) LoadModule: "glx" (II) Loading /usr/pkg/lib/xorg/modules/extensions//libglx.so (II) Module glx: vendor="X.Org Foundation" compiled for 1.6.3, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (**) AIGLX disabled (II) Loading extension GLX (II) LoadModule: "dri2" (II) Loading /usr/pkg/lib/xorg/modules/extensions//libdri2.so (II) Module dri2: vendor="X.Org Foundation" compiled for 1.6.3, module version = 1.1.0 ABI class: X.Org Server Extension, version 2.0 (II) Loading extension DRI2 (II) LoadModule: "intel" (II) Loading /usr/pkg/lib/xorg/modules/drivers//intel_drv.so (II) Module intel: vendor="X.Org Foundation" compiled for 1.6.3, module version = 2.7.1 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 5.0 (II) LoadModule: "mouse" (II) Loading /usr/pkg/lib/xorg/modules/input//mouse_drv.so (II) Module mouse: vendor="X.Org Foundation" compiled for 1.6.3, module version = 1.4.0 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 4.0 (II) LoadModule: "kbd" (II) Loading /usr/pkg/lib/xorg/modules/input//kbd_drv.so (II) Module kbd: vendor="X.Org Foundation" compiled for 1.6.3, module version = 1.3.2 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 4.0 (II) intel: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, IGD_GM, IGD_G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, Mobile Intel® GM45 Express Chipset, Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41 (II) Primary Device is: PCI 00@00:02:0 (II) resource ranges after xf86ClaimFixedResources() call: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) resource ranges after probing: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B] [4] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [5] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [6] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [7] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [8] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B] [9] 0 0 0x000003c0 - 0x000003df (0x20) IS[B] (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/pkg/lib/xorg/modules//libvgahw.so (II) Module vgahw: vendor="X.Org Foundation" compiled for 1.6.3, module version = 0.1.0 ABI class: X.Org Video Driver, version 5.0 (II) Loading sub module "ramdac" (II) LoadModule: "ramdac" (II) Module "ramdac" already built-in (**) intel(0): Depth 24, (--) framebuffer bpp 32 (==) intel(0): RGB weight 888 (==) intel(0): Default visual is TrueColor (**) intel(0): Option "AccelMethod" "XAA" (II) intel(0): Integrated Graphics Chipset: Intel(R) Q35 (--) intel(0): Chipset: "Q35" (--) intel(0): Linear framebuffer at 0xD0000000 (--) intel(0): IO registers at addr 0xFEA00000 (WW) intel(0): libpciaccess reported 0 rom size, guessing 64kB (**) intel(0): Using XAA for acceleration (II) intel(0): 2 display pipes available. (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Module "ddc" already built-in (II) Loading sub module "i2c" (II) LoadModule: "i2c" (II) Module "i2c" already built-in (II) intel(0): Output VGA using monitor section tmds-1 (II) intel(0): I2C bus "SDVOCTRL_E for SDVOB" initialized. (II) intel(0): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B" registered at address 0x70. (II) intel(0): I2C bus "SDVOB DDC Bus" initialized. (II) intel(0): Output TMDS-1 using monitor section tmds-1 (II) intel(0): SDVOB: device VID/DID: 04:AA.03, clock range 25.0MHz - 165.0MHz (II) intel(0): SDVOB: 1 input channel (II) intel(0): SDVOB: TMDS0 output reported (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" initialized. (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" registered at address 0x72. (II) intel(0): No SDVO device found on SDVOC (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" removed. (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" removed. (II) intel(0): Current clock rate multiplier: 8 (WW) intel(0): remove MTRR a0000 - b0000 (II) intel(0): Resizable framebuffer: not available (1 2) (II) intel(0): I2C device "SDVOB DDC Bus:E-EDID segment register" registered at address 0x60. (II) intel(0): I2C device "SDVOB DDC Bus:ddc2" registered at address 0xA0. (EE) intel(0): Unable to write to SDVOCTRL_E for SDVOB Slave 0x70. (EE) intel(0): Unable to write to SDVOCTRL_E for SDVOB Slave 0x70. (EE) intel(0): Unable to write to SDVOCTRL_E for SDVOB Slave 0x70. (II) intel(0): EDID vendor "ACR", prod id 39 (II) intel(0): Output VGA disconnected (II) intel(0): Output TMDS-1 connected (II) intel(0): Using user preference for initial modes (II) intel(0): Output TMDS-1 using initial mode 1680x1050 (WW) intel(0): remove MTRR a0000 - b0000 (II) intel(0): detected 2048 kB GTT. (II) intel(0): detected 6140 kB stolen memory. (==) intel(0): video overlay key set to 0x101fe (==) intel(0): Using gamma correction (1.0, 1.0, 1.0) (==) intel(0): DPI set to (96, 96) (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Loading /usr/pkg/lib/xorg/modules//libfb.so (II) Module fb: vendor="X.Org Foundation" compiled for 1.6.3, module version = 1.0.0 ABI class: X.Org ANSI C Emulation, version 0.4 (II) Loading sub module "xaa" (II) LoadModule: "xaa" (II) Loading /usr/pkg/lib/xorg/modules//libxaa.so (II) Module xaa: vendor="X.Org Foundation" compiled for 1.6.3, module version = 1.2.1 ABI class: X.Org Video Driver, version 5.0 (II) intel(0): Comparing regs from server start up to After PreInit (==) Depth 24 pixmap format is 32 bpp (II) do I need RAC? No, I don't. (II) resource ranges after preInit: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD) [4] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD) [5] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD) [6] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [7] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [8] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU) [9] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU) (II) intel(0): Kernel reported 491520 total, 0 used (II) intel(0): I830CheckAvailableMemory: 1966080 kB available (WW) intel(0): DRI2 requires UXA drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 10, (OK) drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 10, (OK) drmOpenByBusid: Searching for BusID pci:0000:00:02.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 10, (OK) drmOpenByBusid: drmOpenMinor returns 10 drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0 (II) [drm] DRM interface version 1.2 (II) [drm] DRM open master succeeded. (II) intel(0): [drm] Using the DRM lock SAREA also for drawables. (II) intel(0): [drm] framebuffer mapped by ddx driver (II) intel(0): [drm] added 1 reserved context for kernel (II) intel(0): X context handle = 0x1 (II) intel(0): [drm] installed DRM signal handler (**) intel(0): Framebuffer compression disabled (**) intel(0): Tiling enabled (==) intel(0): VideoRam: 262144 KB (II) intel(0): Attempting memory allocation with tiled buffers. (II) intel(0): Allocating 5040 scanlines for pixmap cache (II) intel(0): Tiled allocation successful. (II) intel(0): [drm] Registers = 0xfea00000 (II) intel(0): [drm] ring buffer = 0xd0000000 (II) intel(0): [drm] mapped front buffer at 0xd4000000, handle = 0xd4000000 (II) intel(0): [drm] mapped back buffer at 0xd1000000, handle = 0xd1000000 (II) intel(0): [drm] mapped depth buffer at 0xd2000000, handle = 0xd2000000 (II) intel(0): [drm] mapped classic textures at 0xd8000000, handle = 0xd8000000 (II) intel(0): [drm] Initialized kernel agp heap manager, 33554432 (II) intel(0): [dri] visual configs initialized (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000 (WW) intel(0): remove MTRR a0000 - b0000 (II) intel(0): Using XFree86 Acceleration Architecture (XAA) Screen to screen bit blits Solid filled rectangles 8x8 mono pattern filled rectangles Indirect CPU to Screen color expansion Solid Horizontal and Vertical Lines Setting up tile and stipple cache: 32 128x128 slots 32 256x256 slots 16 512x512 slots (==) intel(0): Backing store disabled (==) intel(0): Silken mouse enabled (II) intel(0): Initializing HW Cursor (II) intel(0): [DRI] installation complete (WW) intel(0): drmDropMaster failed: Unknown error: 4294967295 (II) intel(0): Current clock rate multiplier: 8 (II) intel(0): xf86BindGARTMemory: bind key 0 at 0x005ff000 (pgoffset 1535) (II) intel(0): xf86BindGARTMemory: bind key 1 at 0x0082a000 (pgoffset 2090) (II) intel(0): xf86BindGARTMemory: bind key 3 at 0x0082b000 (pgoffset 2091) (II) intel(0): xf86BindGARTMemory: bind key 4 at 0x0083b000 (pgoffset 2107) (II) intel(0): xf86BindGARTMemory: bind key 5 at 0x01000000 (pgoffset 4096) (II) intel(0): xf86BindGARTMemory: bind key 6 at 0x02000000 (pgoffset 8192) (II) intel(0): xf86BindGARTMemory: bind key 2 at 0x04000000 (pgoffset 16384) (II) intel(0): xf86BindGARTMemory: bind key 7 at 0x08000000 (pgoffset 32768) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB) (II) intel(0): 0x0002a000-0x00829fff: fake bufmgr (8192 kB) (II) intel(0): 0x005ff000: end of stolen memory (II) intel(0): 0x0082a000-0x0082afff: overlay registers (4 kB) (II) intel(0): 0x0082b000-0x0083afff: xaa scratch (64 kB) (II) intel(0): 0x0083b000-0x0083bfff: HW status (4 kB) (II) intel(0): 0x01000000-0x01ffffff: back buffer (16384 kB) X tiled (II) intel(0): 0x02000000-0x02ffffff: depth buffer (16384 kB) X tiled (II) intel(0): 0x04000000-0x07ffffff: front buffer (65536 kB) X tiled (II) intel(0): 0x08000000-0x09ffffff: classic textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. (II) intel(0): Pipe B is off (II) intel(0): Display plane B is now disabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe none (II) intel(0): Output TMDS-1 is connected to pipe A (II) intel(0): [drm] dma control initialized, using IRQ 11 (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message. (II) intel(0): DPMS enabled (==) intel(0): Intel XvMC decoder disabled (II) intel(0): Set up textured video (II) intel(0): Set up overlay video (II) intel(0): direct rendering: XF86DRI Enabled (--) RandR disabled (II) Initializing built-in extension Generic Event Extension (II) Initializing built-in extension SHAPE (II) Initializing built-in extension MIT-SHM (II) Initializing built-in extension XInputExtension (II) Initializing built-in extension XTEST (II) Initializing built-in extension BIG-REQUESTS (II) Initializing built-in extension SYNC (II) Initializing built-in extension XKEYBOARD (II) Initializing built-in extension XC-MISC (II) Initializing built-in extension XINERAMA (II) Initializing built-in extension XFIXES (II) Initializing built-in extension RENDER (II) Initializing built-in extension RANDR (II) Initializing built-in extension COMPOSITE (II) Initializing built-in extension DAMAGE (II) AIGLX: Loaded and initialized /usr/pkg/lib/dri/swrast_dri.so (II) GLX: Initialized DRISWRAST GL provider for screen 0 (II) intel(0): Setting screen physical size to 473 x 296 (**) Option "Protocol" "wsmouse" (**) Mouse0: Protocol: wsmouse (**) Option "CorePointer" (**) Mouse0: always reports core events (**) Option "Device" "/dev/wsmux0" (==) Mouse0: Emulate3Buttons, Emulate3Timeout: 50 (**) Option "ZAxisMapping" "4 5" (**) Mouse0: ZAxisMapping: buttons 4 and 5 (**) Mouse0: Buttons: 9 (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE) (**) Mouse0: (accel) keeping acceleration scheme 1 (**) Mouse0: (accel) filter chain progression: 2.00 (**) Mouse0: (accel) filter stage 0: 20.00 ms (**) Mouse0: (accel) set acceleration profile 0 (**) Option "CoreKeyboard" (**) Keyboard0: always reports core events (**) Option "Protocol" "wskbd" (**) Keyboard0: Protocol: wskbd (**) Option "Device" "/dev/wsmux1" (--) Keyboard0: Keyboard type: USB (**) Option "AutoRepeat" "350 18" (**) Option "XkbRules" "xorg" (**) Keyboard0: XkbRules: "xorg" (**) Option "XkbModel" "pc105" (**) Keyboard0: XkbModel: "pc105" (**) Option "XkbLayout" "marco(de)" (**) Keyboard0: XkbLayout: "marco(de)" (**) Option "CustomKeycodes" "off" (**) Keyboard0: CustomKeycodes disabled (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD) |
|
|
Re: xsrc/42262: Thinkpad T500 Intel GM45 Express X doesn't like i915drmWell, I guess this could be called progress in that the issue has changed...
[drm:pid443:i915_emit_irq] [drm:pid443:i915_emit_irq] [drm:pid443:drm_ioctl] [drm:pid443:drm_ioctl] pid=443, cmd=0x80046445, nr=0x45, dev 0xcc472e00, auth=1 [drm:pid443:i915_wait_irq] [drm:pid443:i915_wait_irq] irq_nr=1 breadcrumb=0 This is something I've encountered on my I915GM - X issues DRM_IOCTL_I915_IRQ_EMIT, then loops forever on DRM_IOCTL_I915_IRQ_WAIT which repeatedly times out. Closer inspection shows drm issues a command for hardware to write a counter to the status page - it gets processed, but the write never occurs, leading to the infinite loop. Could you (or spz) ktrace X when it starts and leave it running for a minute, then inspect the output - you should see repeating ioctls returning ETIMEOUT. -- Thanks, Jeremy |
|
|
|
|
|
Re: xsrc/42262: Thinkpad T500 Intel GM45 Express X doesn't like i915drmS.P.Zeidler wrote:
> The following reply was made to PR xsrc/42262; it has been noted by GNATS. > > From: "S.P.Zeidler" <spz@...> > To: Jeremy Morse <jeremy.morse@...> > Cc: gnats-bugs@... > Subject: Re: xsrc/42262: Thinkpad T500 Intel GM45 Express X doesn't like > i915drm > Date: Sat, 21 Nov 2009 22:54:22 +0100 > > Hi Jeremy, > > Thus wrote Jeremy Morse (jeremy.morse@...): > > > Could you (or spz) ktrace X when it starts and leave it running for a > > minute, then inspect the output - you should see repeating ioctls > > returning ETIMEOUT. > > Well, "leave it running for a minute" is sort of hard, since it doesn't. > My machine wedges or reboots. Same behaviour with a -current of today btw. > > The ktrace file had no content. Using ktruss, the last lifesigns are: > > "\t[8] 0\t0\t0x000003b0 - 0x000003bb (0xc)" > 676 1 Xorg write(0, 0x810900, 0x2) = 2 > " I" > 676 1 Xorg write(0, 0x810900, 0x1) = 1 > "S" > 676 1 Xorg write(0, 0x810900, 0x3) = 3 > "[B]" > 676 1 Xorg write(0, 0x810900, 0x6) = 6 > "(OprU)" > 676 1 Xorg write(0, 0x810900, 0x1) = 1 > "\n" > 676 1 Xorg write(0, 0x810900, 0x27) = 39 > "\t[9] 0\t0\t0x000003c0 - 0x000003df (0x20)" > 676 1 Xorg write(0, 0x810900, 0x2) = 2 > " I" > 676 1 Xorg write(0, 0x810900, 0x1) = 1 > "S" > 676 1 Xorg write(0, 0x810900, 0x3) = 3 > "[B]" > 676 1 Xorg write(0, 0x810900, 0x6) = 6 > "(OprU)" > 676 1 Xorg write(0, 0x810900, 0x1) = 1 > "\n" > 676 1 Xorg open("/dev/agpgart", 0x2, 0) = 16 > 676 1 Xorg ioctl(0x10, AGPIOC_ACQUIRE, 0) = 0 > > HTH, > spz > -- > spz@... (S.P.Zeidler) > > Regards, Matthias 585 1 Xorg 1258965919.367020683 RET read 11628/0x2d6c 585 1 Xorg 1258965919.367025663 CALL lseek(0xf,0,0,0,1) 585 1 Xorg 1258965919.367026295 RET lseek 11628/0x2d6c 585 1 Xorg 1258965919.367274592 CALL close(0xf) 585 1 Xorg 1258965919.367276075 RET close 0 585 1 Xorg 1258965919.367276971 CALL unlink(0xbfbfdbac) 585 1 Xorg 1258965919.367277864 NAMI "/var/db/xkb/server-0.xkm" 585 1 Xorg 1258965919.367302649 RET unlink 0 585 1 Xorg 1258965919.367429423 CALL ioctl(0xe,WSKBDIO_SETLEDS,0xbfbfdf10) 585 1 Xorg 1258965919.367430133 GIO fd 14 wrote 4 bytes "\0\0\0\0" 585 1 Xorg 1258965919.367432602 RET ioctl 0 585 1 Xorg 1258965919.367440040 CALL __clock_gettime50(3,0xbfbfe540) 585 1 Xorg 1258965919.367440587 RET __clock_gettime50 0 585 1 Xorg 1258965919.367441303 CALL ioctl(0xe,WSKBDIO_GETLEDS,0xbfbfe550) 585 1 Xorg 1258965919.367442070 GIO fd 14 read 4 bytes "\0\0\0\0" 585 1 Xorg 1258965919.367442458 RET ioctl 0 585 1 Xorg 1258965919.367443080 CALL ioctl(0xe,WSKBDIO_SETLEDS,0xbfbfe530) 585 1 Xorg 1258965919.367443447 GIO fd 14 wrote 4 bytes "\0\0\0\0" 585 1 Xorg 1258965919.367443980 RET ioctl 0 585 1 Xorg 1258965919.367447276 CALL __sigprocmask14(1,0xbfbfe694,0x81cfe20) 585 1 Xorg 1258965919.367447949 RET __sigprocmask14 0 585 1 Xorg 1258965919.367459459 CALL __sigprocmask14(3,0x81cfe20,0) 585 1 Xorg 1258965919.367459958 RET __sigprocmask14 0 585 1 Xorg 1258965919.367462202 CALL ioctl(0xe,TIOCFLUSH,0xbfbfe500) 585 1 Xorg 1258965919.367462518 GIO fd 14 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965919.367463200 RET ioctl -1 errno 25 Inappropriate ioctl for device 585 1 Xorg 1258965919.367463895 CALL __select50(0x100,0xbfbfe52c,0,0,0xbfbfe54c) 585 1 Xorg 1258965919.367466247 RET __select50 0 585 1 Xorg 1258965919.367470487 CALL __clock_gettime50(3,0xbfbfe530) 585 1 Xorg 1258965919.367470857 RET __clock_gettime50 0 585 1 Xorg 1258965919.367471444 CALL ioctl(0xe,WSKBDIO_GETLEDS,0xbfbfe540) 585 1 Xorg 1258965919.367472211 GIO fd 14 read 4 bytes "\0\0\0\0" 585 1 Xorg 1258965919.367472518 RET ioctl 0 585 1 Xorg 1258965919.367473104 CALL ioctl(0xe,WSKBDIO_SETLEDS,0xbfbfe520) 585 1 Xorg 1258965919.367473615 GIO fd 14 wrote 4 bytes "\0\0\0\0" 585 1 Xorg 1258965919.367474148 RET ioctl 0 585 1 Xorg 1258965919.367479155 CALL __clock_gettime50(3,0xbfbfe920) 585 1 Xorg 1258965919.367479546 RET __clock_gettime50 0 585 1 Xorg 1258965919.367634133 CALL ioctl(0xc,_IOW('d',0x4d,0x4),0xbfbfe8c8) 585 1 Xorg 1258965919.367634600 GIO fd 12 wrote 4 bytes "\0\0\0\0" 585 1 Xorg 1258965919.367636600 RET ioctl 0 585 1 Xorg 1258965919.367638648 CALL __nanosleep50(0xbfbfe898,0) 585 1 Xorg 1258965919.402612362 RET __nanosleep50 0 585 1 Xorg 1258965919.402613369 CALL __nanosleep50(0xbfbfe898,0) 585 1 Xorg 1258965919.442716047 RET __nanosleep50 0 585 1 Xorg 1258965919.442719581 CALL __gettimeofday50(0xbfbfe774,0) 585 1 Xorg 1258965919.442720083 RET __gettimeofday50 0 585 1 Xorg 1258965919.442720808 CALL __gettimeofday50(0xbfbfe768,0) 585 1 Xorg 1258965919.442721359 RET __gettimeofday50 0 585 1 Xorg 1258965919.442722005 CALL __gettimeofday50(0xbfbfe768,0) 585 1 Xorg 1258965919.442722447 RET __gettimeofday50 0 585 1 Xorg 1258965919.442723082 CALL __gettimeofday50(0xbfbfe768,0) ... many many more of this 585 1 Xorg 1258965919.455809639 CALL __gettimeofday50(0xbfbfe798,0) 585 1 Xorg 1258965919.455810042 RET __gettimeofday50 0 585 1 Xorg 1258965919.455815347 CALL __clock_gettime50(3,0xbfbfe8f0) 585 1 Xorg 1258965919.455815927 RET __clock_gettime50 0 585 1 Xorg 1258965919.455833614 CALL __clock_gettime50(3,0xbfbfe870) 585 1 Xorg 1258965919.455834288 RET __clock_gettime50 0 585 1 Xorg 1258965919.455843843 CALL __setitimer50(0,0xbfbfe87c,0) 585 1 Xorg 1258965919.455844558 RET __setitimer50 0 585 1 Xorg 1258965919.455901138 CALL ioctl(0xc,_IOWR('d',0x44,0x4),0xbfbfe68c) 585 1 Xorg 1258965919.455902194 GIO fd 12 wrote 4 bytes "\M^H\M-f\M-?\M-?" 585 1 Xorg 1258965919.455905325 GIO fd 12 read 4 bytes "\M^H\M-f\M-?\M-?" 585 1 Xorg 1258965919.455905953 RET ioctl 0 585 1 Xorg 1258965919.455909752 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965919.455910055 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965922.461266536 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965922.461275324 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965922.461275824 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965925.469760087 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965925.469761473 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965925.469761900 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965928.478655734 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965928.478656925 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965928.478657334 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965931.487531162 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965931.487532370 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965931.487533110 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965934.496550648 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965934.496551833 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965934.496552239 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965937.505570597 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965937.505571800 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965937.505572185 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965940.514589893 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965940.514591063 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965940.514591475 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965943.523609070 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965943.523610279 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965943.523610661 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965946.532641326 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965946.532644363 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965946.532645148 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965949.541658357 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965949.541659825 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965949.541660225 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965952.550677795 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965952.550679031 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965952.550679543 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965955.559697348 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965955.559698692 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965955.559699191 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965958.568716662 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965958.568717823 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965958.568718428 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965961.577736293 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965961.577737517 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965961.577737917 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965964.586765737 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965964.586766873 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965964.586767270 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965967.595785274 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965967.595786546 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965967.595786943 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965970.604804555 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965970.604805683 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965970.604806092 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965973.613823867 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965973.613825037 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965973.613825524 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965976.622844126 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965976.622845924 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965976.622846382 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965979.631863332 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965979.631865059 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965979.631865624 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965982.640892470 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965982.640893730 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965982.640894178 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965985.649911901 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965985.649913207 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965985.649913589 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965988.658931628 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965988.658933420 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965988.658933860 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965991.667961159 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965991.667962437 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965991.667962801 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965994.676970197 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965994.676971379 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965994.676971767 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258965997.685989773 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258965997.685991130 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258965997.685991515 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258966000.695019446 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258966000.695020583 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258966000.695020955 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258966003.704038763 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258966003.704039969 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258966003.704040342 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258966006.713143277 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258966006.713146435 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258966006.713147076 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258966009.722152619 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258966009.722155972 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258966009.722156910 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258966012.731098948 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258966012.731101850 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258966012.731102677 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258966015.160986769 RET ioctl -1 errno 4 Interrupted system call 585 1 Xorg 1258966015.160988480 PSIG SIGTERM caught handler=0x81211e0 mask=(): code=SI_USER sent by pid=436, uid=0) 585 1 Xorg 1258966015.160992844 CALL setcontext(0xbfbfe314) 585 1 Xorg 1258966015.160993677 RET write JUSTRETURN 585 1 Xorg 1258966015.160994700 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258966015.160995223 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258966018.167403937 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258966018.167405402 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258966018.167405955 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258966021.176424717 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258966021.176427231 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258966021.176427862 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258966024.185443096 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258966024.185444918 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258966024.185445463 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258966027.194462116 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258966027.194463610 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258966027.194464113 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258966027.348153927 RET ioctl -1 errno 4 Interrupted system call 585 1 Xorg 1258966027.348155452 PSIG SIGHUP caught handler=0x8121220 mask=(): code=SI_USER sent by pid=436, uid=0) 585 1 Xorg 1258966027.348158923 CALL setcontext(0xbfbfe314) 585 1 Xorg 1258966027.348159765 RET write JUSTRETURN 585 1 Xorg 1258966027.348160604 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258966027.348161145 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258966030.353937748 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258966030.353939525 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258966030.353940117 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258966033.362956912 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258966033.362958400 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258966033.362959020 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258966036.371976136 RET ioctl -1 errno 35 Resource temporarily unavailable 585 1 Xorg 1258966036.371977399 CALL ioctl(0xc,_IOW('d',0x45,0x4),0xbfbfe698) 585 1 Xorg 1258966036.371977811 GIO fd 12 wrote 4 bytes "\^A\0\0\0" 585 1 Xorg 1258966037.954213237 RET ioctl RESTART 585 1 Xorg 1258966037.954215047 PSIG SIGKILL SIG_DFL: code=SI_USER sent by pid=436, uid=0) |
| Free embeddable forum powered by Nabble | Forum Help |