Package: linux-2.6
Version: 2.6.34-1~experimental.2
Severity: normal
Tags: experimental

Long ping problem (and sometimes packet loss) in Intel 82573L NIC
because of kernel 2.6.34 e1000e enable/disable ASPM L0s and L1 and ERT
according to hardware errata
 
"82573/82574/82583 can enable L1 but L0s must be disabled,
and for jumbo frames 82573/82574 must disable L1.  This allows for some
parts to enable L1 in certain configurations leading to better power
savings."
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=6f461f6c7c961f0b1b73c0f27becf472a0ac606b

linux-image-2.6.34-1-686:
  Installed: 2.6.34-1~experimental.2

(ping google.com) (kernel 2.6.34 e1000e Intel 82573L Disabling ASPM L0s)
PING google.com (74.125.39.147) 56(84) bytes of data.
64 bytes from fx-in-f147.1e100.net (74.125.39.147): icmp_req=7 ttl=53 time=500 
ms
64 bytes from fx-in-f147.1e100.net (74.125.39.147): icmp_req=8 ttl=53 time=497 
ms
64 bytes from fx-in-f147.1e100.net (74.125.39.147): icmp_req=9 ttl=53 time=500 
ms
64 bytes from fx-in-f147.1e100.net (74.125.39.147): icmp_req=10 ttl=53 time=498 
ms

(from dmesg | grep -E "e1000e|aspm|ASPM")
ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
pci 0000:02:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it 
with 'pcie_aspm=force'
pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it 
with 'pcie_aspm=force'
e1000e: Intel(R) PRO/1000 Network Driver - 1.0.2-k2
e1000e: Copyright (c) 1999 - 2009 Intel Corporation.
e1000e 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
e1000e 0000:02:00.0: setting latency timer to 64
e1000e 0000:02:00.0: irq 28 for MSI/MSI-X
e1000e 0000:02:00.0: Disabling ASPM L0s
                     ^^^^^^^^^^^^^^^^^^
e1000e 0000:02:00.0: irq 28 for MSI/MSI-X
e1000e 0000:02:00.0: irq 28 for MSI/MSI-X
e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: RX/TX

In kernel 2.6.32 e1000e work well

linux-image-2.6.32-5-686:
  Installed: 2.6.32-15

(ping google.com) (kernel 2.6.32 e1000e Intel 82573L Disabling L1 ASPM)
PING google.com (74.125.77.147) 56(84) bytes of data.
64 bytes from ew-in-f147.1e100.net (74.125.77.147): icmp_req=1 ttl=51 time=46.7 
ms
64 bytes from ew-in-f147.1e100.net (74.125.77.147): icmp_req=2 ttl=51 time=45.3 
ms
64 bytes from ew-in-f147.1e100.net (74.125.77.147): icmp_req=3 ttl=51 time=45.3 
ms
64 bytes from ew-in-f147.1e100.net (74.125.77.147): icmp_req=4 ttl=51 time=46.3 
ms

(from dmesg | grep -E "e1000e|aspm|ASPM")
ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
pci 0000:02:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it 
with 'pcie_aspm=force'
pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it 
with 'pcie_aspm=force'
e1000e: Intel(R) PRO/1000 Network Driver - 1.0.2-k2
e1000e: Copyright (c) 1999-2008 Intel Corporation.
e1000e 0000:02:00.0: Disabling L1 ASPM
                     ^^^^^^^^^^^^^^^^^
e1000e 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
e1000e 0000:02:00.0: setting latency timer to 64
e1000e 0000:02:00.0: irq 28 for MSI/MSI-X
e1000e 0000:02:00.0: Warning: detected ASPM enabled in EEPROM
e1000e 0000:02:00.0: irq 28 for MSI/MSI-X
e1000e 0000:02:00.0: irq 28 for MSI/MSI-X
e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: RX/TX

Other Helpful Information:

e1000e: Disable L1 ASPM power savings for 82573 mobile variants
- long ping times (up to 2 seconds)
http://www.mail-archive.com/net...@vger.kernel.org/msg52394.html

Intel 82573 Family Gigabit Ethernet Controllers Specification Update, 2.9
http://www.intel.com/products/ethernet/resource.htm#s1=Gigabit%20Ethernet&s2=82573E/L/V&s3=Specification%20update

What works for me:

/usr/src/linux-source-2.6.34/drivers/net/e1000e/82571.c
diff 82571.c 82571.c-j.0.0 
392,393c392,393
<               /* Disable ASPM L1 due to long ping problem */
<               e1000e_disable_aspm(adapter->pdev, PCIE_LINK_STATE_L1);
---
>               /* Disable ASPM L0s due to hardware errata */
>               e1000e_disable_aspm(adapter->pdev, PCIE_LINK_STATE_L0S);

