[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#881425: linux-image-4.13.0-1-amd64: "rm -rf <directory>" fails with ENOTEMPTY (Directory not empty)



Package: src:linux
Version: 4.13.4-2
Severity: normal

My root FS is an

    /dev/mapper/n555--vg-root / ext4 rw,relatime,errors=remount-ro,data=ordered 0 0

Due to a programming error I filled one directory with many files; the
"rm <directory>/*" I did previously couldn't copy anymore, so I ran "rm
-rf <directory>", but that failed with "directory not empty".


I did an strace; this showed

	ioctl(0, TCGETS, {B38400 opost isig icanon echo ...}) = 0
	lstat("/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
	newfstatat(AT_FDCWD, "../<the specific directory>/", {st_mode=S_IFDIR|0755, st_size=13131776, ...}, AT_SYMLINK_NOFOLLOW) = 0
	openat(AT_FDCWD, "../<the specific directory>/", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_DIRECTORY|O_NOFOLLOW) = 3
	fstat(3, {st_mode=S_IFDIR|0755, st_size=13131776, ...}) = 0
	fcntl(3, F_GETFL) = 0x38800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_NOFOLLOW)
	fcntl(3, F_SETFD, FD_CLOEXEC) = 0
	getdents(3, /* 513 entries */, 32768) = 32752
	close(3)          = 0
	openat(AT_FDCWD, "../<the specific directory>/", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_DIRECTORY|O_NOFOLLOW|O_CLOEXEC) = 3
	fstat(3, {st_mode=S_IFDIR|0755, st_size=13131776, ...}) = 0
	fcntl(3, F_GETFL) = 0x38800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_NOFOLLOW)
	fcntl(3, F_SETFD, FD_CLOEXEC) = 0
	fstatfs(-100, 0x7ffd05b2b490) = -1 EBADF (Bad file descriptor)
	fcntl(3, F_DUPFD_CLOEXEC, 3) = 4
	getdents(3, /* 513 entries */, 32768) = 32752
	brk(0x55f85aa65000) = 0x55f85aa65000
	getdents(3, /* 512 entries */, 32768) = 32768
	brk(0x55f85aa86000) = 0x55f85aa86000
	getdents(3, /* 512 entries */, 32768) = 32768
	brk(0x55f85aaa7000) = 0x55f85aaa7000
	getdents(3, /* 512 entries */, 32768) = 32768
	brk(0x55f85aac8000) = 0x55f85aac8000
	brk(0x55f85aae9000) = 0x55f85aae9000
	getdents(3, /* 512 entries */, 32768) = 32768
	brk(0x55f85ab0a000) = 0x55f85ab0a000
	getdents(3, /* 512 entries */, 32768) = 32768
	brk(0x55f85ab2b000) = 0x55f85ab2b000
	getdents(3, /* 512 entries */, 32768) = 32768
	brk(0x55f85ab4c000) = 0x55f85ab4c000
	getdents(3, /* 512 entries */, 32768) = 32768
	brk(0x55f85ab6d000) = 0x55f85ab6d000
	brk(0x55f85ab8e000) = 0x55f85ab8e000
	getdents(3, /* 512 entries */, 32768) = 32768
	brk(0x55f85abaf000) = 0x55f85abaf000
	getdents(3, /* 19 entries */, 32768) = 1216
	getdents(3, /* 0 entries */, 32768) = 0
	close(3)          = 0

followed by 4627 calls of

	unlinkat(4, "filename...", 0) = 0
	unlinkat(4, "filename...", 0) = 0
	unlinkat(4, "filename...", 0) = 0
	...
	unlinkat(4, "filename...", 0) = 0

(Each of these filenames is 42 bytes long, BTW) and then

	brk(0x55f85aa4e000) = 0x55f85aa4e000
	close(4)          = 0
	unlinkat(AT_FDCWD, "../redrum-replacements/", AT_REMOVEDIR) = -1 ENOTEMPTY (Directory not empty)

A few more invocations of "rm -rf <directory>" didn't help.


Doing "ls" at that time gave me 17016 files left; I could clean up
manually via "rm *a" "rm *b" etc., and then a "rmdir <directory>"
worked normally.


