Hide Forgot
Description of problem: USB drive is duplicated each time the system resumes from suspend, which results in multiple devices and duplicate partitions mounting points. How reproducible: Allways. Steps to Reproduce: 1. Plug in an USB drive. 2. Go to suspend. 3. Resume from suspend. Actual results: Although the USB drive partitions are still mounted from before going to suspend, the drive is detected as a new device (/dev/sdb, then sdc, then sdd, etc.). This results in multiple mounting of partitions. Expected results: The system should know that the drive has already been detected and partitions should only be mounted once. Additional info: Maybe is it related : in my case, the mounting point of the partitions are specified in /etc/fstab. When resuming from suspend, the system fails to mount them because of insufficient permissions, then mounts them automatically after a few seconds.
(In reply to comment #0) > Although the USB drive partitions are still mounted from before going to > suspend, the drive is detected as a new device (/dev/sdb, then sdc, then sdd, > etc.). This is certainly not right, device should occupy the same device file. Though I understand there might be a race somewhere and suspend/plug-out event gets delayed somehow. What about the old mount, does it still exist? Can you list files there? Or is it forcibly unmounted? Automounting is correct in this case as long as new device is detected. Suggesting looking at the kernel <--> udev stack.
Indeed previous device files have been deleted : $ ls /dev/sd* /dev/sda /dev/sda1 /dev/sda2 /dev/sda3 /dev/sda4 /dev/sda5 /dev/sdi /dev/sdi1 /dev/sdi2 /dev/sdi3 /dev/sdi4 /dev/sdi5 /dev/sdi6 But they still appear in df : $ LANG=en_US.utf8 /bin/df Filesystem 1K-blocks Used Available Use% Mounted on /dev/sda1 10321208 6035564 4180828 60% / tmpfs 1769668 760 1768908 1% /dev/shm /dev/sda2 87779632 82433852 886772 99% /data /dev/sda3 51606140 5905216 43079484 13% /home /dev/sdb1 186663 51088 125938 29% /media/old/boot /dev/sdb2 9424300 8336960 608604 94% /media/old/oldbase /dev/sdb3 132685188 108517304 17427816 87% /media/old/home /dev/sdb5 9518440 6552356 2869416 70% /media/old/base /dev/sdc1 186663 51088 125938 29% /media/old/boot /dev/sdc2 9424300 8336960 608604 94% /media/old/oldbase /dev/sdc3 132685188 108517304 17427816 87% /media/old/home /dev/sdc5 9518440 6552356 2869416 70% /media/old/base /dev/sdd1 186663 51088 125938 29% /media/old/boot /dev/sdd2 9424300 8336960 608604 94% /media/old/oldbase /dev/sdd3 132685188 108517304 17427816 87% /media/old/home /dev/sdd5 9518440 6552356 2869416 70% /media/old/base /dev/sde1 186663 51088 125938 29% /media/old/boot /dev/sde2 9424300 8336960 608604 94% /media/old/oldbase /dev/sde3 132685188 108517304 17427816 87% /media/old/home /dev/sde5 9518440 6552356 2869416 70% /media/old/base /dev/sdf1 186663 51088 125938 29% /media/old/boot /dev/sdf2 9424300 8336960 608604 94% /media/old/oldbase /dev/sdf3 132685188 108517304 17427816 87% /media/old/home /dev/sdf5 9518440 6552356 2869416 70% /media/old/base /dev/sdg1 186663 51088 125938 29% /media/old/boot /dev/sdg2 9424300 8336960 608604 94% /media/old/oldbase /dev/sdg3 132685188 108517304 17427816 87% /media/old/home /dev/sdg5 9518440 6552356 2869416 70% /media/old/base /dev/sdh1 186663 51088 125938 29% /media/old/boot /dev/sdh2 9424300 8336960 608604 94% /media/old/oldbase /dev/sdh3 132685188 108517304 17427816 87% /media/old/home /dev/sdh5 9518440 6552356 2869416 70% /media/old/base /dev/sdi1 186663 51088 125938 29% /media/old/boot /dev/sdi2 9424300 8336960 608604 94% /media/old/oldbase /dev/sdi3 132685188 108517304 17427816 87% /media/old/home /dev/sdi5 9518440 6552356 2869416 70% /media/old/base And they cannot be unmount through nautilus, because "umount: it seems /mount/point is mounted multiple times". Mounting points are the same, so yes, files can be listed.
(In reply to comment #2) > Mounting points are the same, so yes, files can be listed. Please note that making changes to the filesystem can be dangerous. Could you please run `udevadm monitor` and attach the output here after a single suspend/resume cycle so that we could identify what's going on?
$ udevadm monitor monitor will print the received events for: UDEV - the event which udev sends out after rule processing KERNEL - the kernel uevent KERNEL[1300185993.475807] remove /devices/system/cpu/cpu1/cpufreq (cpu) KERNEL[1300185993.475844] remove /devices/system/cpu/cpu1/cache/index0 (cpu) KERNEL[1300185993.475862] remove /devices/system/cpu/cpu1/cache/index1 (cpu) KERNEL[1300185993.475881] remove /devices/system/cpu/cpu1/cache/index2 (cpu) KERNEL[1300185993.475899] remove /devices/system/cpu/cpu1/cache/index3 (cpu) KERNEL[1300185993.475916] remove /devices/system/cpu/cpu1/cache (cpu) KERNEL[1300185993.475936] remove /devices/system/machinecheck/machinecheck1 (machinecheck) KERNEL[1300185993.475955] remove /devices/system/cpu/cpu2/cpufreq (cpu) KERNEL[1300185993.475974] remove /devices/system/cpu/cpu2/cache/index0 (cpu) KERNEL[1300185993.475993] remove /devices/system/cpu/cpu2/cache/index1 (cpu) KERNEL[1300185993.476011] remove /devices/system/cpu/cpu2/cache/index2 (cpu) KERNEL[1300185993.476028] remove /devices/system/cpu/cpu2/cache/index3 (cpu) KERNEL[1300185993.476045] remove /devices/system/cpu/cpu2/cache (cpu) KERNEL[1300185993.476063] remove /devices/system/machinecheck/machinecheck2 (machinecheck) KERNEL[1300185993.476102] remove /devices/system/cpu/cpu3/cpufreq (cpu) KERNEL[1300185993.476122] remove /devices/system/cpu/cpu3/cache/index0 (cpu) KERNEL[1300185993.476141] remove /devices/system/cpu/cpu3/cache/index1 (cpu) KERNEL[1300185993.476159] remove /devices/system/cpu/cpu3/cache/index2 (cpu) KERNEL[1300185993.476176] remove /devices/system/cpu/cpu3/cache/index3 (cpu) KERNEL[1300185993.476194] remove /devices/system/cpu/cpu3/cache (cpu) KERNEL[1300185993.476211] remove /devices/system/machinecheck/machinecheck3 (machinecheck) KERNEL[1300185993.476229] add /devices/system/cpu/cpu1/cache/index0 (cpu) KERNEL[1300185993.476247] add /devices/system/cpu/cpu1/cache/index1 (cpu) KERNEL[1300185993.476265] add /devices/system/cpu/cpu1/cache/index2 (cpu) KERNEL[1300185993.476282] add /devices/system/cpu/cpu1/cache/index3 (cpu) KERNEL[1300185993.476301] add /devices/system/cpu/cpu1/cache (cpu) KERNEL[1300185993.476318] add /devices/system/machinecheck/machinecheck1 (machinecheck) KERNEL[1300185993.476336] add /devices/system/cpu/cpu1/cpufreq (cpu) KERNEL[1300185993.476353] add /devices/system/cpu/cpu2/cache/index0 (cpu) KERNEL[1300185993.476369] add /devices/system/cpu/cpu2/cache/index1 (cpu) KERNEL[1300185993.476387] add /devices/system/cpu/cpu2/cache/index2 (cpu) KERNEL[1300185993.476404] add /devices/system/cpu/cpu2/cache/index3 (cpu) KERNEL[1300185993.476421] add /devices/system/cpu/cpu2/cache (cpu) KERNEL[1300185993.476438] add /devices/system/machinecheck/machinecheck2 (machinecheck) KERNEL[1300185993.476456] add /devices/system/cpu/cpu2/cpufreq (cpu) KERNEL[1300185993.476473] add /devices/system/cpu/cpu3/cache/index0 (cpu) KERNEL[1300185993.476491] add /devices/system/cpu/cpu3/cache/index1 (cpu) KERNEL[1300185993.476510] add /devices/system/cpu/cpu3/cache/index2 (cpu) KERNEL[1300185993.476528] add /devices/system/cpu/cpu3/cache/index3 (cpu) KERNEL[1300185993.476545] add /devices/system/cpu/cpu3/cache (cpu) KERNEL[1300185993.476564] add /devices/system/machinecheck/machinecheck3 (machinecheck) KERNEL[1300185993.476582] add /devices/system/cpu/cpu3/cpufreq (cpu) KERNEL[1300185993.476634] change /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0A:00/power_supply/BAT0 (power_supply) KERNEL[1300185993.476713] change /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7:1.0/bluetooth/hci0/rfkill8 (rfkill) KERNEL[1300185993.476736] remove /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7:1.0/bluetooth/hci0/rfkill8 (rfkill) KERNEL[1300185993.476757] remove /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7:1.0/bluetooth/hci0 (bluetooth) KERNEL[1300185993.476781] change /devices/pci0000:00/0000:00:1c.1/0000:02:00.0/ieee80211/phy0/rfkill1 (rfkill) KERNEL[1300185993.476803] add /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7:1.0/bluetooth/hci0 (bluetooth) KERNEL[1300185993.476827] add /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7:1.0/bluetooth/hci0/rfkill9 (rfkill) KERNEL[1300185993.482737] change /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7:1.0/bluetooth/hci0/rfkill9 (rfkill) UDEV [1300185993.491371] remove /devices/system/cpu/cpu1/cpufreq (cpu) UDEV [1300185993.491401] remove /devices/system/cpu/cpu1/cache/index0 (cpu) KERNEL[1300185993.500925] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/bsg/14:0:0:0 (bsg) KERNEL[1300185993.500967] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/scsi_generic/sg2 (scsi_generic) UDEV [1300185993.500987] remove /devices/system/cpu/cpu1/cache/index3 (cpu) KERNEL[1300185993.501008] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/scsi_device/14:0:0:0 (scsi_device) UDEV [1300185993.501024] remove /devices/system/machinecheck/machinecheck1 (machinecheck) KERNEL[1300185993.501043] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/scsi_disk/14:0:0:0 (scsi_disk) UDEV [1300185993.501062] remove /devices/system/cpu/cpu2/cpufreq (cpu) KERNEL[1300185993.501112] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/block/sdi/sdi6 (block) UDEV [1300185993.501132] remove /devices/system/cpu/cpu2/cache/index0 (cpu) KERNEL[1300185993.501155] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/block/sdi/sdi5 (block) UDEV [1300185993.501174] remove /devices/system/cpu/cpu2/cache/index1 (cpu) KERNEL[1300185993.501197] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/block/sdi/sdi4 (block) UDEV [1300185993.501223] remove /devices/system/cpu/cpu2/cache/index2 (cpu) KERNEL[1300185993.501259] change /devices/pci0000:00/0000:00:02.0/drm/card0 (drm) UDEV [1300185993.501282] remove /devices/system/cpu/cpu2/cache/index3 (cpu) KERNEL[1300185993.501318] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/block/sdi/sdi3 (block) UDEV [1300185993.501345] remove /devices/system/cpu/cpu2/cache (cpu) UDEV [1300185993.501364] remove /devices/system/machinecheck/machinecheck2 (machinecheck) UDEV [1300185993.501383] remove /devices/system/cpu/cpu3/cpufreq (cpu) KERNEL[1300185993.505617] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/block/sdi/sdi2 (block) UDEV [1300185993.516258] remove /devices/system/cpu/cpu3/cache/index0 (cpu) UDEV [1300185993.516309] remove /devices/system/cpu/cpu1/cache/index2 (cpu) UDEV [1300185993.543907] remove /devices/system/machinecheck/machinecheck3 (machinecheck) UDEV [1300185993.546069] remove /devices/system/cpu/cpu3/cache/index1 (cpu) UDEV [1300185993.546096] remove /devices/system/cpu/cpu3/cache/index2 (cpu) UDEV [1300185993.546121] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/scsi_generic/sg2 (scsi_generic) UDEV [1300185993.546145] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/scsi_disk/14:0:0:0 (scsi_disk) UDEV [1300185993.547038] remove /devices/system/cpu/cpu1/cache/index1 (cpu) UDEV [1300185993.547060] remove /devices/system/cpu/cpu1/cache (cpu) UDEV [1300185993.547085] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/bsg/14:0:0:0 (bsg) UDEV [1300185993.547107] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/scsi_device/14:0:0:0 (scsi_device) UDEV [1300185993.547129] remove /devices/system/cpu/cpu3/cache/index3 (cpu) UDEV [1300185993.547404] remove /devices/system/cpu/cpu3/cache (cpu) UDEV [1300185993.607338] change /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7:1.0/bluetooth/hci0/rfkill8 (rfkill) UDEV [1300185993.607372] change /devices/pci0000:00/0000:00:1c.1/0000:02:00.0/ieee80211/phy0/rfkill1 (rfkill) UDEV [1300185993.613067] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/block/sdi/sdi4 (block) UDEV [1300185993.613109] remove /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7:1.0/bluetooth/hci0/rfkill8 (rfkill) UDEV [1300185993.613131] remove /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7:1.0/bluetooth/hci0 (bluetooth) UDEV [1300185993.613194] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/block/sdi/sdi6 (block) UDEV [1300185993.613280] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/block/sdi/sdi3 (block) UDEV [1300185993.613466] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/block/sdi/sdi2 (block) KERNEL[1300185993.613922] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/block/sdi/sdi1 (block) UDEV [1300185993.614560] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/block/sdi/sdi1 (block) UDEV [1300185993.683612] add /devices/system/machinecheck/machinecheck2 (machinecheck) UDEV [1300185993.683643] add /devices/system/machinecheck/machinecheck3 (machinecheck) UDEV [1300185993.683783] add /devices/system/cpu/cpu2/cache/index1 (cpu) UDEV [1300185993.684030] add /devices/system/cpu/cpu2/cache/index2 (cpu) UDEV [1300185993.684344] add /devices/system/machinecheck/machinecheck1 (machinecheck) UDEV [1300185993.685147] add /devices/system/cpu/cpu2/cache/index3 (cpu) UDEV [1300185993.685189] change /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0A:00/power_supply/BAT0 (power_supply) UDEV [1300185993.685213] add /devices/system/cpu/cpu2/cache/index0 (cpu) UDEV [1300185993.685231] add /devices/system/cpu/cpu1/cache/index2 (cpu) UDEV [1300185993.685249] add /devices/system/cpu/cpu2/cache (cpu) KERNEL[1300185993.685338] remove /devices/virtual/bdi/8:128 (bdi) KERNEL[1300185993.685421] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/block/sdi (block) KERNEL[1300185998.152809] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0 (scsi) UDEV [1300185998.152837] add /devices/system/cpu/cpu1/cache/index3 (cpu) KERNEL[1300185998.152858] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/scsi_host/host14 (scsi_host) UDEV [1300185998.152877] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/scsi_host/host14 (scsi_host) KERNEL[1300185998.152898] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14 (scsi) UDEV [1300185998.152917] remove /devices/virtual/bdi/8:128 (bdi) KERNEL[1300185998.152945] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0 (usb) UDEV [1300185998.152964] add /devices/system/cpu/cpu1/cache/index0 (cpu) KERNEL[1300185998.153054] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2 (usb) UDEV [1300185998.153100] add /devices/system/cpu/cpu1/cache/index1 (cpu) KERNEL[1300185998.153164] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2 (usb) UDEV [1300185998.153207] add /devices/system/cpu/cpu3/cache/index2 (cpu) KERNEL[1300185998.153261] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0 (usb) UDEV [1300185998.153306] add /devices/system/cpu/cpu3/cache/index3 (cpu) KERNEL[1300185998.153350] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15 (scsi) UDEV [1300185998.153390] add /devices/system/cpu/cpu3/cache/index1 (cpu) KERNEL[1300185998.153434] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/scsi_host/host15 (scsi_host) UDEV [1300185998.153475] add /devices/system/cpu/cpu3/cache/index0 (cpu) KERNEL[1300185998.153521] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0 (scsi) UDEV [1300185998.153563] add /devices/system/cpu/cpu3/cache (cpu) KERNEL[1300185998.153611] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0 (scsi) UDEV [1300185998.153654] add /devices/system/cpu/cpu1/cache (cpu) KERNEL[1300185998.153698] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/scsi_disk/15:0:0:0 (scsi_disk) UDEV [1300185998.153741] add /devices/system/cpu/cpu2/cpufreq (cpu) KERNEL[1300185998.153786] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/scsi_device/15:0:0:0 (scsi_device) UDEV [1300185998.153830] add /devices/system/cpu/cpu3/cpufreq (cpu) KERNEL[1300185998.153880] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/scsi_generic/sg2 (scsi_generic) UDEV [1300185998.153922] add /devices/system/cpu/cpu1/cpufreq (cpu) KERNEL[1300185998.153968] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/bsg/15:0:0:0 (bsg) UDEV [1300185998.154038] add /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7:1.0/bluetooth/hci0 (bluetooth) KERNEL[1300185998.154119] add /devices/virtual/bdi/8:144 (bdi) UDEV [1300185998.154163] add /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7:1.0/bluetooth/hci0/rfkill9 (rfkill) KERNEL[1300185998.154220] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/block/sdj (block) UDEV [1300185998.154269] change /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7:1.0/bluetooth/hci0/rfkill9 (rfkill) KERNEL[1300185998.154325] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/block/sdj/sdj1 (block) UDEV [1300185998.154502] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/block/sdi/sdi5 (block) KERNEL[1300185998.154573] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/block/sdj/sdj2 (block) UDEV [1300185998.154684] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/block/sdi (block) KERNEL[1300185998.154750] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/block/sdj/sdj3 (block) UDEV [1300185998.154801] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0 (scsi) KERNEL[1300185998.154857] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/block/sdj/sdj4 (block) UDEV [1300185998.154901] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14 (scsi) KERNEL[1300185998.154956] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/block/sdj/sdj5 (block) UDEV [1300185998.155044] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0 (usb) KERNEL[1300185998.155097] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/block/sdj/sdj6 (block) UDEV [1300185998.155191] remove /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2 (usb) UDEV [1300185998.155257] change /devices/pci0000:00/0000:00:02.0/drm/card0 (drm) UDEV [1300185998.155356] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2 (usb) UDEV [1300185998.155421] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0 (usb) UDEV [1300185998.155469] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15 (scsi) UDEV [1300185998.155517] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/scsi_host/host15 (scsi_host) UDEV [1300185998.155564] add /devices/virtual/bdi/8:144 (bdi) UDEV [1300185998.155610] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0 (scsi) UDEV [1300185998.155660] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0 (scsi) UDEV [1300185998.155709] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/scsi_device/15:0:0:0 (scsi_device) UDEV [1300185998.155758] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/scsi_disk/15:0:0:0 (scsi_disk) UDEV [1300185998.155814] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/bsg/15:0:0:0 (bsg) UDEV [1300185998.155871] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/scsi_generic/sg2 (scsi_generic) UDEV [1300185998.162200] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/block/sdj (block) UDEV [1300185998.162318] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/block/sdj/sdj4 (block) UDEV [1300185998.162425] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/block/sdj/sdj6 (block) UDEV [1300185998.162551] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/block/sdj/sdj1 (block) UDEV [1300185998.162680] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/block/sdj/sdj5 (block) UDEV [1300185998.162921] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/block/sdj/sdj2 (block) UDEV [1300185998.163068] add /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host15/target15:0:0/15:0:0:0/block/sdj/sdj3 (block)
Sorry, I didn't noticed it was that long, I should have attached it…
this is the kernel... not udev
Thanks for the output. If your time when a machine was suspended was only five seconds, then it looks sane. Except of kernel attaching usb mass storage device with a different device file. Perhaps the following event causes the issue: (In reply to comment #4) > UDEV [1300185998.154502] remove > /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/host14/target14:0:0/14:0:0:0/block/sdi/sdi5 > (block) as long as it happened after resume.
Indeed I went to suspend solely for the purpose of obtaining the output, so it should not have lasted more than a few seconds. I can wait a bit longer if needed.
This message is a notice that Fedora 14 is now at end of life. Fedora has stopped maintaining and issuing updates for Fedora 14. It is Fedora's policy to close all bug reports from releases that are no longer maintained. At this time, all open bugs with a Fedora 'version' of '14' have been closed as WONTFIX. (Please note: Our normal process is to give advanced warning of this occurring, but we forgot to do that. A thousand apologies.) Package Maintainer: If you wish for this bug to remain open because you plan to fix it in a currently maintained version, feel free to reopen this bug and simply change the 'version' to a later Fedora version. Bug Reporter: Thank you for reporting this issue and we are sorry that we were unable to fix it before Fedora 14 reached end of life. If you would still like to see this bug fixed and are able to reproduce it against a later version of Fedora, you are encouraged to click on "Clone This Bug" (top right of this page) and open it against that version of Fedora. Although we aim to fix as many bugs as possible during every release's lifetime, sometimes those efforts are overtaken by events. Often a more recent Fedora release includes newer upstream software that fixes bugs or makes them obsolete. The process we are following is described here: http://fedoraproject.org/wiki/BugZappers/HouseKeeping