This is not enough for debian kernel (in my gentoo kernel that's all)

linux-image-2.6.34-1-686:
  Installed: 2.6.34-1~experimental.2
(self compiled e1000e with Disable ASPM L1)

(dmesg - interesting part)
ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
pci 0000:02:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it 
with 'pcie_aspm=force'
pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it 
with 'pcie_aspm=force'
e1000e 0000:02:00.0: Disabling ASPM L1

(ping google.com)
64 bytes from fx-in-f99.1e100.net (74.125.39.99): icmp_req=7 ttl=53 time=313 ms
64 bytes from fx-in-f99.1e100.net (74.125.39.99): icmp_req=8 ttl=53 time=499 ms
64 bytes from fx-in-f99.1e100.net (74.125.39.99): icmp_req=9 ttl=53 time=313 ms
64 bytes from fx-in-f99.1e100.net (74.125.39.99): icmp_req=10 ttl=53 time=499 ms

Boot kernel with pcie_aspm=force

(dmesg - interesting part - pcie_aspm=force - strange but works)
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.34-1-686 
root=UUID=1c5e6ba2-e68a-4b20-a26c-e073be34d429 ro pcie_aspm=force
PCIe ASPM is forcedly enabled
ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
e1000e 0000:02:00.0: Disabling ASPM L1

(ping google.com)
PING google.com (74.125.77.99) 56(84) bytes of data.
64 bytes from ew-in-f99.1e100.net (74.125.77.99): icmp_req=1 ttl=51 time=45.7 ms
64 bytes from ew-in-f99.1e100.net (74.125.77.99): icmp_req=2 ttl=51 time=45.3 ms
64 bytes from ew-in-f99.1e100.net (74.125.77.99): icmp_req=3 ttl=51 time=45.2 ms
64 bytes from ew-in-f99.1e100.net (74.125.77.99): icmp_req=4 ttl=51 time=45.2 ms

Information below with pcie_aspm=force and self compiled e1000e with
disable ASPM L1
-- Package-specific info:
** Version:
Linux version 2.6.34-1-686 (Debian 2.6.34-1~experimental.2) 
(b...@decadent.org.uk) (gcc version 4.4.4 (Debian 4.4.4-4) ) #1 SMP Sun Jun 6 
22:56:48 UTC 2010

** Command line:
BOOT_IMAGE=/boot/vmlinuz-2.6.34-1-686 
root=UUID=1c5e6ba2-e68a-4b20-a26c-e073be34d429 ro pcie_aspm=force

** Not tainted

** Kernel log:
[    7.909360] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x100-0x3af: 
excluding 0x170-0x177 0x1f0-0x1f7 0x200-0x207 0x2f8-0x2ff 0x370-0x377
[    7.912127] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x3e0-0x4ff: 
excluding 0x3f0-0x3ff 0x4d0-0x4d7
[    7.913417] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x820-0x8ff: 
clean.
[    7.914397] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xc00-0xcf7: 
clean.
[    7.915452] pcmcia_socket pcmcia_socket0: cs: memory probe 
0x0c0000-0x0fffff: excluding 0xc0000-0xd3fff 0xdc000-0xfffff
[    7.915871] pcmcia_socket pcmcia_socket0: cs: memory probe 
0xa0000000-0xa0ffffff: excluding 0xa0000000-0xa0ffffff
[    7.929080] pcmcia_socket pcmcia_socket0: cs: memory probe 
0x60000000-0x60ffffff: excluding 0x60000000-0x60ffffff
[    7.929454] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xa00-0xaff: 
clean.
[    7.934674] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection 
driver for Linux, in-tree:s
[    7.934829] iwl3945: Copyright(c) 2003-2010 Intel Corporation
[    7.935140] iwl3945 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    7.935302] iwl3945 0000:03:00.0: setting latency timer to 64
[    7.994474] iwl3945 0000:03:00.0: Tunable channels: 11 802.11bg, 13 802.11a 
channels
[    7.994612] iwl3945 0000:03:00.0: Detected Intel Wireless WiFi Link 3945ABG
[    7.994869] iwl3945 0000:03:00.0: irq 30 for MSI/MSI-X
[    8.078669] phy0: Selected rate control algorithm 'iwl-3945-rs'
[    8.193076] thinkpad_acpi: ThinkPad ACPI Extras v0.24
[    8.193078] thinkpad_acpi: http://ibm-acpi.sf.net/
[    8.193080] thinkpad_acpi: ThinkPad BIOS 7JET30WW (1.15 ), EC 7JHT13WW-1.04
[    8.193083] thinkpad_acpi: Lenovo ThinkPad X60 Tablet, model 63632AU
[    8.193869] thinkpad_acpi: ACPI backlight control delay disabled
[    8.194638] thinkpad_acpi: radio switch found; radios are enabled
[    8.194874] thinkpad_acpi: possible tablet mode switch found; ThinkPad in 
laptop mode
[    8.194989] thinkpad_acpi: This ThinkPad has standard ACPI backlight 
brightness control, supported by the ACPI video driver
[    8.194992] thinkpad_acpi: Disabling thinkpad-acpi brightness events by 
default...
[    8.200374] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is 
blocked
[    8.201548] Registered led device: tpacpi::thinklight
[    8.201584] Registered led device: tpacpi::power
[    8.201603] Registered led device: tpacpi::standby
[    8.201619] Registered led device: tpacpi::thinkvantage
[    8.204200] thinkpad_acpi: Standard ACPI backlight interface available, not 
loading native one.
[    8.204500] thinkpad_acpi: Console audio control enabled, mode: monitor 
(read only)
[    8.209123] input: ThinkPad Extra Buttons as 
/devices/platform/thinkpad_acpi/input/input7
[    8.291815] Console: switching to colour frame buffer device 175x65
[    8.300178] fb0: inteldrmfb frame buffer device
[    8.300218] registered panic notifier
[    8.300268] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    8.518050] HDA Intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 
17
[    8.518122] hda_intel: probe_mask set to 0x1 for device 17aa:2010
[    8.518230] HDA Intel 0000:00:1b.0: irq 31 for MSI/MSI-X
[    8.518265] HDA Intel 0000:00:1b.0: setting latency timer to 64
[    8.722801] input: HDA Digital PCBeep as 
/devices/pci0000:00/0000:00:1b.0/input/input8
[    8.849072] usb 5-2: new full speed USB device using uhci_hcd and address 3
[    9.016283] usb 5-2: New USB device found, idVendor=0a5c, idProduct=2110
[    9.016348] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    9.016410] usb 5-2: Product: BCM2045B
[    9.016444] usb 5-2: Manufacturer: Broadcom Corp
[    9.080978] Bluetooth: Core ver 2.15
[    9.081125] NET: Registered protocol family 31
[    9.081167] Bluetooth: HCI device and connection manager initialized
[    9.081223] Bluetooth: HCI socket layer initialized
[    9.121571] Bluetooth: Generic Bluetooth USB driver ver 0.6
[    9.121965] usbcore: registered new interface driver btusb
[   11.401308] Adding 1839436k swap on /dev/sda3.  Priority:-1 extents:1 
across:1839436k 
[   11.644780] EXT3-fs (sda2): using internal journal
[   11.894197] loop: module loaded
[   11.933182] thinkpad_ec: thinkpad_ec 0.40 loaded.
[   11.937281] tp_smapi 0.40 loading...
[   11.939450] tp_smapi successfully loaded (smapi_port=0xb2).
[   14.241372] e1000e 0000:02:00.0: irq 28 for MSI/MSI-X
[   14.297167] e1000e 0000:02:00.0: irq 28 for MSI/MSI-X
[   14.297740] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   14.674626] input: ACPI Virtual Keyboard Device as 
/devices/virtual/input/input9
[   14.788333] hdaps: LENOVO ThinkPad X60 Tablet detected, setting orientation 3
[   14.791180] hdaps: initial mode latch is 0x05
[   14.791380] hdaps: setting ec_rate=250, filter_order=2
[   14.791607] hdaps: device successfully initialized.
[   14.794402] input: ThinkPad HDAPS joystick emulation as 
/devices/virtual/input/input10
[   14.797262] input: ThinkPad HDAPS accelerometer data as 
/devices/virtual/input/input11
[   14.800004] hdaps: driver successfully loaded.
[   15.225847] RPC: Registered udp transport module.
[   15.228521] RPC: Registered tcp transport module.
[   15.231136] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   15.810066] Installing knfsd (copyright (C) 1996 o...@monad.swb.de).
[   15.846611] e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: 
RX/TX
[   15.849246] 0000:02:00.0: eth0: 10/100 speed: disabling TSO
[   15.852375] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   15.900577] svc: failed to register lockdv1 RPC service (errno 97).
[   15.904583] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery 
directory
[   15.936549] NFSD: starting 90-second grace period
[   16.512624] apm: BIOS not found.
[   18.518329] Bluetooth: L2CAP ver 2.14
[   18.520926] Bluetooth: L2CAP socket layer initialized
[   18.840220] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   18.842749] Bluetooth: BNEP filters: protocol multicast
[   18.883867] Bluetooth: RFCOMM TTY layer initialized
[   18.886496] Bluetooth: RFCOMM socket layer initialized
[   18.888978] Bluetooth: RFCOMM ver 1.11
[   18.932711] Bridge firewalling registered
[   19.472145] lp0: using parport0 (interrupt-driven).
[   19.641681] Bluetooth: SCO (Voice Link) ver 0.6
[   19.644229] Bluetooth: SCO socket layer initialized
[   19.659228] ppdev: user-space parallel port driver
[   24.601057] smapi smapi: set_real_thresh: set start to 29 for bat=0
[   24.828078] smapi smapi: set_real_thresh: set stop to 70 for bat=0
[   24.953078] usb 5-2: USB disconnect, address 3
[   24.957372] btusb_intr_complete: hci0 urb f7364f00 failed to resubmit (19)
[   24.961353] btusb_bulk_complete: hci0 urb f7364000 failed to resubmit (19)
[   24.966054] btusb_bulk_complete: hci0 urb f7364a80 failed to resubmit (19)
[   26.372028] eth0: no IPv6 routers present

