KOT, give us more details
dodo

try copying a kernel-sources directory to your reiser4-partition & compile it (the kernel) whether it hardlocks or notdodo1122 wrote:it booted fine here. Now paludis does not hang on src_unpack, everything seems to work.
KOT, give us more details
dodo

thanks for notifiyingcreidiki wrote:"Authorities" have been notified:And steps are being taken:<dodo1122_> no
<dodo1122_> that got fixed
<dodo1122_> oh wait
<dodo1122_> no it didn't
<dodo1122_> waninkoko: u sux
<creidiki> XD
<dodo1122_> seriously
<dodo1122_> your failness never ends<dodo1122_> i'm going to break the rule
<dodo1122_> and fix it
obviously (?) it's that version,dodo1122 wrote:the reiser4 currently in master-new is the one from -zen0.
or it might not be... you never know, cuz waninkoko was merging it ;P
dodo
Code: Select all
diff -Nrcpad linux-2.6.25-zen0_test/fs/reiser4/as_ops.c linux-2.6.25-zen1_preview3/fs/reiser4/as_ops.c
*** linux-2.6.25-zen0_test/fs/reiser4/as_ops.c 2008-05-03 00:30:00.382157467 +0200
--- linux-2.6.25-zen1_preview3/fs/reiser4/as_ops.c 2008-05-03 00:34:04.711363347 +0200
*************** int reiser4_set_page_dirty(struct page *
*** 77,83 ****
struct address_space *mapping = page->mapping;
if (mapping) {
! spin_lock_irq(&mapping->tree_lock);
/* check for race with truncate */
if (page->mapping) {
--- 77,83 ----
struct address_space *mapping = page->mapping;
if (mapping) {
! write_lock_irq(&mapping->tree_lock);
/* check for race with truncate */
if (page->mapping) {
*************** int reiser4_set_page_dirty(struct page *
*** 89,95 ****
page->index,
PAGECACHE_TAG_REISER4_MOVED);
}
! spin_unlock_irq(&mapping->tree_lock);
__mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
}
}
--- 89,95 ----
page->index,
PAGECACHE_TAG_REISER4_MOVED);
}
! write_unlock_irq(&mapping->tree_lock);
__mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
}
}
diff -Nrcpad linux-2.6.25-zen0_test/fs/reiser4/plugin/file/cryptcompress.c linux-2.6.25-zen1_preview3/fs/reiser4/plugin/file/cryptcompress.c
*** linux-2.6.25-zen0_test/fs/reiser4/plugin/file/cryptcompress.c 2008-05-03 00:30:00.284965444 +0200
--- linux-2.6.25-zen1_preview3/fs/reiser4/plugin/file/cryptcompress.c 2008-05-03 00:34:04.615866844 +0200
*************** static int find_anon_page_cluster(struct
*** 3438,3444 ****
{
int i = 0;
int found;
! spin_lock_irq(&mapping->tree_lock);
do {
/* looking for one page */
found = radix_tree_gang_lookup_tag(&mapping->page_tree,
--- 3438,3444 ----
{
int i = 0;
int found;
! write_lock_irq(&mapping->tree_lock);
do {
/* looking for one page */
found = radix_tree_gang_lookup_tag(&mapping->page_tree,
*************** static int find_anon_page_cluster(struct
*** 3460,3466 ****
if (last_page_in_cluster(pages[i++]))
break;
} while (1);
! spin_unlock_irq(&mapping->tree_lock);
return i;
}
--- 3460,3466 ----
if (last_page_in_cluster(pages[i++]))
break;
} while (1);
! write_unlock_irq(&mapping->tree_lock);
return i;
}
*************** static int capture_anon_pages(struct add
*** 3535,3544 ****
static int cryptcompress_inode_has_anon_pages(struct inode *inode)
{
int result;
! spin_lock_irq(&inode->i_mapping->tree_lock);
result = radix_tree_tagged(&inode->i_mapping->page_tree,
PAGECACHE_TAG_REISER4_MOVED);
! spin_unlock_irq(&inode->i_mapping->tree_lock);
return result;
}
--- 3535,3544 ----
static int cryptcompress_inode_has_anon_pages(struct inode *inode)
{
int result;
! read_lock_irq(&inode->i_mapping->tree_lock);
result = radix_tree_tagged(&inode->i_mapping->page_tree,
PAGECACHE_TAG_REISER4_MOVED);
! read_unlock_irq(&inode->i_mapping->tree_lock);
return result;
}
diff -Nrcpad linux-2.6.25-zen0_test/fs/reiser4/plugin/file/file.c linux-2.6.25-zen1_preview3/fs/reiser4/plugin/file/file.c
*** linux-2.6.25-zen0_test/fs/reiser4/plugin/file/file.c 2008-05-03 00:30:00.287219501 +0200
--- linux-2.6.25-zen1_preview3/fs/reiser4/plugin/file/file.c 2008-05-03 00:34:04.620516798 +0200
*************** static int has_anonymous_pages(struct in
*** 848,856 ****
{
int result;
! spin_lock_irq(&inode->i_mapping->tree_lock);
result = radix_tree_tagged(&inode->i_mapping->page_tree, PAGECACHE_TAG_REISER4_MOVED);
! spin_unlock_irq(&inode->i_mapping->tree_lock);
return result;
}
--- 848,856 ----
{
int result;
! read_lock_irq(&inode->i_mapping->tree_lock);
result = radix_tree_tagged(&inode->i_mapping->page_tree, PAGECACHE_TAG_REISER4_MOVED);
! read_unlock_irq(&inode->i_mapping->tree_lock);
return result;
}
*************** capture_anonymous_pages(struct address_s
*** 994,1000 ****
nr = 0;
/* find pages tagged MOVED */
! spin_lock_irq(&mapping->tree_lock);
pvec.nr = radix_tree_gang_lookup_tag(&mapping->page_tree,
(void **)pvec.pages, *index, count,
PAGECACHE_TAG_REISER4_MOVED);
--- 994,1000 ----
nr = 0;
/* find pages tagged MOVED */
! write_lock_irq(&mapping->tree_lock);
pvec.nr = radix_tree_gang_lookup_tag(&mapping->page_tree,
(void **)pvec.pages, *index, count,
PAGECACHE_TAG_REISER4_MOVED);
*************** capture_anonymous_pages(struct address_s
*** 1003,1009 ****
* there are no pages tagged MOVED in mapping->page_tree
* starting from *index
*/
! spin_unlock_irq(&mapping->tree_lock);
*index = (pgoff_t)-1;
return 0;
}
--- 1003,1009 ----
* there are no pages tagged MOVED in mapping->page_tree
* starting from *index
*/
! write_unlock_irq(&mapping->tree_lock);
*index = (pgoff_t)-1;
return 0;
}
*************** capture_anonymous_pages(struct address_s
*** 1014,1020 ****
radix_tree_tag_clear(&mapping->page_tree, pvec.pages[i]->index,
PAGECACHE_TAG_REISER4_MOVED);
}
! spin_unlock_irq(&mapping->tree_lock);
*index = pvec.pages[i - 1]->index + 1;
--- 1014,1020 ----
radix_tree_tag_clear(&mapping->page_tree, pvec.pages[i]->index,
PAGECACHE_TAG_REISER4_MOVED);
}
! write_unlock_irq(&mapping->tree_lock);
*index = pvec.pages[i - 1]->index + 1;
*************** capture_anonymous_pages(struct address_s
*** 1039,1051 ****
* set MOVED tag to all pages which left not
* captured
*/
! spin_lock_irq(&mapping->tree_lock);
for (; i < pagevec_count(&pvec); i ++) {
radix_tree_tag_set(&mapping->page_tree,
pvec.pages[i]->index,
PAGECACHE_TAG_REISER4_MOVED);
}
! spin_unlock_irq(&mapping->tree_lock);
pagevec_release(&pvec);
return result;
--- 1039,1051 ----
* set MOVED tag to all pages which left not
* captured
*/
! write_lock_irq(&mapping->tree_lock);
for (; i < pagevec_count(&pvec); i ++) {
radix_tree_tag_set(&mapping->page_tree,
pvec.pages[i]->index,
PAGECACHE_TAG_REISER4_MOVED);
}
! write_unlock_irq(&mapping->tree_lock);
pagevec_release(&pvec);
return result;
*************** capture_anonymous_pages(struct address_s
*** 1055,1065 ****
* 0 for Writeback-ed page. Set MOVED tag on
* that page
*/
! spin_lock_irq(&mapping->tree_lock);
radix_tree_tag_set(&mapping->page_tree,
pvec.pages[i]->index,
PAGECACHE_TAG_REISER4_MOVED);
! spin_unlock_irq(&mapping->tree_lock);
if (i == 0)
*index = pvec.pages[0]->index;
else
--- 1055,1065 ----
* 0 for Writeback-ed page. Set MOVED tag on
* that page
*/
! write_lock_irq(&mapping->tree_lock);
radix_tree_tag_set(&mapping->page_tree,
pvec.pages[i]->index,
PAGECACHE_TAG_REISER4_MOVED);
! write_unlock_irq(&mapping->tree_lock);
if (i == 0)
*index = pvec.pages[0]->index;
else
*************** static int sync_page_list(struct inode *
*** 1135,1141 ****
mapping = inode->i_mapping;
from = 0;
result = 0;
! spin_lock_irq(&mapping->tree_lock);
while (result == 0) {
struct page *page;
--- 1135,1141 ----
mapping = inode->i_mapping;
from = 0;
result = 0;
! read_lock_irq(&mapping->tree_lock);
while (result == 0) {
struct page *page;
*************** static int sync_page_list(struct inode *
*** 1150,1166 ****
* truncating by inode->i_mutex locked by sys_fsync
*/
page_cache_get(page);
! spin_unlock_irq(&mapping->tree_lock);
from = page->index + 1;
result = sync_page(page);
page_cache_release(page);
! spin_lock_irq(&mapping->tree_lock);
}
! spin_unlock_irq(&mapping->tree_lock);
return result;
}
--- 1150,1166 ----
* truncating by inode->i_mutex locked by sys_fsync
*/
page_cache_get(page);
! read_unlock_irq(&mapping->tree_lock);
from = page->index + 1;
result = sync_page(page);
page_cache_release(page);
! read_lock_irq(&mapping->tree_lock);
}
! read_unlock_irq(&mapping->tree_lock);
return result;
}


el, low) -> IRQ 17
[ 0.266984] PCI: Setting latency timer of device 0000:00:1c.5 to 64
[ 0.266993] PCI: Setting latency timer of device 0000:00:1e.0 to 64
[ 0.267000] NET: Registered protocol family 2
[ 0.349598] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.349966] IPv4 FIB: Using LC-trie version 0.408
[ 0.350019] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[ 0.351523] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes)
[ 0.352590] TCP: Hash tables configured (established 262144 bind 65536)
[ 0.352601] TCP reno registered
[ 0.191379] audit: initializing netlink socket (disabled)
[ 0.191398] type=2000 audit(1209776776.380:1): initialized
[ 0.191693] Total HugeTLB memory allocated, 0
[ 0.191814] DLM (built May 3 2008 00:50:07) installed
[ 0.191822] Loading Reiser4. See www.namesys.com for a description of Reiser4.
[ 0.191862] squashfs: version 3.3 (2007/10/31) Phillip Lougher
[ 0.191889] fuse init (API version 7.9)
[ 0.191942] JFS: nTxBlock = 8192, nTxLock = 65536
[ 0.194952] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
[ 0.195101] SGI XFS Quota Management subsystem
[ 0.195236] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[ 0.195247] io scheduler noop registered
[ 0.195252] io scheduler anticipatory registered
[ 0.195258] io scheduler deadline registered
[ 0.195266] io scheduler cfq registered (default)
[ 0.195366] pci 0000:06:00.0: Boot video device
[ 0.195449] PCI: Setting latency timer of device 0000:00:01.0 to 64
[ 0.195474] assign_interrupt_mode Found MSI capability
[ 0.195503] Allocate Port Service[0000:00:01.0:pcie00]
[ 0.195568] PCI: Setting latency timer of device 0000:00:1c.0 to 64
[ 0.195594] assign_interrupt_mode Found MSI capability
[ 0.195627] Allocate Port Service[0000:00:1c.0:pcie00]
[ 0.195657] Allocate Port Service[0000:00:1c.0:pcie02]
[ 0.195729] PCI: Setting latency timer of device 0000:00:1c.3 to 64
[ 0.195755] assign_interrupt_mode Found MSI capability
[ 0.195788] Allocate Port Service[0000:00:1c.3:pcie00]
[ 0.195858] PCI: Setting latency timer of device 0000:00:1c.4 to 64
[ 0.195883] assign_interrupt_mode Found MSI capability
[ 0.195916] Allocate Port Service[0000:00:1c.4:pcie00]
[ 0.195987] PCI: Setting latency timer of device 0000:00:1c.5 to 64
[ 0.196012] assign_interrupt_mode Found MSI capability
[ 0.196045] Allocate Port Service[0000:00:1c.5:pcie00]
[ 0.216769] Real Time Clock Driver v1.12ac
[ 0.216921] hpet_resources: 0xfed00000 is busy
[ 0.216995] Non-volatile memory driver v1.2
[ 0.217067] intel_rng: FWH not detected
[ 0.217093] Linux agpgart interface v0.103
[ 0.217167] ipmi message handler version 39.1
[ 0.217178] Hangcheck: starting hangcheck timer 0.9.0 (tick is 180 seconds, margin is 60 seconds).
[ 0.217189] Hangcheck: Using get_cycles().
[ 0.217428] vesafb: framebuffer at 0xd0000000, mapped to 0xffffc20000680000, using 5120k, total 262144k
[ 0.217440] vesafb: mode is 1280x1024x16, linelength=2560, pages=1
[ 0.217447] vesafb: scrolling: redraw
[ 0.217452] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0
[ 0.242515] Console: switching to colour frame buffer device 160x64
[ 0.265860] fb0: VESA VGA frame buffer device
[ 0.266134] input: Power Button (FF) as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 0.287053] ACPI: Power Button (FF) [PWRF]
[ 0.287279] input: Power Button (CM) as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[ 0.307886] ACPI: Power Button (CM) [PWRB]
[ 0.498147] ACPI: ACPI0007:00 is registered as cooling_device0
[ 0.498319] ACPI: Processor [CPU1] (supports 8 throttling states)
[ 0.309478] ACPI: ACPI0007:01 is registered as cooling_device1
[ 0.309650] ACPI: Processor [CPU2] (supports 8 throttling states)
[ 0.311388] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
[ 0.312584] brd: module loaded
[ 0.312967] loop: module loaded
[ 0.313063] PPP generic driver version 2.4.2
[ 0.313236] PPP Deflate Compression module registered
[ 0.313384] PPP BSD Compression module registered
[ 0.313576] PPP MPPE Compression module registered
[ 0.313717] NET: Registered protocol family 24
[ 0.313854] PPPoL2TP kernel driver, V1.0
[ 0.314145] tun: Universal TUN/TAP device driver, 1.6
[ 0.314293] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 0.314500] console [netcon0] enabled
[ 0.314607] netconsole: network logging started
[ 0.314909] Driver 'sd' needs updating - please use bus_type methods
[ 0.315119] Driver 'sr' needs updating - please use bus_type methods
[ 0.315370] ahci 0000:00:1f.2: version 3.0
[ 0.315388] ACPI: PCI Interrupt 0000:00:1f.2 -> GSI 23 (level, low) -> IRQ 23
[ 0.315658] ahci 0000:00:1f.2: enabling ASUS P5W DH Deluxe on-board SIMG4726 workaround
[ 1.319477] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode
[ 1.319747] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part
[ 1.319945] PCI: Setting latency timer of device 0000:00:1f.2 to 64
[ 1.320097] scsi0 : ahci
[ 1.320229] scsi1 : ahci
[ 1.320355] scsi2 : ahci
[ 1.320483] scsi3 : ahci
[ 1.320596] ata1: SATA max UDMA/133 abar m1024@0xefffb800 port 0xefffb900 irq 314
[ 1.320814] ata2: SATA max UDMA/133 irq_stat 0x00400040, connection status changed irq 314
[ 1.321773] ata3: SATA max UDMA/133 abar m1024@0xefffb800 port 0xefffba00 irq 314
[ 1.324087] ata4: SATA max UDMA/133 abar m1024@0xefffb800 port 0xefffba80 irq 314
[ 1.800946] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 2.030848] ata1.00: ATA-7: ST3250620AS, 3.AAE, max UDMA/133
[ 2.032419] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[ 2.084081] ata1.00: configured for UDMA/133
[ 4.807894] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 4.810262] ata2.00: ATA-6: Config Disk, RGL10364, max UDMA/133
[ 4.812515] ata2.00: 640 sectors, multi 1: LBA
[ 4.814832] ata2.00: device is on DMA blacklist, disabling DMA
[ 4.817229] ata2.00: configured for PIO4
[ 5.307892] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 5.555901] ata3.00: ATA-7: ST3250824AS, 3.AAH, max UDMA/133
[ 5.557884] ata3.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[ 5.606824] ata3.00: configured for UDMA/133
[ 5.884281] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 6.091111] ata4.00: ATA-6: ST3750330NS, SN04, max UDMA/133
[ 6.092607] ata4.00: 1465149168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[ 6.097458] ata4.00: configured for UDMA/133
[ 5.912939] scsi 0:0:0:0: Direct-Access ATA ST3250620AS 3.AA PQ: 0 ANSI: 5
[ 5.914457] sd 0:0:0:0: [sda] 488397168 512-byte hardware sectors (250059 MB)
[ 5.916691] sd 0:0:0:0: [sda] Write Protect is off
[ 5.918997] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 5.919013] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 5.921349] sd 0:0:0:0: [sda] 488397168 512-byte hardware sectors (250059 MB)
[ 5.923634] sd 0:0:0:0: [sda] Write Protect is off
[ 5.925941] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 5.925957] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 5.928257] sda: unknown partition table
[ 6.175989] sd 0:0:0:0: [sda] Attached SCSI disk
[ 6.178315] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 6.180659] scsi 1:0:0:0: Direct-Access ATA Config Disk RGL1 PQ: 0 ANSI: 5
[ 6.182966] sd 1:0:0:0: [sdb] 640 512-byte hardware sectors (0 MB)
[ 6.185207] sd 1:0:0:0: [sdb] Write Protect is off
[ 6.187514] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 6.187529] sd 1:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[ 6.189859] sd 1:0:0:0: [sdb] 640 512-byte hardware sectors (0 MB)
[ 6.192151] sd 1:0:0:0: [sdb] Write Protect is off
[ 6.194463] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 6.194479] sd 1:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[ 6.196774] sdb: unknown partition table
[ 6.199130] sd 1:0:0:0: [sdb] Attached SCSI disk
[ 6.201464] sd 1:0:0:0: Attached scsi generic sg1 type 0
[ 6.203791] scsi 2:0:0:0: Direct-Access ATA ST3250824AS 3.AA PQ: 0 ANSI: 5
[ 6.206114] sd 2:0:0:0: [sdc] 488397168 512-byte hardware sectors (250059 MB)
[ 6.208355] sd 2:0:0:0: [sdc] Write Protect is off
[ 6.210662] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[ 6.210678] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 6.213006] sd 2:0:0:0: [sdc] 488397168 512-byte hardware sectors (250059 MB)
[ 6.215301] sd 2:0:0:0: [sdc] Write Protect is off
[ 6.217606] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[ 6.217622] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 6.219922] sdc: sdc1 sdc2 sdc3 sdc4 < sdc5 sdc6 sdc7 sdc8 >
[ 6.289646] sd 2:0:0:0: [sdc] Attached SCSI disk
[ 6.291735] sd 2:0:0:0: Attached scsi generic sg2 type 0
[ 6.294078] scsi 3:0:0:0: Direct-Access ATA ST3750330NS SN04 PQ: 0 ANSI: 5
[ 6.296390] sd 3:0:0:0: [sdd] 1465149168 512-byte hardware sectors (750156 MB)
[ 6.298633] sd 3:0:0:0: [sdd] Write Protect is off
[ 6.300940] sd 3:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[ 6.300955] sd 3:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 6.303288] sd 3:0:0:0: [sdd] 1465149168 512-byte hardware sectors (750156 MB)
[ 6.305577] sd 3:0:0:0: [sdd] Write Protect is off
[ 6.307889] sd 3:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[ 6.307905] sd 3:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 6.310199] sdd: sdd1 sdd2 sdd3 sdd4 < sdd5 sdd6 sdd7 sdd8 sdd9 sdd10 sdd11 >
[ 6.396218] sd 3:0:0:0: [sdd] Attached SCSI disk
[ 6.398216] sd 3:0:0:0: Attached scsi generic sg3 type 0
[ 6.400539] ACPI: PCI Interrupt 0000:02:00.0[A] -> GSI 17 (level, low) -> IRQ 17
[ 7.405136] ahci 0000:02:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[ 7.407422] ahci 0000:02:00.0: flags: 64bit ncq pm led clo pmp pio slum part
[ 7.409740] PCI: Setting latency timer of device 0000:02:00.0 to 64
[ 7.409837] scsi4 : ahci
[ 7.412105] scsi5 : ahci
[ 7.414415] ata5: SATA max UDMA/133 abar m8192@0xebbfe000 port 0xebbfe100 irq 17
[ 7.416683] ata6: SATA max UDMA/133 abar m8192@0xebbfe000 port 0xebbfe180 irq 17
[ 7.747719] ata5: SATA link down (SStatus 0 SControl 300)
[ 8.381975] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 8.432338] ata6.00: ATA-7: ST3250620AS, 3.AAE, max UDMA/133
[ 8.432886] ata6.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32)
[ 8.476358] ata6.00: configured for UDMA/133
[ 8.476923] scsi 5:0:0:0: Direct-Access ATA ST3250620AS 3.AA PQ: 0 ANSI: 5
[ 8.479263] sd 5:0:0:0: [sde] 488397168 512-byte hardware sectors (250059 MB)
[ 8.481504] sd 5:0:0:0: [sde] Write Protect is off
[ 8.483811] sd 5:0:0:0: [sde] Mode Sense: 00 3a 00 00
[ 8.483827] sd 5:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 8.486158] sd 5:0:0:0: [sde] 488397168 512-byte hardware sectors (250059 MB)
[ 8.488449] sd 5:0:0:0: [sde] Write Protect is off
[ 8.490756] sd 5:0:0:0: [sde] Mode Sense: 00 3a 00 00
[ 8.490771] sd 5:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 8.493071] sde: unknown partition table
[ 8.516261] sd 5:0:0:0: [sde] Attached SCSI disk
[ 8.518588] sd 5:0:0:0: Attached scsi generic sg4 type 0
[ 8.520933] ata_piix 0000:00:1f.1: version 2.12
[ 8.520940] ACPI: PCI Interrupt 0000:00:1f.1[A] -> GSI 22 (level, low) -> IRQ 22
[ 8.523184] PCI: Setting latency timer of device 0000:00:1f.1 to 64
[ 8.523235] scsi6 : ata_piix
[ 8.525530] scsi7 : ata_piix
[ 8.530837] ata7: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
[ 8.532423] ata8: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
[ 8.958673] ata7.00: ATAPI: TSSTcorpCD/DVDW SH-S182D, SB06, max UDMA/33
[ 9.125273] ata7.00: configured for UDMA/33
[ 9.191574] scsi 6:0:0:0: CD-ROM TSSTcorp CD/DVDW SH-S182D SB06 PQ: 0 ANSI: 5
[ 9.198372] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 9.199090] Uniform CD-ROM driver Revision: 3.20
[ 9.201477] sr 6:0:0:0: Attached scsi CD-ROM sr0
[ 9.201536] sr 6:0:0:0: Attached scsi generic sg5 type 5
[ 9.206077] ACPI: PCI Interrupt 0000:02:00.1 -> GSI 18 (level, low) -> IRQ 18
[ 9.208369] PCI: Setting latency timer of device 0000:02:00.1 to 64
[ 9.208412] scsi8 : pata_jmicron
[ 9.210716] scsi9 : pata_jmicron
[ 9.213518] ata9: PATA max UDMA/100 cmd 0x9c00 ctl 0x9880 bmdma 0x9400 irq 18
[ 9.215293] ata10: PATA max UDMA/100 cmd 0x9800 ctl 0x9480 bmdma 0x9408 irq 18
[ 9.536784] usbcore: registered new interface driver libusual
[ 9.537160] PNP: No PS/2 controller found. Probing ports directly.
[ 9.543094] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 9.543999] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 9.546386] mice: PS/2 mouse device common for all mice
[ 9.634775] I2O subsystem v1.325
[ 9.636590] i2o: max drivers = 8
[ 9.639086] i2c /dev entries driver
[ 9.641271] device-mapper: uevent: version 1.0.3
[ 9.643591] device-mapper: ioctl: 4.13.0-ioctl (2007-10-18) initialised: dm-devel@redhat.com
[ 9.645881] device-mapper: multipath: version 1.0.5 loaded
[ 9.648164] device-mapper: multipath round-robin: version 1.0.0 loaded
[ 9.650504] EDAC MC: Ver: 2.1.0 May 3 2008
[ 9.652889] cpuidle: using governor ladder
[ 9.655108] cpuidle: using governor menu
[ 9.657477] usbcore: registered new interface driver hiddev
[ 9.659764] usbcore: registered new interface driver usbhid
[ 9.662053] drivers/hid/usbhid/hid-core.c: v2.6:USB HID core driver
[ 9.664402] Advanced Linux Sound Architecture Driver Version 1.0.16rc2 (Thu Jan 31 16:40:16 2008 UTC).
[ 9.666736] ACPI: PCI Interrupt 0000:00:1b.0[A] -> GSI 19 (level, low) -> IRQ 19
[ 9.669042] PCI: Setting latency timer of device 0000:00:1b.0 to 64
[ 9.714540] ALSA device list:
[ 9.715293] #0: HDA Intel at 0xefffc000 irq 313
[ 9.717654] Netfilter messages via NETLINK v0.30.
[ 9.722274] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 9.724570] arp_tables: (C) 2002 David S. Miller
[ 9.726881] TCP cubic registered
[ 9.729182] Initializing XFRM netlink socket
[ 9.731501] NET: Registered protocol family 1
[ 9.736144] NET: Registered protocol family 10
[ 9.738738] lo: Disabled Privacy Extensions
[ 9.741079] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 9.743086] IPv6 over IPv4 tunneling driver
[ 9.745612] sit0: Disabled Privacy Extensions
[ 9.750139] NET: Registered protocol family 17
[ 9.752333] NET: Registered protocol family 15
[ 9.754648] NET: Registered protocol family 5
[ 9.811914] SCTP: Hash tables configured (established 65536 bind 65536)
[ 9.893151] reiser4: sdd5: found disk format 4.0.0.
[ 10.361132] Switched to high resolution mode on CPU 1
[ 10.002332] Switched to high resolution mode on CPU 0
[ 10.016219] VFS: Mounted root (reiser4 filesystem) readonly.
[ 10.016234] Freeing unused kernel memory: 320k freed
[ 10.018630] Write protecting the kernel read-only data: 1340k
[ 10.023164] Warning: unable to open an initial console.
[ 11.296777] EDAC i82975x: ECC disabled on both channels.
[ 11.351650] ACPI: PCI Interrupt 0000:04:00.0[A] -> GSI 19 (level, low) -> IRQ 19
[ 11.351661] PCI: Setting latency timer of device 0000:04:00.0 to 64
[ 11.351690] sky2 0000:04:00.0: v1.21 addr 0xebdfc000 irq 19 Yukon-EC (0xb6) rev 2
[ 11.352337] sky2 eth0: addr 00:17:31:e8:f3:53
[ 11.352356] ACPI: PCI Interrupt 0000:03:00.0[A] -> GSI 16 (level, low) -> IRQ 16
[ 11.352363] PCI: Setting latency timer of device 0000:03:00.0 to 64
[ 11.352384] sky2 0000:03:00.0: v1.21 addr 0xebcfc000 irq 16 Yukon-EC (0xb6) rev 2
[ 11.353029] sky2 eth1: addr 00:17:31:ee:e4:18
[ 11.697834] USB Universal Host Controller Interface driver v3.0
[ 11.697866] ACPI: PCI Interrupt 0000:00:1d.0[A] -> GSI 20 (level, low) -> IRQ 20
[ 11.697874] PCI: Setting latency timer of device 0000:00:1d.0 to 64
[ 11.697877] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 11.698161] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1
[ 11.698188] uhci_hcd 0000:00:1d.0: irq 20, io base 0x0000e480
[ 11.698291] usb usb1: configuration #1 chosen from 1 choice
[ 11.698309] hub 1-0:1.0: USB hub found
[ 11.698314] hub 1-0:1.0: 2 ports detected
[ 11.446114] input: PC Speaker as /devices/platform/pcspkr/input/input2
[ 11.801050] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001
[ 11.801053] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 11.801055] usb usb1: Product: UHCI Host Controller
[ 11.801056] usb usb1: Manufacturer: Linux 2.6.25.1-zen1-preview3-07731-gd0e3fa3 uhci_hcd
[ 11.801058] usb usb1: SerialNumber: 0000:00:1d.0
[ 11.801101] ACPI: PCI Interrupt 0000:00:1d.7[A] -> GSI 20 (level, low) -> IRQ 20
[ 11.801114] PCI: Setting latency timer of device 0000:00:1d.7 to 64
[ 11.801117] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[ 11.801158] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
[ 11.805047] ehci_hcd 0000:00:1d.7: debug port 1
[ 11.805052] PCI: cache line size of 32 is not supported by device 0000:00:1d.7
[ 11.805059] ehci_hcd 0000:00:1d.7: irq 20, io mem 0xefffbc00
[ 11.817154] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
[ 11.817248] usb usb2: configuration #1 chosen from 1 choice
[ 11.817266] hub 2-0:1.0: USB hub found
[ 11.817273] hub 2-0:1.0: 8 ports detected
[ 11.509751] Linux video capture interface: v2.00
[ 11.557128] cx2388x alsa driver version 0.0.6 loaded
[ 11.921380] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[ 11.921383] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 11.921385] usb usb2: Product: EHCI Host Controller
[ 11.921386] usb usb2: Manufacturer: Linux 2.6.25.1-zen1-preview3-07731-gd0e3fa3 ehci_hcd
[ 11.921388] usb usb2: SerialNumber: 0000:00:1d.7
[ 11.921427] ACPI: PCI Interrupt 0000:00:1d.1 -> GSI 17 (level, low) -> IRQ 17
[ 11.921435] PCI: Setting latency timer of device 0000:00:1d.1 to 64
[ 11.921438] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 11.921482] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[ 11.921504] uhci_hcd 0000:00:1d.1: irq 17, io base 0x0000e800
[ 11.921586] usb usb3: configuration #1 chosen from 1 choice
[ 11.921603] hub 3-0:1.0: USB hub found
[ 11.921608] hub 3-0:1.0: 2 ports detected
[ 11.628781] cx88/2: cx2388x MPEG-TS Driver Manager version 0.0.6 loaded
[ 11.658243] cx88/0: cx2388x v4l2 driver version 0.0.6 loaded
[ 12.025614] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[ 12.025616] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 12.025618] usb usb3: Product: UHCI Host Controller
[ 12.025620] usb usb3: Manufacturer: Linux 2.6.25.1-zen1-preview3-07731-gd0e3fa3 uhci_hcd
[ 12.025621] usb usb3: SerialNumber: 0000:00:1d.1
[ 12.025655] ACPI: PCI Interrupt 0000:00:1d.2[C] -> GSI 18 (level, low) -> IRQ 18
[ 12.025664] PCI: Setting latency timer of device 0000:00:1d.2 to 64
[ 12.025667] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 12.025706] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[ 12.025728] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e880
[ 12.025812] usb usb4: configuration #1 chosen from 1 choice
[ 12.025831] hub 4-0:1.0: USB hub found
[ 12.025836] hub 4-0:1.0: 2 ports detected
[ 12.049317] Floppy drive(s): fd0 is 1.44M
[ 12.066168] FDC 0 is a post-1991 82077
[ 12.129714] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[ 12.129717] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 12.129719] usb usb4: Product: UHCI Host Controller
[ 12.129721] usb usb4: Manufacturer: Linux 2.6.25.1-zen1-preview3-07731-gd0e3fa3 uhci_hcd
[ 12.129722] usb usb4: SerialNumber: 0000:00:1d.2
[ 12.129754] ACPI: PCI Interrupt 0000:00:1d.3[D] -> GSI 19 (level, low) -> IRQ 19
[ 12.129762] PCI: Setting latency timer of device 0000:00:1d.3 to 64
[ 12.129764] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[ 12.129805] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[ 12.129832] uhci_hcd 0000:00:1d.3: irq 19, io base 0x0000ec00
[ 12.129914] usb usb5: configuration #1 chosen from 1 choice
[ 12.129933] hub 5-0:1.0: USB hub found
[ 12.129938] hub 5-0:1.0: 2 ports detected
[ 12.138932] hub 2-0:1.0: unable to enumerate USB device on port 1
[ 12.210751] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[ 12.210754] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 12.210757] usb usb5: Product: UHCI Host Controller
[ 12.210759] usb usb5: Manufacturer: Linux 2.6.25.1-zen1-preview3-07731-gd0e3fa3 uhci_hcd
[ 12.210761] usb usb5: SerialNumber: 0000:00:1d.3
[ 11.878196] ACPI: PCI Interrupt 0000:01:00.1[A] -> GSI 21 (level, low) -> IRQ 21
[ 11.878590] cx88[0]: subsystem: 0070:9402, board: Hauppauge WinTV-HVR1100 DVB-T/Hybrid [card=40,autodetected]
[ 11.878592] cx88[0]: TV tuner type 63, Radio tuner type -1
[ 12.275497] hub 2-0:1.0: unable to enumerate USB device on port 3
[ 11.990920] tuner' 0-0043: chip found @ 0x86 (cx88[0])
[ 11.990922] tda9887 0-0043: tda988[5/6/7] found
[ 11.994956] tuner' 0-0061: chip found @ 0xc2 (cx88[0])
[ 11.997562] tuner-simple 0-0061: type set to 63 (Philips FMD1216ME MK3 Hybrid Tuner)
[ 12.000103] tuner' 0-0063: chip found @ 0xc6 (cx88[0])
[ 12.047389] tveeprom 0-0050: Hauppauge model 94009, rev C3A0, serial# 429177
[ 12.047392] tveeprom 0-0050: MAC address is 00-0D-FE-06-8C-79
[ 12.047394] tveeprom 0-0050: tuner model is Philips FMD1216ME (idx 100, type 63)
[ 12.047396] tveeprom 0-0050: TV standards PAL(B/G) PAL(I) SECAM(L/L') PAL(D/D1/K) ATSC/DVB Digital (eeprom 0xf4)
[ 12.047398] tveeprom 0-0050: audio processor is CX882 (idx 33)
[ 12.047400] tveeprom 0-0050: decoder processor is CX882 (idx 25)
[ 12.047401] tveeprom 0-0050: has radio, has IR receiver, has no IR transmitter
[ 12.047403] cx88[0]: hauppauge eeprom: model=94009
[ 12.047548] input: cx88 IR (Hauppauge WinTV-HVR110 as /devices/pci0000:00/0000:00:1e.0/0000:01:00.1/input/input3
[ 12.398183] hub 2-0:1.0: unable to enumerate USB device on port 4
[ 12.102052] cx88[0]/1: CX88x/0: ALSA support for cx2388x boards
[ 12.102545] ACPI: PCI Interrupt 0000:01:00.0[A] -> GSI 21 (level, low) -> IRQ 21
[ 12.102554] cx88[0]/0: found at 0000:01:00.0, rev: 5, irq: 21, latency: 64, mmio: 0xe7000000
[ 12.102581] cx88[0]/0: registered device video0 [v4l2]
[ 12.102594] cx88[0]/0: registered device vbi0
[ 12.102607] cx88[0]/0: registered device radio0
[ 12.106299] cx88[0]/2: cx2388x 8802 Driver Manager
[ 12.106313] ACPI: PCI Interrupt 0000:01:00.2[A] -> GSI 21 (level, low) -> IRQ 21
[ 12.106320] cx88[0]/2: found at 0000:01:00.2, rev: 5, irq: 21, latency: 64, mmio: 0xe9000000
[ 12.106699] ACPI: PCI Interrupt 0000:00:1f.3 -> GSI 23 (level, low) -> IRQ 23
[ 12.107038] ACPI: PCI Interrupt 0000:01:03.0[A] -> GSI 21 (level, low) -> IRQ 21
[ 12.137117] cx88/2: cx2388x dvb driver version 0.0.6 loaded
[ 12.137120] cx88/2: registering cx8802 driver, type: dvb access: shared
[ 12.137123] cx88[0]/2: subsystem: 0070:9402, board: Hauppauge WinTV-HVR1100 DVB-T/Hybrid [card=40]
[ 12.137125] cx88[0]/2: cx2388x based DVB/ATSC card
[ 12.496290] DVB: registering new adapter (cx88[0])
[ 12.496293] DVB: registering frontend 0 (Conexant CX22702 DVB-T)...
[ 12.167899] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[21] MMIO=[ebaff800-ebafffff] Max Packet=[2048] IR/IT contexts=[4/8]
[ 12.615771] usb 2-7: new high speed USB device using ehci_hcd and address 5
[ 12.397204] usb 2-7: configuration #1 chosen from 1 choice
[ 12.397504] hub 2-7:1.0: USB hub found
[ 12.397734] hub 2-7:1.0: 4 ports detected
[ 12.474632] usb 2-7: New USB device found, idVendor=05e3, idProduct=0606
[ 12.474634] usb 2-7: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 12.474636] usb 2-7: Product: USB2.0 Hub
[ 12.692152] usb 3-1: new low speed USB device using uhci_hcd and address 2
[ 12.868360] usb 3-1: configuration #1 chosen from 1 choice
[ 12.887491] input: Microsoft Microsoft IntelliMouse® Optical as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.0/input/input4
[ 12.923691] input,hidraw0: USB HID v1.00 Mouse [Microsoft Microsoft IntelliMouse® Optical] on usb-0000:00:1d.1-1
[ 12.923769] usb 3-1: New USB device found, idVendor=045e, idProduct=0039
[ 12.923772] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 12.923775] usb 3-1: Product: Microsoft IntelliMouse® Optical
[ 12.923777] usb 3-1: Manufacturer: Microsoft
[ 12.974564] usb 3-2: new low speed USB device using uhci_hcd and address 3
[ 13.110007] usb 3-2: configuration #1 chosen from 1 choice
[ 13.127233] input: Microsoft Natural® Ergonomic Keyboard 4000 as /devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0/input/input5
[ 13.164411] input,hidraw1: USB HID v1.11 Keyboard [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:1d.1-2
[ 13.185297] input: Microsoft Natural® Ergonomic Keyboard 4000 as /devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.1/input/input6
[ 13.196934] ieee1394: Host added: ID:BUS[0-00:1023] GUID[0011d80000c1b73d]
[ 13.222297] input,hidraw2: USB HID v1.11 Device [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:1d.1-2
[ 13.222377] usb 3-2: New USB device found, idVendor=045e, idProduct=00db
[ 13.222380] usb 3-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 13.222383] usb 3-2: Product: Natural® Ergonomic Keyboard 4000
[ 13.222385] usb 3-2: Manufacturer: Microsoft
[ 13.275489] usb 1-1: new full speed USB device using uhci_hcd and address 2
[ 13.289369] usb 1-1: configuration #1 chosen from 1 choice
[ 13.293658] usb 1-1: New USB device found, idVendor=04f9, idProduct=016e
[ 13.293660] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=3
[ 13.293662] usb 1-1: SerialNumber: BROM4F624801
[ 13.308933] Initializing USB Mass Storage driver...
[ 13.345185] usb 2-7.3: new high speed USB device using ehci_hcd and address 6
[ 13.356499] usb 2-7.3: configuration #1 chosen from 1 choice
[ 13.357306] usb 2-7.3: New USB device found, idVendor=0bda, idProduct=8187
[ 13.357308] usb 2-7.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 13.357310] usb 2-7.3: Product: RTL8187_Wireless
[ 13.357311] usb 2-7.3: Manufacturer: Manufacturer_Realtek_RTL8187_
[ 13.357313] usb 2-7.3: SerialNumber: 0015AF037EDA
[ 13.360091] scsi10 : SCSI emulation for USB Mass Storage devices
[ 13.641242] usb-storage: device found at 2
[ 13.361749] usbcore: registered new interface driver usb-storage
[ 13.641266] usb-storage: waiting for device to settle before scanning
[ 13.361754] USB Mass Storage support registered.
[ 13.367753] usblp0: USB Bidirectional printer dev 2 if 0 alt 0 proto 2 vid 0x04F9 pid 0x016E
[ 13.367769] usbcore: registered new interface driver usblp
[ 16.935204] scsi 10:0:0:0: Direct-Access Brother MFC-5840CN 1.00 PQ: 0 ANSI: 2
[ 16.958352] sd 10:0:0:0: [sdf] Attached SCSI removable disk
[ 16.958352] sd 10:0:0:0: Attached scsi generic sg6 type 0
[ 16.958352] usb-storage: device scan complete
[ 25.104207] ReiserFS: sdd1: found reiserfs format "3.6" with standard journal
[ 25.104207] ReiserFS: sdd1: using ordered data mode
[ 25.104207] reiserfs: using flush barriers
[ 25.118789] ReiserFS: sdd1: journal params: device sdd1, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
[ 25.119175] ReiserFS: sdd1: checking transaction log (sdd1)
[ 25.131984] ReiserFS: sdd1: Using r5 hash to sort names
[ 25.155545] ReiserFS: sdd10: found reiserfs format "3.6" with standard journal
[ 25.155556] ReiserFS: sdd10: using ordered data mode
[ 25.155558] reiserfs: using flush barriers
[ 25.158755] ReiserFS: sdd10: journal params: device sdd10, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
[ 25.159148] ReiserFS: sdd10: checking transaction log (sdd10)
[ 25.159762] ReiserFS: sdd10: Using r5 hash to sort names
[ 25.193321] ReiserFS: sdc8: found reiserfs format "3.6" with standard journal
[ 25.193334] ReiserFS: sdc8: using ordered data mode
[ 25.193336] reiserfs: using flush barriers
[ 25.196799] ReiserFS: sdc8: journal params: device sdc8, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
[ 25.196799] ReiserFS: sdc8: checking transaction log (sdc8)
[ 25.196799] ReiserFS: sdc8: Using r5 hash to sort names
[ 26.072965] sky2 eth0: enabling interface
[ 26.076879] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 26.305918] Adding 4096532k swap on /dev/mapper/system-swap. Priority:-1 extents:1 across:4096532k
[ 26.502355] sky2 eth0: Link is up at 100 Mbps, full duplex, flow control both
[ 26.502366] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 28.388932] eth0: no IPv6 routers present
[ 30.255377] BUG: rwlock bad magic on CPU#0, mysqld/3958, ffff810137c99c68
[ 30.256991] Pid: 3958, comm: mysqld Not tainted 2.6.25.1-zen1-preview3-07731-gd0e3fa3 #1
[ 30.256991]
[ 30.256991] Call Trace:
[ 30.256991] [<ffffffff804a2a69>]
[ 30.256991] [<ffffffff8033d3d1>]
[ 30.256991] [<ffffffff80278a63>]
[ 30.256991] [<ffffffff8027b3f9>]
[ 30.256991] [<ffffffff80286288>]
[ 30.256991] [<ffffffff80288af2>]
[ 30.256991] [<ffffffff8028a6f4>]
[ 30.256991] [<ffffffff8027f923>]
[ 30.256991] [<ffffffff802793d8>]
[ 30.256991] [<ffffffff802c7195>]
[ 30.256991] [<ffffffff802c725e>]
[ 30.256991] [<ffffffff8020c26b>]
[ 30.256991]
[ 33.092566] w83627ehf: Found W83627EHG chip at 0x290
[ 33.109513] coretemp coretemp.0: Using relative temperature scale!
[ 33.111339] coretemp coretemp.1: Using relative temperature scale!
[ 34.757006] device eth0 entered promiscuous mode
[ 34.787094] device eth0 left promiscuous mode
[ 34.067166] device eth0 entered promiscuous mode
[ 35.313768] ReiserFS: dm-1: found reiserfs format "3.6" with standard journal
[ 35.314854] ReiserFS: dm-1: using ordered data mode
[ 35.317159] reiserfs: using flush barriers
[ 35.328732] ReiserFS: dm-1: journal params: device dm-1, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
[ 35.331168] ReiserFS: dm-1: checking transaction log (dm-1)
[ 35.337991] reiserfs: disabling flush barriers on dm-1
[ 36.199477] ReiserFS: dm-1: Using r5 hash to sort names


