On 18:08, Andi Kleen wrote: > On Wed, Nov 22, 2006 at 05:05:49PM +0100, Andre Noll wrote: > > Unfortunately, yes. I tried rc6, current git, and currrent git + David > > Rientjes' patch. They all show the same behaviour. > > I must have missed that patch. He sent it to me in private. In fact, he sent several patches. This is the one I tried today and which didn't work: Hi Andre, Please try the following patch to your 2.6.19-rc5 and see if it corrects the problem (it should also apply to 2.6.19-rc6 cleanly). David --- mm/memory.c | 33 ++++++++------------------------- 1 files changed, 8 insertions(+), 25 deletions(-) diff --git a/mm/memory.c b/mm/memory.c index 156861f..74aa08b 100644 --- a/mm/memory.c +++ b/mm/memory.c @@ -1483,29 +1483,14 @@ static int do_wp_page(struct mm_struct * { struct page *old_page, *new_page; pte_t entry; - int reuse = 0, ret = VM_FAULT_MINOR; - struct page *dirty_page = NULL; + int reuse, ret = VM_FAULT_MINOR; old_page = vm_normal_page(vma, address, orig_pte); if (!old_page) goto gotten; - /* - * Take out anonymous pages first, anonymous shared vmas are - * not dirty accountable. - */ - if (PageAnon(old_page)) { - if (!TestSetPageLocked(old_page)) { - reuse = can_share_swap_page(old_page); - unlock_page(old_page); - } - } else if (unlikely((vma->vm_flags & (VM_WRITE|VM_SHARED)) == - (VM_WRITE|VM_SHARED))) { - /* - * Only catch write-faults on shared writable pages, - * read-only shared pages can get COWed by - * get_user_pages(.write=1, .force=1). - */ + if (unlikely((vma->vm_flags & (VM_SHARED | VM_WRITE)) == + (VM_SHARED | VM_WRITE))) { if (vma->vm_ops && vma->vm_ops->page_mkwrite) { /* * Notify the address space that the page is about to @@ -1534,10 +1519,12 @@ static int do_wp_page(struct mm_struct * if (!pte_same(*page_table, orig_pte)) goto unlock; } - dirty_page = old_page; - get_page(dirty_page); reuse = 1; - } + } else if (PageAnon(old_page) && !TestSetPageLocked(old_page)) { + reuse = can_share_swap_page(old_page); + unlock_page(old_page); + } else + reuse = 0; if (reuse) { flush_cache_page(vma, address, pte_pfn(orig_pte)); @@ -1609,10 +1596,6 @@ gotten: page_cache_release(old_page); unlock: pte_unmap_unlock(page_table, ptl); - if (dirty_page) { - set_page_dirty_balance(dirty_page); - put_page(dirty_page); - } return ret; oom: if (old_page) > > Feel free to send me a debugging patch.. > Here's one. Please send output (unless Mel finds the problem first..) Here comes the output. Andre Linux version 2.6.19-rc6-andi-v2-tt64-6-g0f9005a6-dirty (maan@congo) (gcc version 3.3.5 (Debian 1:3.3.5-13)) #12 SMP Wed Nov 22 18:54:11 CET 2006 Command line: vga=normal ip=dhcp BOOT_IMAGE=2.6.19-rc6-mel BIOS-provided physical RAM map: BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) BIOS-e820: 0000000000100000 - 00000000fbff0000 (usable) BIOS-e820: 00000000fbff0000 - 00000000fbfff000 (ACPI data) BIOS-e820: 00000000fbfff000 - 00000000fc000000 (ACPI NVS) BIOS-e820: 00000000ff780000 - 0000000100000000 (reserved) BIOS-e820: 0000000100000000 - 0000000200000000 (usable) Entering add_active_range(0, 0, 159) 0 entries of 3200 used Entering add_active_range(0, 256, 1032176) 1 entries of 3200 used Entering add_active_range(0, 1048576, 2097152) 2 entries of 3200 used end_pfn_map = 2097152 DMI 2.3 present. ACPI: RSDP (v000 ACPIAM ) @ 0x00000000000f6bc0 ACPI: RSDT (v001 A M I OEMRSDT 0x01000510 MSFT 0x00000097) @ 0x00000000fbff0000 ACPI: FADT (v001 A M I OEMFACP 0x01000510 MSFT 0x00000097) @ 0x00000000fbff0200 ACPI: MADT (v001 A M I OEMAPIC 0x01000510 MSFT 0x00000097) @ 0x00000000fbff0380 ACPI: OEMB (v001 A M I OEMBIOS 0x01000510 MSFT 0x00000097) @ 0x00000000fbfff040 ACPI: SRAT (v001 A M I OEMSRAT 0x01000510 MSFT 0x00000097) @ 0x00000000fbff34e0 ACPI: ASF! (v001 AMIASF AMDSTRET 0x00000001 INTL 0x02002026) @ 0x00000000fbff35f0 ACPI: DSDT (v001 0AAAA 0AAAA000 0x00000000 INTL 0x02002026) @ 0x0000000000000000 SRAT: PXM 0 -> APIC 0 -> Node 0 SRAT: PXM 1 -> APIC 1 -> Node 1 SRAT: Node 0 PXM 0 100000-fc000000 Entering add_active_range(0, 256, 1032176) 0 entries of 3200 used SRAT: Node 1 PXM 1 100000000-200000000 Entering add_active_range(1, 1048576, 2097152) 1 entries of 3200 used SRAT: Node 0 PXM 0 0-fc000000 Entering add_active_range(0, 0, 159) 2 entries of 3200 used Entering add_active_range(0, 256, 1032176) 3 entries of 3200 used NUMA: Using 32 for the hash shift. Bootmem setup node 0 0000000000000000-00000000fc000000 Bootmem setup node 1 0000000100000000-0000000200000000 Zone PFN ranges: DMA 256 -> 4096 DMA32 4096 -> 1048576 Normal 1048576 -> 2097152 early_node_map[3] active PFN ranges 0: 0 -> 159 0: 256 -> 1032176 1: 1048576 -> 2097152 On node 0 totalpages: 1031920 DMA zone: 52 pages used for memmap DMA zone: 1953 pages reserved DMA zone: 1835 pages, LIFO batch:0 DMA32 zone: 14055 pages used for memmap DMA32 zone: 1014025 pages, LIFO batch:31 Normal zone: 0 pages used for memmap On node 1 totalpages: 1048576 DMA zone: 0 pages used for memmap DMA32 zone: 0 pages used for memmap Normal zone: 14336 pages used for memmap Normal zone: 1034240 pages, LIFO batch:31 ACPI: PM-Timer IO Port: 0x5008 ACPI: Local APIC address 0xfee00000 ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) Processor #0 (Bootup-CPU) ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) Processor #1 ACPI: LAPIC (acpi_id[0x03] lapic_id[0x82] disabled) ACPI: LAPIC (acpi_id[0x04] lapic_id[0x83] disabled) ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) IOAPIC[0]: apic_id 2, address 0xfec00000, GSI 0-23 ACPI: IOAPIC (id[0x03] address[0xfebff000] gsi_base[24]) IOAPIC[1]: apic_id 3, address 0xfebff000, GSI 24-27 ACPI: IOAPIC (id[0x04] address[0xfebfe000] gsi_base[28]) IOAPIC[2]: apic_id 4, address 0xfebfe000, GSI 28-31 ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) ACPI: IRQ0 used by override. ACPI: IRQ2 used by override. ACPI: IRQ9 used by override. Setting APIC routing to flat Using ACPI (MADT) for SMP configuration information Nosave address range: 000000000009f000 - 00000000000a0000 Nosave address range: 00000000000a0000 - 00000000000e0000 Nosave address range: 00000000000e0000 - 0000000000100000 Nosave address range: 00000000fbff0000 - 00000000fbfff000 Nosave address range: 00000000fbfff000 - 00000000fc000000 Nosave address range: 00000000fc000000 - 00000000ff780000 Nosave address range: 00000000ff780000 - 0000000100000000 Allocating PCI resources starting at fc400000 (gap: fc000000:3780000) PERCPU: Allocating 25728 bytes of per cpu data Built 2 zonelists. Total pages: 2050100 Kernel command line: vga=normal ip=dhcp BOOT_IMAGE=2.6.19-rc6-mel Initializing CPU#0 PID hash table entries: 4096 (order: 12, 32768 bytes) Console: colour VGA+ 80x25 Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes) Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes) Checking aperture... CPU 0: aperture @ f4cc000000 size 32 MB Aperture too small (32 MB) No AGP bridge found Your BIOS doesn't leave a aperture memory hole Please enable the IOMMU option in the BIOS setup This costs you 64 MB of RAM Mapping aperture over 65536 KB of RAM @ 8000000 page address ffff8100fbef0000 Bad page state in process 'swapper' page:ffff810003faf480 flags:0x0000000000000000 mapping:0000000000000000 mapcount:1 count:0 Trying to fix it up, but a reboot is needed Backtrace: Call Trace: [<ffffffff8014f200>] bad_page+0x94/0xbe [<ffffffff8014f6dd>] __free_pages_ok+0x78/0xf9 [<ffffffff805cd83c>] free_all_bootmem_core+0xce/0x1c2 [<ffffffff805cad5d>] numa_free_all_bootmem+0x39/0x78 [<ffffffff805ca603>] mem_init+0x59/0x16c [<ffffffff805bb75c>] start_kernel+0x165/0x1e7 [<ffffffff805bb195>] x86_64_start_kernel+0x12b/0x130 Memory: 8122880k/8388608k available (3184k kernel code, 199740k reserved, 1490k data, 2612k init) Calibrating delay using timer specific routine.. 4782.31 BogoMIPS (lpj=9564629) Mount-cache hash table entries: 256 CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) CPU: L2 Cache: 1024K (64 bytes/line) CPU 0/0 -> Node 0 Freeing SMP alternatives: 32k freed ACPI: Core revision 20060707 Using local APIC timer interrupts. result 12441507 Detected 12.441 MHz APIC timer. Booting processor 1/2 APIC 0x1 Initializing CPU#1 Calibrating delay using timer specific routine.. 4777.69 BogoMIPS (lpj=9555388) CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) CPU: L2 Cache: 1024K (64 bytes/line) CPU 1/1 -> Node 1 AMD Opteron(tm) Processor 250 stepping 0a CPU 1: Syncing TSC to CPU 0. CPU 1: synchronized TSC with CPU 0 (last diff -177 cycles, maxerr 928 cycles) Brought up 2 CPUs testing NMI watchdog ... OK. Disabling vsyscall due to use of PM timer time.c: Using 3.579545 MHz WALL PM GTOD PM timer. time.c: Detected 2388.767 MHz processor. migration_cost=574 NET: Registered protocol family 16 ACPI: bus type pci registered PCI: Using configuration type 1 ACPI: Interpreter enabled ACPI: Using IOAPIC for interrupt routing ACPI: PCI Root Bridge [PCI0] (0000:00) PCI: Probing PCI hardware (bus 00) Boot video device is 0000:03:06.0 PCI: Firmware left 0000:03:08.0 e100 interrupts enabled, disabling ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI1._PRT] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.GOLA._PRT] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.GOLB._PRT] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 *5 6 7 9 10 11 12 14 15) ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *9 10 11 12 14 15) ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11 12 14 15) ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 *10 11 12 14 15) AMD768 RNG detected SCSI subsystem initialized usbcore: registered new interface driver usbfs usbcore: registered new interface driver hub usbcore: registered new device driver usb PCI: Using ACPI for IRQ routing PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report PCI-DMA: Disabling AGP. PCI-DMA: aperture base @ 8000000 size 65536 KB PCI-DMA: using GART IOMMU. PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture PCI: Bridge: 0000:00:06.0 IO window: a000-bfff MEM window: fc900000-feafffff PREFETCH window: disabled. PCI: Bridge: 0000:00:0a.0 IO window: 9000-9fff MEM window: fc600000-fc8fffff PREFETCH window: ff500000-ff5fffff PCI: Bridge: 0000:00:0b.0 IO window: disabled. MEM window: disabled. PREFETCH window: disabled. NET: Registered protocol family 2 IP route cache hash table entries: 262144 (order: 9, 2097152 bytes) TCP established hash table entries: 262144 (order: 10, 4194304 bytes) TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) TCP: Hash tables configured (established 262144 bind 65536) TCP reno registered microcode: CPU0 not a capable Intel processor microcode: CPU1 not a capable Intel processor IA-32 Microcode Update Driver: v1.14a <[email protected]> io scheduler noop registered io scheduler anticipatory registered (default) io scheduler deadline registered io scheduler cfq registered ACPI: Power Button (FF) [PWRF] ACPI: Power Button (CM) [PWRB] ACPI: Processor [CPU1] (supports 8 throttling states) ACPI: Getting cpuindex for acpiid 0x3 ACPI: Getting cpuindex for acpiid 0x4 Real Time Clock Driver v1.12ac Linux agpgart interface v0.101 (c) Dave Jones ipmi message handler version 39.0 ipmi device interface IPMI System Interface driver. ipmi_si: Unable to find any System Interface(s) IPMI Watchdog: driver initialized Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A loop: loaded (max 8 devices) Intel(R) PRO/1000 Network Driver - version 7.2.9-k4 Copyright (c) 1999-2006 Intel Corporation. eepro100.c:v1.09j-t 9/29/99 Donald Becker http://www.scyld.com/network/eepro100.html eepro100.c: $Revision: 1.36 $ 2000/11/17 Modified by Andrey V. Savochkin <[email protected]> and others ACPI: PCI Interrupt 0000:03:08.0[A] -> GSI 18 (level, low) -> IRQ 18 eth0: 0000:03:08.0, 00:E0:81:2E:78:F7, IRQ 18. Board assembly 567812-052, Physical connectors present: RJ45 Primary interface chip i82555 PHY #1. General self-test: passed. Serial sub-system self-test: passed. Internal registers self-test: passed. ROM checksum self-test: passed (0xd0a6c714). e100: Intel(R) PRO/100 Network Driver, 3.5.17-k2-NAPI e100: Copyright(c) 1999-2006 Intel Corporation tg3.c:v3.69 (November 15, 2006) ACPI: PCI Interrupt 0000:02:09.0[A] -> GSI 24 (level, low) -> IRQ 24 eth1: Tigon3 [partno(BCM95704A7) rev 2003 PHY(5704)] (PCIX:100MHz:64-bit) 10/100/1000BaseT Ethernet 00:e0:81:2e:79:26 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] Split[0] WireSpeed[1] TSOcap[1] eth1: dma_rwctrl[769f4000] dma_mask[64-bit] ACPI: PCI Interrupt 0000:02:09.1[B] -> GSI 25 (level, low) -> IRQ 25 eth2: Tigon3 [partno(BCM95704A7) rev 2003 PHY(5704)] (PCIX:100MHz:64-bit) 10/100/1000BaseT Ethernet 00:e0:81:2e:79:27 eth2: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] Split[0] WireSpeed[1] TSOcap[1] eth2: dma_rwctrl[769f4000] dma_mask[64-bit] Linux video capture interface: v2.00 Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2 ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx AMD8111: IDE controller at PCI slot 0000:00:07.1 AMD8111: chipset revision 3 AMD8111: not 100% native mode: will probe irqs later AMD8111: 0000:00:07.1 (rev 03) UDMA133 controller ide0: BM-DMA at 0xffa0-0xffa7, BIOS settings: hda:pio, hdb:pio ide1: BM-DMA at 0xffa8-0xffaf, BIOS settings: hdc:pio, hdd:pio Probing IDE interface ide0... Probing IDE interface ide1... Probing IDE interface ide0... Probing IDE interface ide1... ACPI: PCI Interrupt 0000:02:06.0[A] -> GSI 24 (level, low) -> IRQ 24 scsi0 : Adaptec AIC79XX PCI-X SCSI HBA DRIVER, Rev 3.0 <Adaptec AIC7902 Ultra320 SCSI adapter> aic7902: Ultra320 Wide Channel A, SCSI Id=7, PCI-X 67-100Mhz, 512 SCBs scsi 0:0:0:0: Direct-Access FUJITSU MAT3073NP 0105 PQ: 0 ANSI: 3 target0:0:0: asynchronous scsi0:A:0:0: Tagged Queuing enabled. Depth 32 target0:0:0: Beginning Domain Validation target0:0:0: wide asynchronous target0:0:0: FAST-160 WIDE SCSI 320.0 MB/s DT IU QAS RDSTRM RTI WRFLOW PCOMP (6.25 ns, offset 127) target0:0:0: Ending Domain Validation scsi 0:0:1:0: Direct-Access FUJITSU MAT3073NP 0105 PQ: 0 ANSI: 3 target0:0:1: asynchronous scsi0:A:1:0: Tagged Queuing enabled. Depth 32 target0:0:1: Beginning Domain Validation target0:0:1: wide asynchronous target0:0:1: FAST-160 WIDE SCSI 320.0 MB/s DT IU QAS RDSTRM RTI WRFLOW PCOMP (6.25 ns, offset 127) target0:0:1: Ending Domain Validation ACPI: PCI Interrupt 0000:02:06.1[B] -> GSI 25 (level, low) -> IRQ 25 scsi1 : Adaptec AIC79XX PCI-X SCSI HBA DRIVER, Rev 3.0 <Adaptec AIC7902 Ultra320 SCSI adapter> aic7902: Ultra320 Wide Channel B, SCSI Id=7, PCI-X 67-100Mhz, 512 SCBs 3ware Storage Controller device driver for Linux v1.26.02.001. 3ware 9000 Storage Controller device driver for Linux v2.26.02.008. SCSI device sda: 143638992 512-byte hdwr sectors (73543 MB) sda: Write Protect is off sda: Mode Sense: b3 00 00 08 SCSI device sda: drive cache: write back SCSI device sda: 143638992 512-byte hdwr sectors (73543 MB) sda: Write Protect is off sda: Mode Sense: b3 00 00 08 SCSI device sda: drive cache: write back sda: sda1 sda2 sd 0:0:0:0: Attached scsi disk sda SCSI device sdb: 143638992 512-byte hdwr sectors (73543 MB) sdb: Write Protect is off sdb: Mode Sense: b3 00 00 08 SCSI device sdb: drive cache: write back SCSI device sdb: 143638992 512-byte hdwr sectors (73543 MB) sdb: Write Protect is off sdb: Mode Sense: b3 00 00 08 SCSI device sdb: drive cache: write back sdb: sdb1 sdb2 sd 0:0:1:0: Attached scsi disk sdb sd 0:0:0:0: Attached scsi generic sg0 type 0 sd 0:0:1:0: Attached scsi generic sg1 type 0 Fusion MPT base driver 3.04.02 Copyright (c) 1999-2005 LSI Logic Corporation Fusion MPT SPI Host driver 3.04.02 usbmon: debugfs is not available ohci_hcd: 2006 August 04 USB 1.1 'Open' Host Controller (OHCI) Driver (PCI) ACPI: PCI Interrupt 0000:03:00.0[D] -> GSI 19 (level, low) -> IRQ 19 ohci_hcd 0000:03:00.0: OHCI Host Controller ohci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 1 ohci_hcd 0000:03:00.0: irq 19, io mem 0xfeafc000 usb usb1: configuration #1 chosen from 1 choice hub 1-0:1.0: USB hub found hub 1-0:1.0: 3 ports detected ACPI: PCI Interrupt 0000:03:00.1[D] -> GSI 19 (level, low) -> IRQ 19 ohci_hcd 0000:03:00.1: OHCI Host Controller ohci_hcd 0000:03:00.1: new USB bus registered, assigned bus number 2 ohci_hcd 0000:03:00.1: irq 19, io mem 0xfeafd000 usb usb2: configuration #1 chosen from 1 choice hub 2-0:1.0: USB hub found hub 2-0:1.0: 3 ports detected USB Universal Host Controller Interface driver v3.0 Initializing USB Mass Storage driver... usbcore: registered new interface driver usb-storage USB Mass Storage support registered. usbcore: registered new interface driver hiddev usbcore: registered new interface driver usbhid /.amd_mnt/huangho/export/kwaid0/home/maan/scm/torvalds/linux-2.6/drivers/usb/input/hid-core.c: v2.6:USB HID core driver serio: i8042 KBD port at 0x60,0x64 irq 1 serio: i8042 AUX port at 0x60,0x64 irq 12 mice: PS/2 mouse device common for all mice input: PC Speaker as /class/input/input0 md: raid0 personality registered for level 0 md: multipath personality registered for level -4 TCP cubic registered NET: Registered protocol family 1 NET: Registered protocol family 17 NET: Registered protocol family 15 CCID: Registered CCID 3 (ccid3) CCID: Registered CCID 2 (ccid2) SCTP: Hash tables configured (established 65536 bind 65536) powernow-k8: Found 2 AMD Opteron(tm) Processor 250 processors (version 2.00.00) powernow-k8: MP systems not supported by PSB BIOS structure powernow-k8: MP systems not supported by PSB BIOS structure PM: Writing back config space on device 0000:02:09.0 at offset b (was 164814e4, writing 164414e4) PM: Writing back config space on device 0000:02:09.0 at offset 3 (was 804000, writing 804010) PM: Writing back config space on device 0000:02:09.0 at offset 2 (was 2000000, writing 2000003) PM: Writing back config space on device 0000:02:09.0 at offset 1 (was 2b00000, writing 2b00146) PM: Writing back config space on device 0000:02:09.1 at offset b (was 164814e4, writing 164414e4) PM: Writing back config space on device 0000:02:09.1 at offset 3 (was 804000, writing 804010) PM: Writing back config space on device 0000:02:09.1 at offset 2 (was 2000000, writing 2000003) PM: Writing back config space on device 0000:02:09.1 at offset 1 (was 2b00000, writing 2b00106) Sending DHCP requests .<6>tg3: eth1: Link is up at 1000 Mbps, full duplex. tg3: eth1: Flow control is on for TX and on for RX. ., OK IP-Config: Got DHCP answer from 192.168.1.254, my address is 192.168.1.120 PM: Writing back config space on device 0000:02:09.1 at offset b (was 164814e4, writing 164414e4) PM: Writing back config space on device 0000:02:09.1 at offset 3 (was 804000, writing 804010) PM: Writing back config space on device 0000:02:09.1 at offset 2 (was 2000000, writing 2000003) PM: Writing back config space on device 0000:02:09.1 at offset 1 (was 2b00000, writing 2b00106) IP-Config: Complete: device=eth1, addr=192.168.1.120, mask=255.255.0.0, gw=192.168.1.254, host=node120, domain=, nis-domain=(none), bootserver=192.168.1.254, rootserver=192.168.1.254, rootpath= Freeing unused kernel memory: 2612k freed program parted is using a deprecated SCSI ioctl, please convert it to SG_IO program parted is using a deprecated SCSI ioctl, please convert it to SG_IO md: md0 stopped. program parted is using a deprecated SCSI ioctl, please convert it to SG_IO program parted is using a deprecated SCSI ioctl, please convert it to SG_IO program parted is using a deprecated SCSI ioctl, please convert it to SG_IO program parted is using a deprecated SCSI ioctl, please convert it to SG_IO program parted is using a deprecated SCSI ioctl, please convert it to SG_IO program parted is using a deprecated SCSI ioctl, please convert it to SG_IO program parted is using a deprecated SCSI ioctl, please convert it to SG_IO program parted is using a deprecated SCSI ioctl, please convert it to SG_IO program parted is using a deprecated SCSI ioctl, please convert it to SG_IO program parted is using a deprecated SCSI ioctl, please convert it to SG_IO md: bind<sda2> md: bind<sdb2> md0: setting max_sectors to 128, segment boundary to 32767 raid0: looking at sdb2 raid0: comparing sdb2(55038592) with sdb2(55038592) raid0: END raid0: ==> UNIQUE raid0: 1 zones raid0: looking at sda2 raid0: comparing sda2(55038592) with sdb2(55038592) raid0: EQUAL raid0: FINAL 1 zones raid0: done. raid0 : md_size is 110077184 blocks. raid0 : conf->hash_spacing is 110077184 blocks. raid0 : nb_zone is 1. raid0 : Allocating 8 bytes for hash. program parted is using a deprecated SCSI ioctl, please convert it to SG_IO program parted is using a deprecated SCSI ioctl, please convert it to SG_IO md: md0 stopped. md: unbind<sdb2> md: export_rdev(sdb2) md: unbind<sda2> md: export_rdev(sda2) program parted is using a deprecated SCSI ioctl, please convert it to SG_IO program parted is using a deprecated SCSI ioctl, please convert it to SG_IO program parted is using a deprecated SCSI ioctl, please convert it to SG_IO program parted is using a deprecated SCSI ioctl, please convert it to SG_IO program parted is using a deprecated SCSI ioctl, please convert it to SG_IO program parted is using a deprecated SCSI ioctl, please convert it to SG_IO program parted is using a deprecated SCSI ioctl, please convert it to SG_IO program parted is using a deprecated SCSI ioctl, please convert it to SG_IO program parted is using a deprecated SCSI ioctl, please convert it to SG_IO program parted is using a deprecated SCSI ioctl, please convert it to SG_IO md: bind<sda2> md: bind<sdb2> md0: setting max_sectors to 128, segment boundary to 32767 raid0: looking at sdb2 raid0: comparing sdb2(55038592) with sdb2(55038592) raid0: END raid0: ==> UNIQUE raid0: 1 zones raid0: looking at sda2 raid0: comparing sda2(55038592) with sdb2(55038592) raid0: EQUAL raid0: FINAL 1 zones raid0: done. raid0 : md_size is 110077184 blocks. raid0 : conf->hash_spacing is 110077184 blocks. raid0 : nb_zone is 1. raid0 : Allocating 8 bytes for hash. Adding 16779852k swap on /dev/sda1. Priority:42 extents:1 across:16779852k Adding 16779852k swap on /dev/sdb1. Priority:42 extents:1 across:16779852k warning: process `sensors' used the removed sysctl system call with 7.2.1. warning: process `sensors' used the removed sysctl system call with 7.2.1. process `syslogd' is using obsolete setsockopt SO_BSDCOMPAT -- The only person who always got his work done by Friday was Robinson Crusoe
Attachment:
signature.asc
Description: Digital signature
- References:
- Linux 2.6.19-rc6
- From: Linus Torvalds <[email protected]>
- 2.6.19-rc6: known regressions (v4)
- From: Adrian Bunk <[email protected]>
- Re: [discuss] 2.6.19-rc6: known regressions (v4)
- From: Andi Kleen <[email protected]>
- Re: [discuss] 2.6.19-rc6: known regressions (v4)
- From: Andre Noll <[email protected]>
- Re: [discuss] 2.6.19-rc6: known regressions (v4)
- From: Andi Kleen <[email protected]>
- Linux 2.6.19-rc6
- Prev by Date: [PATCH] [NET] dont insert socket dentries into dentry_hashtable.
- Next by Date: Re: 2.6.19-rc5: known regressions (v3)
- Previous by thread: Re: [discuss] 2.6.19-rc6: known regressions (v4)
- Next by thread: Re: 2.6.19-rc6: known regressions (v4)
- Index(es):