** Model information
not available

** Loaded modules:
Module                  Size  Used by
acpi_cpufreq            5053  1 
cpufreq_conservative     6246  0 
cpufreq_stats           1934  0 
cpufreq_powersave        606  0 
cpufreq_userspace       1492  0 
ppdev                   4475  0 
sco                     5847  2 
lp                      5798  0 
bridge                 44118  0 
stp                     1012  1 bridge
rfcomm                 24377  0 
bnep                    7446  2 
l2cap                  21911  6 rfcomm,bnep
crc16                   1027  1 l2cap
nfsd                  191518  11 
lockd                  49673  1 nfsd
nfs_acl                 1671  1 nfsd
auth_rpcgss            24833  1 nfsd
sunrpc                133525  12 nfsd,lockd,nfs_acl,auth_rpcgss
exportfs                2658  1 nfsd
joydev                  6840  0 
hdaps                   6385  1 
uinput                  4854  1 
tp_smapi               13488  0 
thinkpad_ec             3470  2 hdaps,tp_smapi
loop                   10008  0 
firewire_sbp2           9405  0 
btusb                   7831  0 
bluetooth              35110  7 sco,rfcomm,bnep,l2cap,btusb
snd_hda_codec_analog    45964  1 
snd_hda_intel          16349  0 
snd_hda_codec          54024  2 snd_hda_codec_analog,snd_hda_intel
snd_hwdep               4042  1 snd_hda_codec
snd_pcm_oss            27474  0 
snd_mixer_oss          10335  1 snd_pcm_oss
thinkpad_acpi          45622  0 
arc4                     994  2 
snd_pcm                46860  3 snd_hda_intel,snd_hda_codec,snd_pcm_oss
ecb                     1405  2 
snd_seq_midi            3602  0 
iwl3945                44590  0 
snd_rawmidi            12621  1 snd_seq_midi
snd_seq_midi_event      3742  1 snd_seq_midi
iwlcore                72774  1 iwl3945
i915                  216933  2 
pcmcia                 26619  0 
drm_kms_helper         18331  1 i915
snd_seq                34704  2 snd_seq_midi,snd_seq_midi_event
drm                   112550  3 i915,drm_kms_helper
mac80211              132512  2 iwl3945,iwlcore
i2c_algo_bit            3537  1 i915
i2c_i801                6474  0 
parport_pc             15685  1 
i2c_core               12616  5 i915,drm_kms_helper,drm,i2c_algo_bit,i2c_i801
cfg80211               97453  3 iwl3945,iwlcore,mac80211
rfkill                 10558  4 bluetooth,thinkpad_acpi,cfg80211
nsc_ircc                9979  0 
psmouse                38431  0 
parport                21194  3 ppdev,lp,parport_pc
pcspkr                  1211  0 
serio_raw               2894  0 
rng_core                2354  0 
snd_timer              12489  2 snd_pcm,snd_seq
snd_seq_device          3651  3 snd_seq_midi,snd_rawmidi,snd_seq
yenta_socket           16044  0 
evdev                   5627  22 
rsrc_nonstatic          6786  1 yenta_socket
tpm_tis                 5469  0 
tpm                     8071  1 tpm_tis
tpm_bios                3569  1 tpm
snd                    34020  12 
snd_hda_codec_analog,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm_oss,snd_mixer_oss,thinkpad_acpi,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
snd_page_alloc          5037  2 snd_hda_intel,snd_pcm
irda                   72020  1 nsc_ircc
crc_ccitt               1039  1 irda
soundcore               3630  1 snd
pcmcia_core             8992  3 pcmcia,yenta_socket,rsrc_nonstatic
video                  14925  1 i915
battery                 4078  0 
processor              25019  3 acpi_cpufreq
output                  1200  1 video
nvram                   3941  1 thinkpad_acpi
button                  3618  1 i915
ac                      1636  0 
ext3                   92093  1 
jbd                    31631  1 ext3
mbcache                 3840  1 ext3
sd_mod                 26321  3 
crc_t10dif              1012  1 sd_mod
ata_generic             1943  0 
sdhci_pci               5055  0 
firewire_ohci          15969  0 
ata_piix               17320  0 
ahci                   28682  2 
uhci_hcd               15878  0 
sdhci                  11596  1 sdhci_pci
firewire_core          32514  2 firewire_sbp2,firewire_ohci
libata                114832  3 ata_generic,ata_piix,ahci
thermal                 9502  0 
mmc_core               39527  1 sdhci
led_class               1575  2 thinkpad_acpi,sdhci
e1000e                 97510  0 
crc_itu_t               1031  1 firewire_core
ehci_hcd               27417  0 
scsi_mod              103087  3 firewire_sbp2,sd_mod,libata
thermal_sys             9436  3 video,processor,thermal
usbcore                99297  4 btusb,uhci_hcd,ehci_hcd
nls_base                4521  1 usbcore