So,
  * either the getdents() calls didn't return all the files,
  * "rm -rf" has a bug where not all files are deleted, or
  * the kernel didn't really delete the referenced files.

I know that there's a newer version of 4.13 available - just wanted to
report that in case it's not been seen yet.


-- Package-specific info:
** Version:
Linux version 4.13.0-1-amd64 (debian-kernel@lists.debian.org) (gcc version 6.4.0 20171010 (Debian 6.4.0-8)) #1 SMP Debian 4.13.4-2 (2017-10-15)

** Command line:
BOOT_IMAGE=/vmlinuz-4.13.0-1-amd64 root=/dev/mapper/n555--vg-root ro initrd=/install/initrd.gz quiet

** Tainted: WO (4608)
 * Taint on warning.
 * Out-of-tree module has been loaded.

** Kernel log:
[112079.787511] ACPI: Low-level resume complete
[112079.787553] ACPI: EC: EC started
[112079.787554] PM: Restoring platform NVS memory
[112079.787834] Suspended for 1295.691 seconds
[112079.789751] Enabling non-boot CPUs ...
[112079.789822] x86: Booting SMP configuration:
[112079.789823] smpboot: Booting Node 0 Processor 1 APIC 0x1
[112079.869862]  cache: parent cpu1 should not be sleeping
[112079.870059] CPU1 is up
[112079.870106] smpboot: Booting Node 0 Processor 2 APIC 0x2
[112079.953862]  cache: parent cpu2 should not be sleeping
[112079.954066] CPU2 is up
[112079.954114] smpboot: Booting Node 0 Processor 3 APIC 0x3
[112080.057861]  cache: parent cpu3 should not be sleeping
[112080.058072] CPU3 is up
[112080.058117] smpboot: Booting Node 0 Processor 4 APIC 0x4
[112080.153864]  cache: parent cpu4 should not be sleeping
[112080.154095] CPU4 is up
[112080.154139] smpboot: Booting Node 0 Processor 5 APIC 0x5
[112080.249860]  cache: parent cpu5 should not be sleeping
[112080.250108] CPU5 is up
[112080.250153] smpboot: Booting Node 0 Processor 6 APIC 0x6
[112080.345861]  cache: parent cpu6 should not be sleeping
[112080.346133] CPU6 is up
[112080.346177] smpboot: Booting Node 0 Processor 7 APIC 0x7
[112080.441864]  cache: parent cpu7 should not be sleeping
[112080.442517] CPU7 is up
[112080.452695] ACPI: Waking up from system sleep state S3
[112081.178004] PM: noirq resume of devices complete after 48.102 msecs
[112081.178882] PM: early resume of devices complete after 0.844 msecs
[112081.179069] usb usb3: root hub lost power or was reset
[112081.179074] usb usb4: root hub lost power or was reset
[112081.179838] sd 0:0:0:0: [sda] Starting disk
[112081.180254] ACPI: EC: event unblocked
[112081.225866] tpm tpm0: A TPM error (6) occurred attempting to read a pcr value
[112081.225867] tpm tpm0: TPM is disabled/deactivated (0x6)
[112081.417859] usb 2-1: reset high-speed USB device number 2 using ehci-pci
[112081.417867] usb 1-1: reset high-speed USB device number 2 using ehci-pci
[112081.504877] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[112081.505069] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[112081.509006] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[112081.509011] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[112081.509223] ata1.00: supports DRM functions and may not be fully accessible
[112081.509305] ata6.00: ACPI cmd e3/00:1f:00:00:00:a0 (IDLE) succeeded
[112081.509503] ata6.00: ACPI cmd e3/00:02:00:00:00:a0 (IDLE) succeeded
[112081.509589] ata1.00: NCQ Send/Recv Log not supported
[112081.512765] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[112081.512769] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[112081.512941] ata1.00: supports DRM functions and may not be fully accessible
[112081.513308] ata1.00: NCQ Send/Recv Log not supported
[112081.514266] ata1.00: configured for UDMA/133
[112081.515281] ata6.00: ACPI cmd e3/00:1f:00:00:00:a0 (IDLE) succeeded
[112081.515478] ata6.00: ACPI cmd e3/00:02:00:00:00:a0 (IDLE) succeeded
[112081.517449] ata6.00: configured for UDMA/133
[112081.525924] usb 3-5: reset full-speed USB device number 2 using xhci_hcd
[112081.785934] usb 3-11: reset full-speed USB device number 3 using xhci_hcd
[112081.928502] psmouse serio1: synaptics: queried max coordinates: x [..5674], y [..4684]
[112081.960341] psmouse serio1: synaptics: queried min coordinates: x [1266..], y [1170..]
[112082.079086] PM: resume of devices complete after 900.198 msecs
[112082.079142] usb 3-11:1.0: rebind failed: -517
[112082.079145] usb 3-11:1.1: rebind failed: -517
[112082.079374] acpi LNXPOWER:02: Turning OFF
[112082.079589] PM: Finishing wakeup.
[112082.079591] OOM killer enabled.
[112082.079592] Restarting tasks ... done.
[112082.931635] e1000e: eth0 NIC Link is Down
[112082.934933] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[112083.002979] psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
[112083.150082] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[112083.151069] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[112083.162931] iwlwifi 0000:04:00.0: Radio type=0x2-0x1-0x0
[112083.201266] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input27
[112083.466356] iwlwifi 0000:04:00.0: Radio type=0x2-0x1-0x0
[112083.546933] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[112083.964095] iwlwifi 0000:04:00.0: Radio type=0x2-0x1-0x0
[112084.261904] iwlwifi 0000:04:00.0: Radio type=0x2-0x1-0x0
[112084.345003] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[112084.379465] iwlwifi 0000:04:00.0: Radio type=0x2-0x1-0x0
[112084.678082] iwlwifi 0000:04:00.0: Radio type=0x2-0x1-0x0
[112084.759593] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[112085.087495] e1000e: eth0 NIC Link is Down
[112085.306076] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[112087.082105] iwlwifi 0000:04:00.0: Radio type=0x2-0x1-0x0
[112087.382408] iwlwifi 0000:04:00.0: Radio type=0x2-0x1-0x0
[112087.468311] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[112090.958297] iwlwifi 0000:04:00.0: Radio type=0x2-0x1-0x0
[112091.258533] iwlwifi 0000:04:00.0: Radio type=0x2-0x1-0x0
[112091.345245] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[112091.616099] e1000e: eth0 NIC Link is Down
[112091.834077] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[112091.968984] iwlwifi 0000:04:00.0: Radio type=0x2-0x1-0x0
[112092.269580] iwlwifi 0000:04:00.0: Radio type=0x2-0x1-0x0
[112092.351976] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[112094.464708] wlan0: authenticate with 54:e6:fc:ce:80:3a
[112094.466195] wlan0: send auth to 54:e6:fc:ce:80:3a (try 1/3)
[112094.468749] wlan0: authenticated
[112094.469887] wlan0: associate with 54:e6:fc:ce:80:3a (try 1/3)
[112094.473187] wlan0: RX AssocResp from 54:e6:fc:ce:80:3a (capab=0x431 status=0 aid=6)
[112094.476526] wlan0: associated
[112094.476593] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready

** Model information
sys_vendor: LENOVO
product_name: 20BFS56D00
product_version: ThinkPad T540p
chassis_vendor: LENOVO
chassis_version: Not Available
bios_vendor: LENOVO
bios_version: GMET74WW (2.22 )
board_vendor: LENOVO
board_name: 20BFS56D00
board_version: SDK0E50510 WIN

** Loaded modules:
iwldvm
iwlwifi
cpuid
dm_snapshot
dm_thin_pool
dm_persistent_data
dm_bio_prison
dm_bufio
hid_generic
usbhid
hid
nls_ascii
nls_cp437
vfat
fat
uas
usb_storage
ctr
ccm
xt_comment
xt_multiport
appletalk
ax25
ipx
p8023
p8022
psnap
pci_stub
vboxpci(O)
vboxnetadp(O)
vboxnetflt(O)
vboxdrv(O)
rfcomm
xt_CHECKSUM
iptable_mangle
ipt_MASQUERADE
nf_nat_masquerade_ipv4
iptable_nat
nf_nat_ipv4
nf_nat
nf_conntrack_ipv4
nf_defrag_ipv4
xt_conntrack
nf_conntrack
libcrc32c
ipt_REJECT
nf_reject_ipv4
xt_tcpudp
tun
bridge
stp
llc
ebtable_filter
ebtables
ip6table_filter
ip6_tables
iptable_filter
devlink
cmac
cpufreq_userspace
cpufreq_conservative
cpufreq_powersave
bnep
intel_rapl
btusb
x86_pkg_temp_thermal
btrtl
intel_powerclamp
btbcm
btintel
arc4
binfmt_misc
bluetooth
kvm_intel
kvm
irqbypass
intel_cstate
intel_uncore
iTCO_wdt
iTCO_vendor_support
drbg
ansi_cprng
snd_hda_codec_realtek
joydev
ecdh_generic
snd_hda_codec_hdmi
intel_rapl_perf
mac80211
snd_hda_codec_generic
serio_raw
wmi_bmof
pcspkr
snd_hda_intel
rtsx_pci_ms
snd_hda_codec
sg
memstick
cfg80211
snd_hda_core
snd_hwdep
snd_pcm
mei_me
snd_timer
ie31200_edac
lpc_ich
mei
shpchp
thinkpad_acpi
nvram
snd
soundcore
rfkill
battery
ac
evdev
fuse
coretemp
sunrpc
parport_pc
ppdev
lp
parport
ip_tables
x_tables
autofs4
ext4
crc16
mbcache
jbd2
fscrypto
ecb
btrfs
crc32c_generic
xor
raid6_pq
algif_skcipher
af_alg
dm_crypt
dm_mod
sr_mod
sd_mod
cdrom
rtsx_pci_sdmmc
mmc_core
crct10dif_pclmul
crc32_pclmul
crc32c_intel
ghash_clmulni_intel
pcbc
ahci
libahci
aesni_intel
aes_x86_64
crypto_simd
i915
glue_helper
cryptd
libata
i2c_algo_bit
xhci_pci
ehci_pci
scsi_mod
psmouse
drm_kms_helper
xhci_hcd
ehci_hcd
rtsx_pci
i2c_i801
mfd_core
e1000e
ptp
usbcore
pps_core
drm
usb_common
thermal
wmi
video
button