I'll get it later.prizident wrote:Please add support for eeepc specific hw modules if possible. It has 4 such modules.
1. atl2 network driver. I've heard that it will be included in main tree as a part of unified atlx module, but donno when it' gonna happen.
Patch for adding atl2 support to kernel can be found here http://people.redhat.com/csnook/atl2/at ... .patch.bz2
It applies fine on gentoo-sources 2.6.25-r1
2. eeepc-linux - this modules adds support for controlling fan and reporting system temperature.
http://eeepc-linux.googlecode.com/files ... 0.2.tar.gz
It compiles fine with gentoo-sources 2.6.25-r1
3. Patched asus_acpi kernel module
http://www.geeentoo.com/patches/asus_acpi_eee.patch.bz2 this patch adds support for controlling eeepc hardware
It also applies fine on latest gentoo-sources 2.6.25-r1
4. patched madwifi module, but i'm not sure if its possible to include it zen-sources at all
http://gentoo-wiki.com/HARDWARE_Asus_Ee ... 06EG_patch
does that driver work with 2.6.25 non zen???? i dont think so, we are not about to revert patches to make that driver workcharlie wrote:Will the Catalyst 8.4 drivers compile with any of the zen-preview kernels?

We have r500 DRI working in Mesa git w/TCL. All we need now is the fragment shader...rmh3093 wrote:does that driver work with 2.6.25 non zen???? i dont think so, we are not about to revert patches to make that driver workcharlie wrote:Will the Catalyst 8.4 drivers compile with any of the zen-preview kernels?
... and actually I bet there is 3d support working in with radeonhd before 2.6.26 is out, you should switch to an opensource driver