** Network interface configuration:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug eth0
iface eth0 inet dhcp

** Network status:
*** IP interfaces and addresses:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP 
qlen 1000
    link/ether 00:0a:e4:c9:a8:63 brd ff:ff:ff:ff:ff:ff
    inet 192.168.1.108/24 brd 192.168.1.255 scope global eth0
    inet6 fe80::20a:e4ff:fec9:a863/64 scope link 
       valid_lft forever preferred_lft forever
3: irda0: <NOARP> mtu 2048 qdisc noop state DOWN qlen 8
    link/irda 00:00:00:00 brd ff:ff:ff:ff
4: wlan0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN qlen 1000
    link/ether 00:1c:bf:68:2d:30 brd ff:ff:ff:ff:ff:ff
5: pan0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN 
    link/ether ea:40:e4:09:df:88 brd ff:ff:ff:ff:ff:ff

*** Device statistics:
Inter-|   Receive                                                |  Transmit
 face |bytes    packets errs drop fifo frame compressed multicast|bytes    
packets errs drop fifo colls carrier compressed
    lo:    8264      91    0    0    0     0          0         0     8264      
91    0    0    0     0       0          0
  eth0: 21919276   24433    0    0    0     0          0         0 28410833   
26830    0    0    0     0       0          0
 irda0:       0       0    0    0    0     0          0         0        0      
 0    0    0    0     0       0          0
 wlan0:       0       0    0    0    0     0          0         0        0      
 0    0    0    0     0       0          0
  pan0:       0       0    0    0    0     0          0         0        0      
 0    0    0    0     0       0          0