** PCI devices:
00:00.0 Host bridge [0600]: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor DRAM Controller [8086:0c04] (rev 06)
	Subsystem: Lenovo Xeon E3-1200 v3/4th Gen Core Processor DRAM Controller [17aa:2210]
	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 modules: ie31200_edac

00:02.0 VGA compatible controller [0300]: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller [8086:0416] (rev 06) (prog-if 00 [VGA controller])
	Subsystem: Lenovo 4th Gen Core Processor Integrated Graphics Controller [17aa:2210]
	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 30
	Region 0: Memory at f0000000 (64-bit, non-prefetchable) [size=4M]
	Region 2: Memory at e0000000 (64-bit, prefetchable) [size=256M]
	Region 4: I/O ports at 4000 [size=64]
	[virtual] Expansion ROM at 000c0000 [disabled] [size=128K]
	Capabilities: <access denied>
	Kernel driver in use: i915
	Kernel modules: i915

00:03.0 Audio device [0403]: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller [8086:0c0c] (rev 06)
	Subsystem: Lenovo Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller [17aa:2210]
	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 f1630000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: <access denied>
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel

00:14.0 USB controller [0c03]: Intel Corporation 8 Series/C220 Series Chipset Family USB xHCI [8086:8c31] (rev 04) (prog-if 30 [XHCI])
	Subsystem: Lenovo 8 Series/C220 Series Chipset Family USB xHCI [17aa:2210]
	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 27
	Region 0: Memory at f1620000 (64-bit, non-prefetchable) [size=64K]
	Capabilities: <access denied>
	Kernel driver in use: xhci_hcd
	Kernel modules: xhci_pci

