View Full Version : [arch] boot lento : exception Emask
Ecatonchiro
03-01-2008, 16:27
sto provando arch su un portatile
e durante la sequenza di boot ottengo una trafila enorme
di ata2.00: exception Emask ... che rallentano di molto il boot.
leggendo anche sul forum ufficiale vedo che la cosa e' gia' stata segnalata
e si propone come soluzione l'upgrade del kernel a quello in testing.
Da niubbio di questa ditribuzione (sto proprio iniziandone ora lo studio)
ho provato con un pacman -Syu ma il problema persiste.
(anche perche' penso che in questo modo si sincronizzi solo il gestore di pacchetti)
avete consigli?
e' proprio necessario fare un aggiornamento del kernel?
mm devi attivare il repository testing.
per farlo devi decommentarlo dalla riga relativa in pacman.conf, poi aggiorni il sistema e ti scaricherà le cose dal testing.
Ecatonchiro
03-01-2008, 22:30
no, non va, aggiorna alcuni pacchetti ma non il kernel
PS. per completezza,
le discussioni a cui facevo riferimento prima erano queste
http://bbs.archlinux.org/viewtopic.php?id=35847
http://bbs.archlinux.org/viewtopic.php?id=29043
mi stampi la versione del kernel? dovrebbe essere inferiore a "kernel26-2.6.23.1-6"
puoi provare l'installazione forzata, mi pare che il comando fosse pacman -F.
Ecatonchiro
04-01-2008, 09:42
ciao,
da [pacman -Q kernel26] ottengo la versione 2.6.23.12-3
manu@2986
04-01-2008, 10:51
Nel pacman.conf i repository hanno una certa priorità, se infatti metti il repository testing prima di quello core, con pacman -Syu dovrebbe installarti il nuovo kernel senza problemi, ma ti aggiornerebbe anche tutto il resto a testing, che non è molto consigliabile.
Quindi se vuoi installare solo un pacchetto da testing, metti il repository con poca priorità, quindi direi dopo quello community e poi fai pacman -S testing/kernel26.
Spero di essere stato abbastanza chiaro, se hai altri dubbi chiedi pure..
Ecatonchiro
04-01-2008, 16:31
ciao chiarissimo ed utile per il mio studio,
ma non per il problema.
La versione del kernel risulta più aggiornata rispetto a quella
incriminata ma nonostante questo continuo ad avere un boot pachidermico.
(al punto che la prima volta che e' partito, non buttando l'occhio ai msg,
mi chiedevo dove diamine fosse la tanto celebrata velocita').
Altro esperimento sarebbe provare il downgrade al vecchio sistema ide.
Ma la cosa non mi entusiasma molto.
leggendo il secondo topo da te linkato ho trovato questa risposta:
http://bbs.archlinux.org/viewtopic.php?pid=223425#p223425
1) use the earlymodules=piix boot parameter;
2) replace any sd with a hd in menu.lst;
3) replace any sd with a hd in fstab.
il n1) l'ho eseguito anche io a suo tempo, per un problema non dissimile (ma non il tuo, sia chiaro).
già provato a modificare menu.lst?
Ecatonchiro
04-01-2008, 18:10
e' che non so come eseguire il punto 1 :B
se avete suggerimenti, son ben accetti
manu@2986
04-01-2008, 19:02
e' che non so come eseguire il punto 1 :B
se avete suggerimenti, son ben accetti
credo che basti mettere dentro al file /boot/grub/menu.lst questa riga: earlymodules=piix
credo che basti mettere dentro al file /boot/grub/menu.lst questa riga: earlymodules=piix
NO! così sballa tutto
deve aggiungere la stringa "earlymodules=piix" in coda alle altre stringhe della stessa riga.
se posta il menu.lst gli faccio vedere dove va inserito
Ecatonchiro
05-01-2008, 17:22
# Config file for GRUB - The GNU GRand Unified Bootloader
# /boot/grub/menu.lst
# DEVICE NAME CONVERSIONS
#
# Linux Grub
# -------------------------
# /dev/fd0 (fd0)
# /dev/hda (hd0)
# /dev/hdb2 (hd1,1)
# /dev/hda3 (hd0,2)
#
# FRAMEBUFFER RESOLUTION SETTINGS
# +-------------------------------------------------+
# | 640x480 800x600 1024x768 1280x1024
# ----+--------------------------------------------
# 256 | 0x301=769 0x303=771 0x305=773 0x307=775
# 32K | 0x310=784 0x313=787 0x316=790 0x319=793
# 64K | 0x311=785 0x314=788 0x317=791 0x31A=794
# 16M | 0x312=786 0x315=789 0x318=792 0x31B=795
# +-------------------------------------------------+
# general configuration:
timeout 5
default 0
color light-blue/black light-cyan/blue
# boot sections follow
# each is implicitly numbered from 0 in the order of appearance below
#
# TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
#
#-*
# (0) Arch Linux
title Arch Linux
root (hd0,1)
kernel /boot/vmlinuz26 root=/dev/sda2 ro
initrd /boot/kernel26.img
# (1) Arch Linux
title Arch Linux Fallback
root (hd0,1)
kernel /boot/vmlinuz26 root=/dev/sda2 ro
initrd /boot/kernel26-fallback.img
# (1) Windows
title Windows
rootnoverify (hd0,0)
makeactive
chainloader +1
Eccolo, fate conto che il disco e' partizionato
in sda1 sda2 sda3 sda4 < sda5 sda6 >
e in fstab faccio montare solo la parte relativa a / e swap
#
# /etc/fstab: static file system information
#
# <file system> <dir> <type> <options> <dump> <pass>
none /dev/pts devpts defaults 0 0
none /dev/shm tmpfs defaults 0 0
/dev/cdrom /mnt/cdrom iso9660 ro,user,noauto,unhide 0 0
/dev/sda2 / ext3 defaults 0 1
/dev/sda5 swap swap defaults 0 0
Ecatonchiro
06-01-2008, 17:04
ho modificato come segue,
ma non ha funzionato.
Inoltre il fstab commutato da sdax a hdax non viene riconosciuto
e il boot si pianta.
Ovviamente avevo fatto un backup e ora ho ripristinato come sopra
# Config file for GRUB - The GNU GRand Unified Bootloader
# /boot/grub/menu.lst
# general configuration:
timeout 5
default 0
color light-blue/black light-cyan/blue
# (0) Arch Linux
title Arch Linux
root (hd0,1)
kernel /boot/vmlinuz26 root=/dev/hda2 ro earlymodules=piix
initrd /boot/kernel26.img
# (1) Arch Linux
title Arch Linux Fallback
root (hd0,1)
kernel /boot/vmlinuz26 root=/dev/hda2 ro
initrd /boot/kernel26-fallback.img
# (1) Windows
title Windows
rootnoverify (hd0,0)
makeactive
chainloader +1
#
# /etc/fstab: static file system information
#
# <file system> <dir> <type> <options> <dump> <pass>
none /dev/pts devpts defaults 0 0
none /dev/shm tmpfs defaults 0 0
/dev/cdrom /mnt/cdrom iso9660 ro,user,noauto,unhide 0 0
/dev/hda2 / ext3 defaults 0 1
/dev/hda5 swap swap defaults 0 0
Che c'entri il mkinitcpio, di cui ammetto di non conoscere per bene la funzione.
kernel /boot/vmlinuz26 root=/dev/Xda2 ro earlymodules=piix
non cambiare lettera di unità, lascia quella originaria.
Ecatonchiro
07-01-2008, 16:51
negativo,
questo il mio dmesg
Linux version 2.6.23-ARCH (root@T-POWA-LX) (gcc version 4.2.2) #1 SMP PREEMPT Fri Dec 21 19:39:35 UTC 2007
BIOS-provided physical RAM map:
BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
BIOS-e820: 00000000000d8000 - 00000000000e0000 (reserved)
BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved)
BIOS-e820: 0000000000100000 - 000000001fef0000 (usable)
BIOS-e820: 000000001fef0000 - 000000001feff000 (ACPI data)
BIOS-e820: 000000001feff000 - 000000001ff00000 (ACPI NVS)
BIOS-e820: 000000001ff00000 - 0000000020000000 (reserved)
BIOS-e820: 00000000fffc0000 - 0000000100000000 (reserved)
0MB HIGHMEM available.
510MB LOWMEM available.
Entering add_active_range(0, 0, 130800) 0 entries of 256 used
Zone PFN ranges:
DMA 0 -> 4096
Normal 4096 -> 130800
HighMem 130800 -> 130800
Movable zone start PFN for each node
early_node_map[1] active PFN ranges
0: 0 -> 130800
On node 0 totalpages: 130800
DMA zone: 32 pages used for memmap
DMA zone: 0 pages reserved
DMA zone: 4064 pages, LIFO batch:0
Normal zone: 989 pages used for memmap
Normal zone: 125715 pages, LIFO batch:31
HighMem zone: 0 pages used for memmap
Movable zone: 0 pages used for memmap
DMI present.
ACPI: RSDP 000F6D80, 0014 (r0 PTLTD )
ACPI: RSDT 1FEFA663, 0030 (r1 PTLTD RSDT 6040000 LTP 0)
ACPI: FACP 1FEFEEAF, 0074 (r1 ALI M1533 6040000 PTL F4240)
ACPI: DSDT 1FEFA693, 481C (r1 ALI M1533 6040000 MSFT 100000D)
ACPI: FACS 1FEFFFC0, 0040
ACPI: BOOT 1FEFEF23, 0028 (r1 PTLTD $SBFTBL$ 6040000 LTP 1)
ACPI: SSDT 1FEFEF4B, 00B5 (r1 PTLTD ACPIPST1 6040000 LTP 1)
ACPI: PM-Timer IO Port: 0x8008
Allocating PCI resources starting at 30000000 (gap: 20000000:dffc0000)
swsusp: Registered nosave memory region: 000000000009f000 - 00000000000a0000
swsusp: Registered nosave memory region: 00000000000a0000 - 00000000000d8000
swsusp: Registered nosave memory region: 00000000000d8000 - 00000000000e0000
swsusp: Registered nosave memory region: 00000000000e0000 - 00000000000e4000
swsusp: Registered nosave memory region: 00000000000e4000 - 0000000000100000
Built 1 zonelists in Zone order. Total pages: 129779
Kernel command line: root=/dev/sda2 ro vga=773 earlymodules=piixbt
Local APIC disabled by BIOS -- you can enable it with "lapic"
mapped APIC to ffffb000 (0140d000)
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Initializing CPU#0
PID hash table entries: 2048 (order: 11, 8192 bytes)
Detected 1195.603 MHz processor.
Console: colour dummy device 80x25
console [tty0] enabled
Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
Memory: 512596k/523200k available (2444k kernel code, 10056k reserved, 818k data, 296k init, 0k highmem)
virtual kernel memory layout:
fixmap : 0xfff80000 - 0xfffff000 ( 508 kB)
pkmap : 0xff800000 - 0xffc00000 (4096 kB)
vmalloc : 0xe0800000 - 0xff7fe000 ( 495 MB)
lowmem : 0xc0000000 - 0xdfef0000 ( 510 MB)
.init : 0xc0435000 - 0xc047f000 ( 296 kB)
.data : 0xc03630a9 - 0xc042f99c ( 818 kB)
.text : 0xc0100000 - 0xc03630a9 (2444 kB)
Checking if this processor honours the WP bit even in supervisor mode... Ok.
SLUB: Genslabs=22, HWalign=64, Order=0-1, MinObjects=4, CPUs=1, Nodes=1
Calibrating delay using timer specific routine.. 2394.47 BogoMIPS (lpj=3989564)
Security Framework v1.0.0 initialized
Mount-cache hash table entries: 512
CPU: After generic identify, caps: 3febf9ff 00000000 00000000 00000000 00000000 00000000 00000000 00000000
CPU: Trace cache: 12K uops, L1 D cache: 8K
CPU: L2 cache: 512K
CPU: Hyper-Threading is disabled
CPU: After all inits, caps: 3febf9ff 00000000 00000000 0000b080 00000000 00000000 00000000 00000000
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
CPU0: Intel P4/Xeon Extended MCE MSRs (12) available
CPU0: Thermal monitoring enabled
Compat vDSO mapped to ffffe000.
Checking 'hlt' instruction... OK.
SMP alternatives: switching to UP code
Freeing SMP alternatives: 11k freed
Early unpacking initramfs... done
ACPI: Core revision 20070126
ACPI: Looking for DSDT in initramfs... error, file /DSDT.aml not found.
ACPI: setting ELCR to 0200 (from 0c00)
CPU0: Intel(R) Pentium(R) 4 Mobile CPU 2.00GHz stepping 04
SMP motherboard not detected.
Local APIC not detected. Using dummy APIC emulation.
Brought up 1 CPUs
Booting paravirtualized kernel on bare hardware
NET: Registered protocol family 16
ACPI: bus type pci registered
PCI: PCI BIOS revision 2.10 entry at 0xfd58e, last bus=3
PCI: Using configuration type 1
Setting up standard PCI resources
ACPI: EC: Look up EC in DSDT
ACPI: EC: GPE = 0x22, I/O: command/status = 0x66, data = 0x62
ACPI: Interpreter enabled
ACPI: (supports S0 S3 S4 S5)
ACPI: Using PIC for interrupt routing
ACPI: EC: GPE = 0x22, I/O: command/status = 0x66, data = 0x62
ACPI: PCI Root Bridge [PCI0] (0000:00)
PCI quirk: region 8000-803f claimed by ali7101 ACPI
PCI quirk: region 8040-805f claimed by ali7101 SMB
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Link [LNKA] (IRQs *10)
ACPI: PCI Interrupt Link [LNKB] (IRQs 11) *0, disabled.
ACPI: PCI Interrupt Link [LNKC] (IRQs 10) *11
ACPI: PCI Interrupt Link [LNKD] (IRQs 11) *0, disabled.
ACPI: PCI Interrupt Link [LNKE] (IRQs 10) *11
ACPI: PCI Interrupt Link [LNKF] (IRQs 11) *0, disabled.
ACPI: PCI Interrupt Link [LNKG] (IRQs 10) *11
ACPI: PCI Interrupt Link [LNKH] (IRQs 11) *10
ACPI: PCI Interrupt Link [LNKU] (IRQs 10) *11
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
ACPI: bus type pnp registered
pnp: PnP ACPI: found 12 devices
ACPI: ACPI bus type pnp unregistered
SCSI subsystem initialized
PCI: Using ACPI for IRQ routing
PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report
NetLabel: Initializing
NetLabel: domain hash size = 128
NetLabel: protocols = UNLABELED CIPSOv4
NetLabel: unlabeled traffic allowed by default
ACPI: RTC can wake from S4
Time: tsc clocksource has been installed.
pnp: 00:07: ioport range 0x3810-0x381f has been reserved
pnp: 00:07: ioport range 0x4d0-0x4d1 has been reserved
pnp: 00:07: ioport range 0x8000-0x805f could not be reserved
pnp: 00:07: ioport range 0x4d6-0x4d6 has been reserved
pnp: 00:07: iomem range 0xfffc0000-0xffffffff could not be reserved
pnp: 00:07: iomem range 0xfec00000-0xfec00fff has been reserved
PCI: Failed to allocate mem resource #6:10000@f0000000 for 0000:01:00.0
PCI: Bridge: 0000:00:01.0
IO window: disabled.
MEM window: e1000000-e1ffffff
PREFETCH window: e8000000-efffffff
PCI: Bus 2, cardbus bridge: 0000:00:13.0
IO window: 00001000-000010ff
IO window: 00001400-000014ff
PREFETCH window: 30000000-33ffffff
MEM window: 34000000-37ffffff
PCI: Bus 6, cardbus bridge: 0000:00:13.1
IO window: 00002800-000028ff
IO window: 00002c00-00002cff
PREFETCH window: 38000000-3bffffff
MEM window: 3c000000-3fffffff
PCI: Setting latency timer of device 0000:00:01.0 to 64
ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11
PCI: setting IRQ 11 as level-triggered
ACPI: PCI Interrupt 0000:00:13.0[A] -> Link [LNKB] -> GSI 11 (level, low) -> IRQ 11
PCI: Setting latency timer of device 0000:00:13.0 to 64
ACPI: PCI Interrupt 0000:00:13.1[A] -> Link [LNKB] -> GSI 11 (level, low) -> IRQ 11
PCI: Setting latency timer of device 0000:00:13.1 to 64
NET: Registered protocol family 2
IP route cache hash table entries: 4096 (order: 2, 16384 bytes)
TCP established hash table entries: 16384 (order: 6, 262144 bytes)
TCP bind hash table entries: 16384 (order: 5, 196608 bytes)
TCP: Hash tables configured (established 16384 bind 16384)
TCP reno registered
checking if image is initramfs... it is
Freeing initrd memory: 1493k freed
Simple Boot Flag at 0x37 set to 0x1
apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
apm: overridden by ACPI.
VFS: Disk quotas dquot_6.5.1
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
io scheduler noop registered
io scheduler anticipatory registered
io scheduler deadline registered
io scheduler cfq registered (default)
Activating ISA DMA hang workarounds.
Boot video device is 0000:01:00.0
vesafb: framebuffer at 0xe8000000, mapped to 0xe0880000, using 1536k, total 32768k
vesafb: mode is 1024x768x8, linelength=1024, pages=3
vesafb: protected mode interface info at c000:e670
vesafb: pmi: set display start = c00ce6b5, set palette = c00ce73a
vesafb: pmi: ports = b4c3 b503 ba03 c003 c103 c403 c503 c603 c703 c803 c903 cc03 ce03 cf03 d003 d103 d203 d303 d403 d503 da03 ff03
vesafb: scrolling: redraw
vesafb: Pseudocolor: size=8:8:8:8, shift=0:0:0:0
Console: switching to colour frame buffer device 128x48
fb0: VESA VGA frame buffer device
isapnp: Scanning for PnP cards...
Switched to high resolution mode on CPU 0
isapnp: No Plug & Play device found
Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
ACPI: PCI Interrupt Link [LNKG] enabled at IRQ 10
PCI: setting IRQ 10 as level-triggered
ACPI: PCI Interrupt 0000:00:08.0[A] -> Link [LNKG] -> GSI 10 (level, low) -> IRQ 10
ACPI: PCI interrupt for device 0000:00:08.0 disabled
RAMDISK driver initialized: 16 RAM disks of 16384K size 1024 blocksize
loop: module loaded
input: Macintosh mouse button emulation as /devices/virtual/input/input0
PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12
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: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
TCP cubic registered
NET: Registered protocol family 1
NET: Registered protocol family 17
Using IPI No-Shortcut mode
Freeing unused kernel memory: 296k freed
libata version 2.21 loaded.
ACPI: Unable to derive IRQ for device 0000:00:10.0
ACPI: PCI Interrupt 0000:00:10.0[A]: no GSI
scsi0 : pata_ali
scsi1 : pata_ali
ata1: PATA max UDMA/100 cmd 0x000101f0 ctl 0x000103f6 bmdma 0x00012480 irq 14
ata2: PATA max UDMA/100 cmd 0x00010170 ctl 0x00010376 bmdma 0x00012488 irq 15
ata1.00: ATA-5: IC25N040ATCS04-0, CA4OA71A, max UDMA/100
ata1.00: 78140160 sectors, multi 16: LBA
ata1.00: limited to UDMA/33 due to 40-wire cable
ata1.00: configured for UDMA/33
ata2.00: ATAPI: UJDA720 DVD/CDRW, 1.00, max UDMA/33
ata2.00: configured for UDMA/33
scsi 0:0:0:0: Direct-Access ATA IC25N040ATCS04-0 CA4O PQ: 0 ANSI: 5
ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x2 frozen
ata2.00: cmd a0/01:00:00:00:00/00:00:00:00:00/a0 tag 0 cdb 0x12 data 96 in
res 40/00:02:00:24:00/00:00:00:00:00/a0 Emask 0x4 (timeout)
ata2: soft resetting port
ata2.00: configured for UDMA/33
ata2: EH complete
ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x2 frozen
ata2.00: cmd a0/01:00:00:00:00/00:00:00:00:00/a0 tag 0 cdb 0x12 data 96 in
res 40/00:02:00:24:00/00:00:00:00:00/a0 Emask 0x4 (timeout)
ata2: soft resetting port
ata2.00: configured for UDMA/33
ata2: EH complete
ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x2 frozen
ata2.00: cmd a0/01:00:00:00:00/00:00:00:00:00/a0 tag 0 cdb 0x12 data 96 in
res 40/00:02:00:24:00/00:00:00:00:00/a0 Emask 0x4 (timeout)
ata2: soft resetting port
ata2.00: configured for UDMA/33
ata2: EH complete
ata2.00: limiting speed to UDMA/25:PIO4
ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x2 frozen
ata2.00: cmd a0/01:00:00:00:00/00:00:00:00:00/a0 tag 0 cdb 0x12 data 96 in
res 40/00:02:00:24:00/00:00:00:00:00/a0 Emask 0x4 (timeout)
ata2: soft resetting port
ata2.00: configured for UDMA/25
scsi scan: 96 byte inquiry failed. Consider BLIST_INQUIRY_36 for this device
ata2: EH complete
scsi 1:0:0:0: CD-ROM MATSHITA UJDA720 DVD/CDRW 1.00 PQ: 0 ANSI: 5
sd 0:0:0:0: [sda] 78140160 512-byte hardware sectors (40008 MB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sd 0:0:0:0: [sda] 78140160 512-byte hardware sectors (40008 MB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
sd 0:0:0:0: [sda] Attached SCSI disk
ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x2 frozen
ata2.00: cmd a0/01:00:00:00:00/00:00:00:00:00/a0 tag 0 cdb 0x5a data 128 in
res 40/00:03:00:00:20/00:00:00:00:00/a0 Emask 0x4 (timeout)
ata2: soft resetting port
ata2.00: configured for UDMA/25
ata2: EH complete
ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x2 frozen
ata2.00: cmd a0/01:00:00:00:00/00:00:00:00:00/a0 tag 0 cdb 0x5a data 128 in
res 40/00:03:00:00:20/00:00:00:00:00/a0 Emask 0x4 (timeout)
ata2: soft resetting port
ata2.00: configured for UDMA/25
ata2: EH complete
ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x2 frozen
ata2.00: cmd a0/01:00:00:00:00/00:00:00:00:00/a0 tag 0 cdb 0x5a data 128 in
res 40/00:03:00:00:20/00:00:00:00:00/a0 Emask 0x4 (timeout)
ata2: soft resetting port
ata2.00: configured for UDMA/25
ata2: EH complete
ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x2 frozen
ata2.00: cmd a0/01:00:00:00:00/00:00:00:00:00/a0 tag 0 cdb 0x5a data 128 in
res 40/00:03:00:00:20/00:00:00:00:00/a0 Emask 0x4 (timeout)
ata2: soft resetting port
ata2.00: configured for UDMA/25
sr0: scsi-1 drive
Uniform CD-ROM driver Revision: 3.20
ata2: EH complete
sr 1:0:0:0: Attached scsi CD-ROM sr0
kjournald starting. Commit interval 5 seconds
EXT3-fs: mounted filesystem with ordered data mode.
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
8139cp: 10/100 PCI Ethernet driver v1.3 (Mar 22, 2004)
8139cp 0000:00:0a.0: This (id 10ec:8139 rev 10) is not an 8139C+ compatible chip
8139cp 0000:00:0a.0: Try the "8139too" driver instead.
8139too Fast Ethernet driver 0.9.28
ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10
ACPI: PCI Interrupt 0000:00:0a.0[A] -> Link [LNKA] -> GSI 10 (level, low) -> IRQ 10
eth0: RealTek RTL8139 at 0xe0812000, 00:00:e2:91:04:e9, IRQ 10
eth0: Identified 8139 chip type 'RTL-8100B/8139D'
ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 11
ACPI: PCI Interrupt 0000:00:06.0[A] -> Link [LNKH] -> GSI 11 (level, low) -> IRQ 11
ACPI: AC Adapter [AC] (on-line)
ACPI: Battery Slot [BAT0] (battery present)
input: Power Button (FF) as /devices/virtual/input/input2
ACPI: Power Button (FF) [PWRF]
input: Power Button (CM) as /devices/virtual/input/input3
ACPI: Power Button (CM) [PWRB]
input: Sleep Button (CM) as /devices/virtual/input/input4
ACPI: Sleep Button (CM) [SLPB]
input: Lid Switch as /devices/virtual/input/input5
ACPI: Lid Switch [LID]
ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
ACPI: Processor [CPU0] (supports 8 throttling states)
ACPI: Thermal Zone [THRS] (41 C)
ACPI: Thermal Zone [THRC] (44 C)
sd 0:0:0:0: Attached scsi generic sg0 type 0
sr 1:0:0:0: Attached scsi generic sg1 type 5
Linux agpgart interface v0.102
agpgart: Detected ALi M1671 chipset
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
agpgart: AGP aperture is 128M @ 0xf0000000
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
ohci_hcd: 2006 August 04 USB 1.1 'Open' Host Controller (OHCI) Driver
ACPI: PCI Interrupt Link [LNKE] enabled at IRQ 10
ACPI: PCI Interrupt 0000:00:0f.0[A] -> Link [LNKE] -> GSI 10 (level, low) -> IRQ 10
ohci_hcd 0000:00:0f.0: OHCI Host Controller
ohci_hcd 0000:00:0f.0: new USB bus registered, assigned bus number 1
ohci_hcd 0000:00:0f.0: irq 10, io mem 0xe0003000
usb usb1: configuration #1 chosen from 1 choice
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 2 ports detected
ACPI: PCI Interrupt Link [LNKU] enabled at IRQ 10
ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LNKU] -> GSI 10 (level, low) -> IRQ 10
ohci_hcd 0000:00:14.0: OHCI Host Controller
ohci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
ohci_hcd 0000:00:14.0: irq 10, io mem 0xe0004000
usb usb2: configuration #1 chosen from 1 choice
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 2 ports detected
ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10
ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10
firewire_ohci: Added fw-ohci device 0000:00:0b.0, OHCI version 1.0
firewire_core: created new fw device fw0 (0 config rom retries, S400)
Yenta: CardBus bridge found at 0000:00:13.0 [1025:102b]
Yenta O2: res at 0x94/0xD4: ea/00
Yenta O2: enabling read prefetch/write burst
Yenta: ISA IRQ mask 0x00b8, PCI irq 11
Socket status: 30000006
Yenta: CardBus bridge found at 0000:00:13.1 [1025:102b]
Yenta: ISA IRQ mask 0x00b8, PCI irq 11
Socket status: 30000410
Synaptics Touchpad, model: 1, fw: 5.8, id: 0x9248b1, caps: 0x904713/0x4000
input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input6
pccard: PCMCIA card inserted into slot 1
rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
rtc0: alarms up to one month, y3k
PPP generic driver version 2.4.2
parport_pc 00:08: reported by Plug and Play ACPI
parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE,EPP]
input: PC Speaker as /devices/platform/pcspkr/input/input7
input: Video Bus as /devices/virtual/input/input8
ACPI: Video Device [VGA] (multi-head: yes rom: no post: no)
lp0: using parport0 (interrupt-driven).
ppdev: user-space parallel port driver
NET: Registered protocol family 23
cs: IO port probe 0x100-0x3af: excluding 0x200-0x207 0x220-0x22f 0x330-0x337 0x388-0x38f
cs: IO port probe 0x3e0-0x4ff: excluding 0x408-0x40f 0x480-0x48f
cs: IO port probe 0x820-0x8ff: clean.
cs: IO port probe 0xc00-0xcf7: clean.
cs: IO port probe 0xa00-0xaff: clean.
cs: IO port probe 0x100-0x3af: excluding 0x200-0x207 0x220-0x22f 0x330-0x337 0x388-0x38f
cs: IO port probe 0x3e0-0x4ff: excluding 0x408-0x40f 0x480-0x48f
cs: IO port probe 0x820-0x8ff: clean.
cs: IO port probe 0xc00-0xcf7: clean.
cs: IO port probe 0xa00-0xaff: clean.
cs: memory probe 0xa0000000-0xa0ffffff: clean.
pcmcia: registering new device pcmcia1.0
Marking TSC unstable due to: possible TSC halt in C2.
Time: acpi_pm clocksource has been installed.
EXT3 FS on sda2, internal journal
Adding 763048k swap on /dev/sda5. Priority:-1 extents:1 across:763048k
eth0: link down
Clocksource tsc unstable (delta = -265881380 ns)
non saprei proprio che dirti :(
Ecatonchiro
12-01-2008, 09:28
no problem, ora provo a curare la bronchite,
poi magari posto sul forum di arch
Grazie
Ecatonchiro
17-01-2008, 21:36
risolto sul forum di Arch.
Scrivo in caso fosse utile a qualcuno qui
La soluzione, che appunto era già stata segnalata nei link precedenti,
prevede di generare una nuova immagine del kernel in cui si faccia
uso dei vecchi driver ide invece che i nuovi pata.
(Nel mentre mi son letto tutta la letteratura sull'argomento).
Quello che non mi era noto, e che mi ha brasato una installazione,
era il corretto settaggio dei Modules in mkinitcpio.conf per il mio
chipset Ali.
Ecco come fare
1- edita mkinitcpio.conf
MODULES="alim15x3 ata_generic"
HOOKS="base udev autodetect ide keymap filesystems"
2- Cambia in fstab e menu.lst tutti i "sd*" in "hd*",
3- crea una nuova immagine del kernel26
mkinitcpio -p kernel26
vBulletin® v3.6.4, Copyright ©2000-2025, Jelsoft Enterprises Ltd.