*** Protocol statistics:
Ip:
    24507 total packets received
    2 with invalid addresses
    0 forwarded
    0 incoming packets discarded
    24505 incoming packets delivered
    11677 requests sent out
Icmp:
    10 ICMP messages received
    0 input ICMP message failed.
    ICMP input histogram:
        echo replies: 10
    10 ICMP messages sent
    0 ICMP messages failed
    ICMP output histogram:
        echo request: 10
IcmpMsg:
        InType0: 10
        OutType8: 10
Tcp:
    154 active connections openings
    1 passive connection openings
    1 failed connection attempts
    25 connection resets received
    0 connections established
    24281 segments received
    11456 segments send out
    3 segments retransmited
    0 bad segments received.
    100 resets sent
Udp:
    207 packets received
    0 packets to unknown port received.
    0 packet receive errors
    208 packets sent
UdpLite:
TcpExt:
    16 TCP sockets finished time wait in fast timer
    1 packets rejects in established connections because of timestamp
    46 delayed acks sent
    Quick ack mode was activated 2 times
    12966 packet headers predicted
    2434 acknowledgments not containing data payload received
    7272 predicted acknowledgments
    2 times recovered from packet loss by selective acknowledgements
    1 congestion windows recovered without slow start after partial ack
    2 fast retransmits
    1 other TCP timeouts
    2 DSACKs sent for old packets
    25 connections reset due to early user close
    TCPSackShifted: 70
    TCPSackMerged: 11
    TCPSackShiftFallback: 5