00:16.0 Communication controller [0780]: Intel Corporation 8 Series/C220 Series Chipset Family MEI Controller #1 [8086:8c3a] (rev 04)
	Subsystem: Lenovo 8 Series/C220 Series Chipset Family MEI Controller [17aa:2210]
	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 31
	Region 0: Memory at f1639000 (64-bit, non-prefetchable) [size=16]
	Capabilities: <access denied>
	Kernel driver in use: mei_me
	Kernel modules: mei_me

00:16.3 Serial controller [0700]: Intel Corporation 8 Series/C220 Series Chipset Family KT Controller [8086:8c3d] (rev 04) (prog-if 02 [16550])
	Subsystem: Lenovo 8 Series/C220 Series Chipset Family KT Controller [17aa:2210]
	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 D routed to IRQ 17
	Region 0: I/O ports at 40b0 [size=8]
	Region 1: Memory at f1640000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: <access denied>
	Kernel driver in use: serial

00:19.0 Ethernet controller [0200]: Intel Corporation Ethernet Connection I217-LM [8086:153a] (rev 04)
	Subsystem: Lenovo Ethernet Connection I217-LM [17aa:2210]
	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 34
	Region 0: Memory at f1600000 (32-bit, non-prefetchable) [size=128K]
	Region 1: Memory at f163f000 (32-bit, non-prefetchable) [size=4K]
	Region 2: I/O ports at 4080 [size=32]
	Capabilities: <access denied>
	Kernel driver in use: e1000e
	Kernel modules: e1000e

00:1a.0 USB controller [0c03]: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #2 [8086:8c2d] (rev 04) (prog-if 20 [EHCI])
	Subsystem: Lenovo 8 Series/C220 Series Chipset Family USB EHCI [17aa:2210]
	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 0: Memory at f163e000 (32-bit, non-prefetchable) [size=1K]
	Capabilities: <access denied>
	Kernel driver in use: ehci-pci
	Kernel modules: ehci_pci

00:1b.0 Audio device [0403]: Intel Corporation 8 Series/C220 Series Chipset High Definition Audio Controller [8086:8c20] (rev 04)
	Subsystem: Lenovo 8 Series/C220 Series Chipset High Definition Audio Controller [17aa:2210]
	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 32
	Region 0: Memory at f1634000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: <access denied>
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel

00:1c.0 PCI bridge [0604]: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #1 [8086:8c10] (rev d4) (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
	Interrupt: pin A routed to IRQ 16
	Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
	Memory behind bridge: f1500000-f15fffff
	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
	Kernel modules: shpchp

00:1c.1 PCI bridge [0604]: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #2 [8086:8c12] (rev d4) (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
	Interrupt: pin B routed to IRQ 17
	Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
	Memory behind bridge: f1400000-f14fffff
	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
	Kernel modules: shpchp

00:1c.2 PCI bridge [0604]: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #3 [8086:8c14] (rev d4) (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
	Interrupt: pin C routed to IRQ 18
	Bus: primary=00, secondary=05, subordinate=0c, sec-latency=0
	I/O behind bridge: 00003000-00003fff
	Memory behind bridge: f0c00000-f13fffff
	Prefetchable memory behind bridge: 00000000f0400000-00000000f0bfffff
	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
	Kernel modules: shpchp

00:1d.0 USB controller [0c03]: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #1 [8086:8c26] (rev 04) (prog-if 20 [EHCI])
	Subsystem: Lenovo 8 Series/C220 Series Chipset Family USB EHCI [17aa:2210]
	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 23
	Region 0: Memory at f163d000 (32-bit, non-prefetchable) [size=1K]
	Capabilities: <access denied>
	Kernel driver in use: ehci-pci
	Kernel modules: ehci_pci

00:1f.0 ISA bridge [0601]: Intel Corporation QM87 Express LPC Controller [8086:8c4f] (rev 04)
	Subsystem: Lenovo QM87 Express LPC Controller [17aa:2210]
	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>
	Kernel driver in use: lpc_ich
	Kernel modules: lpc_ich