Thanks, it's working!kernelOfTruth wrote:gentlemen:
fixed![]()
the mentioned differences from the current reiser4-tree fixed this hardlock bug
http://forums.gentoo.org/viewtopic-p-50 ... ml#5081386
here the packed folder & patch, please include / replace:
http://rapidshare.com/files/112116286/r ... inal.patch
http://rapidshare.com/files/112116533/r ... -zen1.tbz2
now 2.6.25.1-zen1 can go final![]()
thanks & good night
sf.net is being a pain, i couldn't upload the patch this morning. I'm going to try again.ejs76 wrote:dodo,
What's wrong with SF.net patches??? After 2.6.25-zen1-preview2 none have showed up...
I did get a RSS message that zen1 is out, but no patch.

I have added these patches to git, under the branch eeepc, based on 2.6.25.1. Please test, and also please ask your upstream to port your asus_acpi patch to the newer asus-laptop module, as asus_acpi is officially deprecated.prizident wrote:Please add support for eeepc specific hw modules if possible. It has 4 such modules.
1. atl2 network driver. I've heard that it will be included in main tree as a part of unified atlx module, but donno when it' gonna happen.
Patch for adding atl2 support to kernel can be found here http://people.redhat.com/csnook/atl2/at ... .patch.bz2
It applies fine on gentoo-sources 2.6.25-r1
2. eeepc-linux - this modules adds support for controlling fan and reporting system temperature.
http://eeepc-linux.googlecode.com/files ... 0.2.tar.gz
It compiles fine with gentoo-sources 2.6.25-r1
3. Patched asus_acpi kernel module
http://www.geeentoo.com/patches/asus_acpi_eee.patch.bz2 this patch adds support for controlling eeepc hardware
It also applies fine on latest gentoo-sources 2.6.25-r1
4. patched madwifi module, but i'm not sure if its possible to include it zen-sources at all
http://gentoo-wiki.com/HARDWARE_Asus_Ee ... 06EG_patch
Code: Select all
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,8 @@
VERSION = 2
PATCHLEVEL = 6
SUBLEVEL = 25
-EXTRAVERSION = .1
-NAME = Funky Weasel is Jiggy wit it
+EXTRAVERSION =
+NAME = Would you like some Cheese with your Whine, Sir?