IpExt:
    InMcastPkts: 13
    OutMcastPkts: 15
    InBcastPkts: 8
    InOctets: 21586660
    OutOctets: 27248829
    InMcastOctets: 2610
    OutMcastOctets: 2690
    InBcastOctets: 1852

*** Device features:
eth0: 0xba9
irda0: 0x0
lo: 0x13865
pan0: 0xff3865
wlan0: 0x2000

** PCI devices:
00:00.0 Host bridge [0600]: Intel Corporation Mobile 945GM/PM/GMS, 943/940GML 
and 945GT Express Memory Controller Hub [8086:27a0] (rev 03)
        Subsystem: Lenovo ThinkPad T60/R60 series [17aa:2017]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort+ >SERR- <PERR- INTx-
        Latency: 0
        Capabilities: <access denied>
        Kernel driver in use: agpgart-intel

00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile 945GM/GMS, 
943/940GML Express Integrated Graphics Controller [8086:27a2] (rev 03) (prog-if 
00 [VGA controller])
        Subsystem: Lenovo ThinkPad T60/R60 series [17aa:201a]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 16
        Region 0: Memory at ee100000 (32-bit, non-prefetchable) [size=512K]
        Region 1: I/O ports at 1800 [size=8]
        Region 2: Memory at d0000000 (32-bit, prefetchable) [size=256M]
        Region 3: Memory at ee200000 (32-bit, non-prefetchable) [size=256K]
        Expansion ROM at <unassigned> [disabled]
        Capabilities: <access denied>
        Kernel driver in use: i915

00:02.1 Display controller [0380]: Intel Corporation Mobile 945GM/GMS/GME, 
943/940GML Express Integrated Graphics Controller [8086:27a6] (rev 03)
        Subsystem: Lenovo ThinkPad T60/R60 series [17aa:201a]
        Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Region 0: Memory at ee180000 (32-bit, non-prefetchable) [size=512K]
        Capabilities: <access denied>

00:1b.0 Audio device [0403]: Intel Corporation N10/ICH 7 Family High Definition 
Audio Controller [8086:27d8] (rev 02)
        Subsystem: Lenovo ThinkPad T60/R60 series [17aa:2010]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin B routed to IRQ 31
        Region 0: Memory at ee240000 (64-bit, non-prefetchable) [size=16K]
        Capabilities: <access denied>
        Kernel driver in use: HDA Intel

00:1c.0 PCI bridge [0604]: Intel Corporation N10/ICH 7 Family PCI Express Port 
1 [8086:27d0] (rev 02) (prog-if 00 [Normal decode])
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
        I/O behind bridge: 00002000-00002fff
        Memory behind bridge: ee000000-ee0fffff
        Prefetchable memory behind bridge: 00000000c0000000-00000000c01fffff
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- <SERR- <PERR-
        BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport

00:1c.1 PCI bridge [0604]: Intel Corporation N10/ICH 7 Family PCI Express Port 
2 [8086:27d2] (rev 02) (prog-if 00 [Normal decode])
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
        I/O behind bridge: 00003000-00004fff
        Memory behind bridge: ec000000-edffffff
        Prefetchable memory behind bridge: 00000000e4000000-00000000e40fffff
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- <SERR- <PERR-
        BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport

00:1c.2 PCI bridge [0604]: Intel Corporation N10/ICH 7 Family PCI Express Port 
3 [8086:27d4] (rev 02) (prog-if 00 [Normal decode])
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Bus: primary=00, secondary=04, subordinate=0b, sec-latency=0
        I/O behind bridge: 00005000-00006fff
        Memory behind bridge: e8000000-e9ffffff
        Prefetchable memory behind bridge: 00000000e4100000-00000000e41fffff
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- <SERR- <PERR-
        BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport

00:1c.3 PCI bridge [0604]: Intel Corporation N10/ICH 7 Family PCI Express Port 
4 [8086:27d6] (rev 02) (prog-if 00 [Normal decode])
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Bus: primary=00, secondary=0c, subordinate=13, sec-latency=0
        I/O behind bridge: 00007000-00008fff
        Memory behind bridge: ea000000-ebffffff
        Prefetchable memory behind bridge: 00000000e4200000-00000000e42fffff
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- <SERR- <PERR-
        BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport

00:1d.0 USB Controller [0c03]: Intel Corporation N10/ICH7 Family USB UHCI 
Controller #1 [8086:27c8] (rev 02) (prog-if 00 [UHCI])
        Subsystem: Lenovo ThinkPad T60/R60 series [17aa:200a]
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 16
        Region 4: I/O ports at 1820 [size=32]
        Kernel driver in use: uhci_hcd

00:1d.1 USB Controller [0c03]: Intel Corporation N10/ICH 7 Family USB UHCI 
Controller #2 [8086:27c9] (rev 02) (prog-if 00 [UHCI])
        Subsystem: Lenovo ThinkPad T60/R60 series [17aa:200a]
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin B routed to IRQ 17
        Region 4: I/O ports at 1840 [size=32]
        Kernel driver in use: uhci_hcd

00:1d.2 USB Controller [0c03]: Intel Corporation N10/ICH 7 Family USB UHCI 
Controller #3 [8086:27ca] (rev 02) (prog-if 00 [UHCI])
        Subsystem: Lenovo ThinkPad T60/R60 series [17aa:200a]
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin C routed to IRQ 18
        Region 4: I/O ports at 1860 [size=32]
        Kernel driver in use: uhci_hcd

00:1d.3 USB Controller [0c03]: Intel Corporation N10/ICH 7 Family USB UHCI 
Controller #4 [8086:27cb] (rev 02) (prog-if 00 [UHCI])
        Subsystem: Lenovo ThinkPad T60/R60 series [17aa:200a]
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin D routed to IRQ 19
        Region 4: I/O ports at 1880 [size=32]
        Kernel driver in use: uhci_hcd

00:1d.7 USB Controller [0c03]: Intel Corporation N10/ICH 7 Family USB2 EHCI 
Controller [8086:27cc] (rev 02) (prog-if 20 [EHCI])
        Subsystem: Lenovo ThinkPad T60/R60 series [17aa:200b]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin D routed to IRQ 19
        Region 0: Memory at ee444000 (32-bit, non-prefetchable) [size=1K]
        Capabilities: <access denied>
        Kernel driver in use: ehci_hcd

00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI Bridge 
[8086:2448] (rev e2) (prog-if 01 [Subtractive decode])
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Bus: primary=00, secondary=15, subordinate=18, sec-latency=32
        I/O behind bridge: 00009000-0000cfff
        Memory behind bridge: e4300000-e7ffffff
        Prefetchable memory behind bridge: 00000000e0000000-00000000e3ffffff
        Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort+ <SERR- <PERR-
        BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>

00:1f.0 ISA bridge [0601]: Intel Corporation 82801GBM (ICH7-M) LPC Interface 
Bridge [8086:27b9] (rev 02)
        Subsystem: Lenovo ThinkPad T60/R60 series [17aa:2009]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Capabilities: <access denied>

00:1f.1 IDE interface [0101]: Intel Corporation 82801G (ICH7 Family) IDE 
Controller [8086:27df] (rev 02) (prog-if 8a [Master SecP PriP])
        Subsystem: Lenovo ThinkPad T60/R60 series [17aa:200c]
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin C routed to IRQ 16
        Region 0: I/O ports at 01f0 [size=8]
        Region 1: I/O ports at 03f4 [size=1]
        Region 2: I/O ports at 0170 [size=8]
        Region 3: I/O ports at 0374 [size=1]
        Region 4: I/O ports at 1810 [size=16]
        Kernel driver in use: ata_piix

00:1f.2 SATA controller [0106]: Intel Corporation 82801GBM/GHM (ICH7 Family) 
SATA AHCI Controller [8086:27c5] (rev 02) (prog-if 01 [AHCI 1.0])
        Subsystem: Lenovo ThinkPad T60/R60 series [17aa:200d]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin B routed to IRQ 29
        Region 0: I/O ports at 18d0 [size=8]
        Region 1: I/O ports at 18c4 [size=4]
        Region 2: I/O ports at 18c8 [size=8]
        Region 3: I/O ports at 18c0 [size=4]
        Region 4: I/O ports at 18b0 [size=16]
        Region 5: Memory at ee444400 (32-bit, non-prefetchable) [size=1K]
        Capabilities: <access denied>
        Kernel driver in use: ahci

00:1f.3 SMBus [0c05]: Intel Corporation N10/ICH 7 Family SMBus Controller 
[8086:27da] (rev 02)
        Subsystem: Lenovo ThinkPad T60/R60 series [17aa:200f]
        Control: I/O+ Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR- INTx-
        Interrupt: pin A routed to IRQ 23
        Region 4: I/O ports at 18e0 [size=32]
        Kernel driver in use: i801_smbus

02:00.0 Ethernet controller [0200]: Intel Corporation 82573L Gigabit Ethernet 
Controller [8086:109a]
        Subsystem: Lenovo ThinkPad X60s [17aa:207e]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 28
        Region 0: Memory at ee000000 (32-bit, non-prefetchable) [size=128K]
        Region 2: I/O ports at 2000 [size=32]
        Capabilities: <access denied>
        Kernel driver in use: e1000e

03:00.0 Network controller [0280]: Intel Corporation PRO/Wireless 3945ABG 
[Golan] Network Connection [8086:4227] (rev 02)
        Subsystem: Intel Corporation Device [8086:1010]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- 
<MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 30
        Region 0: Memory at edf00000 (32-bit, non-prefetchable) [size=4K]
        Capabilities: <access denied>
        Kernel driver in use: iwl3945

15:00.0 CardBus bridge [0607]: Ricoh Co Ltd RL5c476 II [1180:0476] (rev b4)
        Subsystem: Lenovo ThinkPad X60s [17aa:201c]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 168, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 16
        Region 0: Memory at e4300000 (32-bit, non-prefetchable) [size=4K]
        Bus: primary=15, secondary=16, subordinate=17, sec-latency=176
        Memory window 0: e0000000-e3fff000 (prefetchable)
        Memory window 1: c4000000-c7fff000
        I/O window 0: 00009000-000090ff
        I/O window 1: 00009400-000094ff
        BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset- 16bInt+ PostWrite+
        16-bit legacy interface ports at 0001
        Kernel driver in use: yenta_cardbus

15:00.1 FireWire (IEEE 1394) [0c00]: Ricoh Co Ltd R5C552 IEEE 1394 Controller 
[1180:0552] (rev 09) (prog-if 10 [OHCI])
        Subsystem: Lenovo ThinkPad X60s [17aa:201e]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 32 (500ns min, 1000ns max)
        Interrupt: pin B routed to IRQ 17
        Region 0: Memory at e4301000 (32-bit, non-prefetchable) [size=2K]
        Capabilities: <access denied>
        Kernel driver in use: firewire_ohci

15:00.2 SD Host controller [0805]: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro 
Host Adapter [1180:0822] (rev 18)
        Subsystem: Lenovo ThinkPad X60s [17aa:201d]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- 
<TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 64
        Interrupt: pin C routed to IRQ 18
        Region 0: Memory at e4301800 (32-bit, non-prefetchable) [size=256]
        Capabilities: <access denied>
        Kernel driver in use: sdhci-pci


** USB devices:
Bus 005 Device 002: ID 0483:2016 SGS Thomson Microelectronics Fingerprint Reader
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 002: ID 17ef:1000 Lenovo 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.34-1-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=pl_PL.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages linux-image-2.6.34-1-686 depends on:
ii  debconf [debconf 1.5.32                  Debian configuration management sy
ii  initramfs-tools  0.96.1                  tools for generating an initramfs
ii  linux-base       2.6.34-1~experimental.2 Linux image base package
ii  module-init-tool 3.12~pre2-3             tools for managing Linux kernel mo

Versions of packages linux-image-2.6.34-1-686 recommends:
ii  firmware-linux-free           2.6.32-15  Binary firmware for various driver
ii  libc6-i686                    2.11.2-1   GNU C Library: Shared libraries [i

Versions of packages linux-image-2.6.34-1-686 suggests:
ii  grub                          0.97-61    GRand Unified Bootloader (dummy pa
pn  linux-doc-2.6.34              <none>     (no description available)

Versions of packages linux-image-2.6.34-1-686 is related to:
pn  firmware-bnx2                 <none>     (no description available)
pn  firmware-bnx2x                <none>     (no description available)
pn  firmware-ipw2x00              <none>     (no description available)
pn  firmware-ivtv                 <none>     (no description available)
ii  firmware-iwlwifi              0.25       Binary firmware for Intel Wireless
pn  firmware-linux                <none>     (no description available)
pn  firmware-linux-nonfree        <none>     (no description available)
pn  firmware-qlogic               <none>     (no description available)
pn  firmware-ralink               <none>     (no description available)
pn  xen-hypervisor                <none>     (no description available)

-- debconf information:
  shared/kernel-image/really-run-bootloader: true
  linux-image-2.6.34-1-686/postinst/missing-firmware-2.6.34-1-686:
  linux-image-2.6.34-1-686/prerm/removing-running-kernel-2.6.34-1-686: true
  linux-image-2.6.34-1-686/postinst/depmod-error-initrd-2.6.34-1-686: false
  linux-image-2.6.34-1-686/postinst/bootloader-error-2.6.34-1-686:
  linux-image-2.6.34-1-686/prerm/would-invalidate-boot-loader-2.6.34-1-686: true
  linux-image-2.6.34-1-686/postinst/bootloader-test-error-2.6.34-1-686:



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to