00:1f.2 SATA controller [0106]: Intel Corporation 8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode] [8086:8c03] (rev 04) (prog-if 01 [AHCI 1.0])
	Subsystem: Lenovo 8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode] [17aa:2210]
	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 40a8 [size=8]
	Region 1: I/O ports at 40bc [size=4]
	Region 2: I/O ports at 40a0 [size=8]
	Region 3: I/O ports at 40b8 [size=4]
	Region 4: I/O ports at 4060 [size=32]
	Region 5: Memory at f163c000 (32-bit, non-prefetchable) [size=2K]
	Capabilities: <access denied>
	Kernel driver in use: ahci
	Kernel modules: ahci

00:1f.3 SMBus [0c05]: Intel Corporation 8 Series/C220 Series Chipset Family SMBus Controller [8086:8c22] (rev 04)
	Subsystem: Lenovo 8 Series/C220 Series Chipset Family SMBus Controller [17aa:2210]
	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 C routed to IRQ 18
	Region 0: Memory at f1638000 (64-bit, non-prefetchable) [size=256]
	Region 4: I/O ports at efa0 [size=32]
	Kernel driver in use: i801_smbus
	Kernel modules: i2c_i801

03:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5227 PCI Express Card Reader [10ec:5227] (rev 01)
	Subsystem: Lenovo RTS5227 PCI Express Card Reader [17aa:2210]
	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 26
	Region 0: Memory at f1500000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: <access denied>
	Kernel driver in use: rtsx_pci
	Kernel modules: rtsx_pci

04:00.0 Network controller [0280]: Intel Corporation Centrino Advanced-N 6235 [8086:088f] (rev 24)
	Subsystem: Intel Corporation Centrino Advanced-N 6235 [8086:5260]
	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 33
	Region 0: Memory at f1400000 (64-bit, non-prefetchable) [size=8K]
	Capabilities: <access denied>
	Kernel driver in use: iwlwifi
	Kernel modules: iwlwifi


** USB devices:
Bus 002 Device 002: ID 8087:8000 Intel Corp. 
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 002: ID 8087:8008 Intel Corp. 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 002: ID 058f:9540 Alcor Micro Corp. AU9540 Smartcard Reader
Bus 003 Device 003: ID 8087:07da Intel Corp. 
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub


-- System Information:
Debian Release: buster/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'testing-debug'), (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.13.0-1-amd64 (SMP w/8 CPU cores)
Locale: LANG=de_AT.UTF-8, LC_CTYPE=de_AT.UTF-8 (charmap=UTF-8), LANGUAGE=de_AT:de (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages linux-image-4.13.0-1-amd64 depends on:
ii  initramfs-tools [linux-initramfs-tool]  0.130
ii  kmod                                    24-1
ii  linux-base                              4.5

Versions of packages linux-image-4.13.0-1-amd64 recommends:
ii  firmware-linux-free  3.4
ii  irqbalance           1.2.0-0.2

Versions of packages linux-image-4.13.0-1-amd64 suggests:
pn  debian-kernel-handbook  <none>
ii  grub-pc                 2.02-2
pn  linux-doc-4.13          <none>

Versions of packages linux-image-4.13.0-1-amd64 is related to:
ii  firmware-amd-graphics     20170823-1
ii  firmware-atheros          20170823-1
ii  firmware-bnx2             20170823-1
ii  firmware-bnx2x            20170823-1
ii  firmware-brcm80211        20170823-1
pn  firmware-cavium           <none>
pn  firmware-intel-sound      <none>
ii  firmware-intelwimax       20170823-1
ii  firmware-ipw2x00          20170823-1
ii  firmware-ivtv             20170823-1
ii  firmware-iwlwifi          20170823-1
ii  firmware-libertas         20170823-1
ii  firmware-linux-nonfree    20170823-1
ii  firmware-misc-nonfree     20170823-1
ii  firmware-myricom          20170823-1
ii  firmware-netxen           20170823-1
ii  firmware-qlogic           20170823-1
ii  firmware-realtek          20170823-1
ii  firmware-samsung          20170823-1
pn  firmware-siano            <none>
ii  firmware-ti-connectivity  20170823-1
pn  xen-hypervisor            <none>

-- no debconf information

-- 


Reply to: