anatol/booster

Booster fails to load sd_mod.ko

Closed this issue · 13 comments

nmeum commented

After a recent system upgrade, Booster failed to prompt for my FDE password. I investigated this further and noticed that the device files for my SATA devices are not present in the BusyBox emergency environment. Hence, Booster does not find my encrypted LUKS partition and thus doesn't prompt for a password. The device drivers for my SATA device require the sd_mod kernel module to be loaded by Booster, which it doesn't seem to do automatically anymore for some reason.

Manually loading sd_mod in the BusyBox emergency shell results in the following error:

# busybox insmod /usr/lib/modules/sd_mod.ko
sd_mod: Unknown symbol t10_pi_type1_crc (err -2)
sd_mod: Unknown symbol t10_pi_type3_crc (err -2)
sd_mod: Unknown symbol t10_pi_type3_ip (err -2)
…

As it turns out, these symbols are provided by t10_pi.ko and indeed loading t10_pi.ko first and then loading sd_mod.ko works as expected:

# busybox insmod /usr/lib/modules/t10_pi.ko
# busybox insmod /usr/lib/modules/sd_mod.ko
< sd* devices appear in /dev >

According to modinfo, the sd_mod module also has a direct dependency on t10_pi.ko on my system:

$ modinfo sd_mod | grep ^depends
depends:        scsi_mod,t10-pi

As such, maybe this issue is similar to #133 in the sense that dependencies are not correctly taken into account and therefore sd_mod.ko is not loaded by Booster and hence it doesn't prompt for the LUKS password? This hypothesis seems to be confirmed by the fact that using the following modules_force_load declaration in /etc/booster.yaml makes Booster work again:

modules_force_load: t10_pi,sd_mod

As I mentioned above, I encountered this after a system upgrade. The system booted fine with Booster in the past without the modules_force_load declaration. However, I am not sure if this is a regression introduced in Booster 0.9 or if this is due to a recent Kernel upgrade.

If t10_pi marked as a dependency of sd_mod then booster should pick t10_pi.

Could you please run booster --debug build foo.img and then share the debug log?

nmeum commented

If t10_pi marked as a dependency of sd_mod then booster should pick t10_pi.

Is there any way to specifically debug loading of modules by the init? With booster.debug there is simply to much debug output to figure out if there is an issue with the module loading code during init.

Could you please run booster --debug build foo.img and then share the debug log?

Not sure if this information is important, but both modules are definitely included in the image (even without modules_force_load) it is just that sd_mod doesn't seem to be loaded by default.

Also: Do you mean --verbose instead of --debug? If so, the output looks as follows:

$ booster build -v foo.img
unable to find a config for the kernel
active host modules: [encrypted_keys snd_hda_codec_generic cpuidle cryptomgr coretemp xor syscopyarea dns_resolver spurious edac_core ata_piix vt iTCO_wdt tcp_cubic intel_pmc_bxt nmi_backtrace i2c_core irqbypass xen 8250 video kfence md_mod shpchp soundcore drm_panel_orientation_quirks srcutree rcupdate devres xen_blkfront random rtc_cmos input_leds dm_crypt snd_hwdep drm_kms_helper sysimgblt pstore sysrq intel_agp cdrom ehci_pci acpi_cpufreq snd_intel_sdw_acpi processor scsi_mod kernel mbcache page_alloc crc32c_generic snd_hda_intel intel_gtt usbhid pciehp pci_hotplug gpiolib_acpi sd_mod i2c_algo_bit pata_acpi af_packet cfbfillrect trusted snd_hda_codec raid6_pq ec_sys mfd_core ata_generic intel_idle libcrc32c keyboard zswap agpgart kmemleak cfbimgblt binder serio_raw snd_timer ledtrig_audio fb page_reporting hid netpoll apparmor brd usbcore iTCO_vendor_support evdev snd_intel_dspcfg blk_cgroup pcie_aspm secretmem libnvdimm cpufreq xen_netfront lpc_ich ehci_hcd t10_pi ipv6 i2c_smbus btrfs hid_generic intel_pmc_core slab_common crc_t10dif cfbcopyarea fuse acpiphp fb_sys_fops cec asn1_encoder usb_common rcutree i2c_i801 sysfillrect button kvm sky2 can block ext2 snd_pcm xz_dec snd dm_mod cpuidle_haltpoll i915 libata kvm_intel psmouse i8042 ttm snd_hda_core firmware_class binder_alloc acpi clocksource fscrypto snd_hda_codec_idt rng_core uhci_hcd printk hwmon watchdog workqueue tpm sr_mod drm gpio_ich config:ext4]
activate module fuse
activate module btrfs
activate module ext2
activate module ext4
activate module pstore
activate module mbcache
activate module xor
activate module cryptomgr
activate module crc32c_generic
activate module i8042
activate module serio_raw
activate module md_mod
activate module dm_mod
activate module dm_crypt
activate module tpm
activate module ehci_pci
activate module uhci_hcd
activate module ehci_hcd
activate module hid
activate module hid_generic
activate module usbhid
activate module ata_generic
activate module ata_piix
activate module pata_acpi
activate module libata
activate module sd_mod
unable to resolve module name aead2
unable to resolve module name nls
unable to resolve module name aead2
unable to resolve module name nls
unable to resolve module name blake2b-256
unable to resolve module name dw_dmac
unable to resolve module name crypto-intel_qat
unable to resolve module name platform:leds-gpio
unable to resolve module name vfio_iommu_spapr_tce
module 'acpiphp' currently used at the host but was not added to the image
module 'fscrypto' currently used at the host but was not added to the image
module 'spurious' currently used at the host but was not added to the image
module 'binder' currently used at the host but was not added to the image
module 'apparmor' currently used at the host but was not added to the image
module 'i2c_i801' currently used at the host but was not added to the image
module 'sky2' currently used at the host but was not added to the image
module 'snd' currently used at the host but was not added to the image
module 'libnvdimm' currently used at the host but was not added to the image
module 'sr_mod' currently used at the host but was not added to the image
module 'agpgart' currently used at the host but was not added to the image
module 'iTCO_vendor_support' currently used at the host but was not added to the image
module 'pcie_aspm' currently used at the host but was not added to the image
module 'ttm' currently used at the host but was not added to the image
module 'lpc_ich' currently used at the host but was not added to the image
module 'ipv6' currently used at the host but was not added to the image
module 'slab_common' currently used at the host but was not added to the image
module 'xz_dec' currently used at the host but was not added to the image
module 'rcutree' currently used at the host but was not added to the image
module 'sysfillrect' currently used at the host but was not added to the image
module 'cpufreq' currently used at the host but was not added to the image
module 'pci_hotplug' currently used at the host but was not added to the image
module 'cfbcopyarea' currently used at the host but was not added to the image
module 'printk' currently used at the host but was not added to the image
module 'shpchp' currently used at the host but was not added to the image
module 'snd_hda_intel' currently used at the host but was not added to the image
module 'pciehp' currently used at the host but was not added to the image
module 'hwmon' currently used at the host but was not added to the image
module 'kfence' currently used at the host but was not added to the image
module 'snd_hwdep' currently used at the host but was not added to the image
module 'ledtrig_audio' currently used at the host but was not added to the image
module 'intel_pmc_core' currently used at the host but was not added to the image
module 'firmware_class' currently used at the host but was not added to the image
module 'devres' currently used at the host but was not added to the image
module 'rtc_cmos' currently used at the host but was not added to the image
module 'brd' currently used at the host but was not added to the image
module 'fb' currently used at the host but was not added to the image
module 'i2c_core' currently used at the host but was not added to the image
module 'xen' currently used at the host but was not added to the image
module 'ec_sys' currently used at the host but was not added to the image
module 'psmouse' currently used at the host but was not added to the image
module 'blk_cgroup' currently used at the host but was not added to the image
module 'acpi' currently used at the host but was not added to the image
module 'sysrq' currently used at the host but was not added to the image
module 'page_alloc' currently used at the host but was not added to the image
module 'cfbimgblt' currently used at the host but was not added to the image
module 'vt' currently used at the host but was not added to the image
module 'rcupdate' currently used at the host but was not added to the image
module 'soundcore' currently used at the host but was not added to the image
module 'snd_hda_codec' currently used at the host but was not added to the image
module 'i2c_algo_bit' currently used at the host but was not added to the image
module 'button' currently used at the host but was not added to the image
module 'can' currently used at the host but was not added to the image
module 'snd_hda_codec_generic' currently used at the host but was not added to the image
module '8250' currently used at the host but was not added to the image
module 'xen_blkfront' currently used at the host but was not added to the image
module 'workqueue' currently used at the host but was not added to the image
module 'fb_sys_fops' currently used at the host but was not added to the image
module 'kvm_intel' currently used at the host but was not added to the image
module 'watchdog' currently used at the host but was not added to the image
module 'drm' currently used at the host but was not added to the image
module 'tcp_cubic' currently used at the host but was not added to the image
module 'evdev' currently used at the host but was not added to the image
module 'mfd_core' currently used at the host but was not added to the image
module 'page_reporting' currently used at the host but was not added to the image
module 'clocksource' currently used at the host but was not added to the image
module 'cfbfillrect' currently used at the host but was not added to the image
module 'kmemleak' currently used at the host but was not added to the image
module 'block' currently used at the host but was not added to the image
module 'nmi_backtrace' currently used at the host but was not added to the image
module 'drm_panel_orientation_quirks' currently used at the host but was not added to the image
module 'srcutree' currently used at the host but was not added to the image
module 'input_leds' currently used at the host but was not added to the image
module 'snd_hda_core' currently used at the host but was not added to the image
module 'dns_resolver' currently used at the host but was not added to the image
module 'drm_kms_helper' currently used at the host but was not added to the image
module 'snd_intel_sdw_acpi' currently used at the host but was not added to the image
module 'processor' currently used at the host but was not added to the image
module 'cpuidle_haltpoll' currently used at the host but was not added to the image
module 'binder_alloc' currently used at the host but was not added to the image
module 'gpio_ich' currently used at the host but was not added to the image
module 'intel_pmc_bxt' currently used at the host but was not added to the image
module 'xen_netfront' currently used at the host but was not added to the image
module 'kvm' currently used at the host but was not added to the image
module 'secretmem' currently used at the host but was not added to the image
module 'intel_agp' currently used at the host but was not added to the image
module 'cdrom' currently used at the host but was not added to the image
module 'zswap' currently used at the host but was not added to the image
module 'irqbypass' currently used at the host but was not added to the image
module 'gpiolib_acpi' currently used at the host but was not added to the image
module 'keyboard' currently used at the host but was not added to the image
module 'netpoll' currently used at the host but was not added to the image
module 'syscopyarea' currently used at the host but was not added to the image
module 'acpi_cpufreq' currently used at the host but was not added to the image
module 'snd_intel_dspcfg' currently used at the host but was not added to the image
module 'cec' currently used at the host but was not added to the image
module 'sysimgblt' currently used at the host but was not added to the image
module 'kernel' currently used at the host but was not added to the image
module 'af_packet' currently used at the host but was not added to the image
module 'i915' currently used at the host but was not added to the image
module 'cpuidle' currently used at the host but was not added to the image
module 'random' currently used at the host but was not added to the image
module 'snd_timer' currently used at the host but was not added to the image
module 'i2c_smbus' currently used at the host but was not added to the image
module 'coretemp' currently used at the host but was not added to the image
module 'iTCO_wdt' currently used at the host but was not added to the image
module 'crc_t10dif' currently used at the host but was not added to the image
module 'snd_pcm' currently used at the host but was not added to the image
module 'intel_idle' currently used at the host but was not added to the image
module 'snd_hda_codec_idt' currently used at the host but was not added to the image
module 'edac_core' currently used at the host but was not added to the image
module 'video' currently used at the host but was not added to the image
module 'intel_gtt' currently used at the host but was not added to the image
no matches found for a device alias 'pci:v00008086d000027B8sv00001297sd00004001bc06sc01i00'
no matches found for a device alias 'platform:coretemp'
no matches found for a device alias 'acpi:PNP0000:'
no matches found for a device alias 'acpi:PNP0C0C:'
no matches found for a device alias 'cpu:type:x86,ven0000fam0006mod0017:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001C,001D,001F,002B,0034,003D,0068,006B,006C,006D,006F,0070,0072,0074,0075,0079,007C,0080,0082,0083,0084,0085,0087,0088,0089,008D,008E,008F,009A,009B,00C0,00EB,00ED,00F3,00FD,00FF,0100,0101,0102,0104,0165,016C,01C0'
no matches found for a device alias 'acpi:PNP0100:'
no matches found for a device alias 'acpi:PNP0B00:'
no matches found for a device alias 'pci:v00008086d00002E30sv00001297sd00004001bc06sc00i00'
no matches found for a device alias 'input:b0000v0000p0000e0000-e0,5,kramlsfw4,'
no matches found for a device alias 'acpi:PNP0C0F:'
no matches found for a device alias 'acpi:LNXSYSTM:'
no matches found for a device alias 'input:b0003v046Ap0011e0111-e0,1,4,11,14,k71,72,73,74,75,77,79,7A,7B,7C,7D,7E,7F,80,81,82,83,84,85,86,87,88,89,8A,B3,B4,B7,B8,B9,BA,BB,BC,BD,BE,BF,C0,C1,C2,F0,ram4,l0,1,2,sfw'
no matches found for a device alias 'scsi:t-0x00'
no matches found for a device alias 'platform:microcode'
no matches found for a device alias 'acpi:PNP0C04:'
no matches found for a device alias 'pci:v00008086d000027D0sv00001297sd00004001bc06sc04i00'
no matches found for a device alias 'dmi:bvnAmericanMegatrendsInc.:bvr080015:bd07/13/2010:br8.15:svnShuttleInc:pnSG41:pvrV20:rvnShuttleInc:rnFG41:rvrV20:cvnShuttleInc:ct3:cvrToBeFilledByO.E.M.:skuToBeFilledByO.E.M.:'
no matches found for a device alias 'input:b0000v0000p0000e0000-e0,5,kramlsfw2,'
no matches found for a device alias 'pci:v000011ABd00004380sv00001297sd00004001bc02sc00i00'
no matches found for a device alias 'platform:iTCO_wdt'
no matches found for a device alias 'input:b0000v0000p0000e0000-e0,5,kramlsfwD,'
no matches found for a device alias 'pci:v00008086d000027D2sv00001297sd00004001bc06sc04i00'
no matches found for a device alias 'pci:v00008086d00002E32sv00001297sd00004001bc03sc00i00'
no matches found for a device alias 'pci:v00008086d000027D8sv00001297sd00004001bc04sc03i00'
no matches found for a device alias 'platform:pcspkr'
no matches found for a device alias 'platform:serial8250'
no matches found for a device alias 'input:b0019v0000p0001e0000-e0,1,k74,ramlsfw'
no matches found for a device alias 'acpi:PNP0C01:'
no matches found for a device alias 'acpi:PNP0200:'
no matches found for a device alias 'input:b0000v0000p0000e0000-e0,5,kramlsfw6,'
no matches found for a device alias 'acpi:LNXCPU:'
no matches found for a device alias 'acpi:LNXPWRBN:'
no matches found for a device alias 'platform:alarmtimer'
no matches found for a device alias 'platform:gpio_ich'
no matches found for a device alias 'platform:reg-dummy'
no matches found for a device alias 'acpi:PNP0103:'
no matches found for a device alias 'acpi:LNXSYBUS:'
no matches found for a device alias 'platform:i8042'
no matches found for a device alias 'acpi:PNP0A08:PNP0A03:'
no matches found for a device alias 'pci:v00008086d00002E33sv00001297sd00004001bc03sc80i00'
no matches found for a device alias 'pci:v00008086d0000244Esv00001297sd00004001bc06sc04i01'
no matches found for a device alias 'scsi:t-0x05'
no matches found for a device alias 'acpi:INT0800:'
no matches found for a device alias 'hdaudio:v111D76C1r00100102a01'
no matches found for a device alias 'acpi:PNP0C02:'
no matches found for a device alias 'acpi:PNP0800:'
no matches found for a device alias 'pci:v00008086d000027DAsv00001297sd00004001bc0Csc05i00'
enabling virtual console
font ter-v16n.psf matched to file /usr/share/consolefonts/ter-v16n.psf.gz

Config:

compression: gzip
vconsole: true
mount_timeout: 30s
extra_files: /bin/busybox

Your booster --verbose output looks fine.

I assume you use up-to-date Alpine Linux. So I ran TestAlpineLinux integration test, and it passed OK. I see t10_pi and sd_mod loaded successfully. I also checked the content of the generated booster.img and I see the correct module dependency:

$ booster cat booster.img etc/booster.init.yaml

...
sd_mod:
    - t10_pi

so far, things look good on my side.

A few more things to try on your side:

  1. pull the latest changes from wip branch. There were a few changes to module loading code there recently.
  2. enable universal mode

If nothing helps, then I need your boot debug log to understand what is going on with the module loading. Enable the debug log with booster.debug boot param. Once you get to emergency shell check dmesg output and look for any booster warnings/errors there.

But before

nmeum commented

Thanks for looking it it. I am indeed using Alpine Linux Edge. I will try the wip Branch on the weekend and will try to debug it further if it doesn't work out-of-the-box on the wip branch.

nmeum commented

I finally found some time to look into this again. This is definitely not a dependency resolution problem (as I originally assumed). If I only force load sd_mod via /etc/booster.yaml (without force loading t10_pi) then everything also works as expected, i.e. Booster will implicitly correctly load t10_pi as a dependency of sd_mod. The dependency is also correctly recorded in etc/booster.init.yaml on my system:

moduledependencies:
    #
    sd_mod:
        - scsi_mod
        - t10_pi
    #

So the problem seems to be that sd_mod itself is never loaded by Booster. I tried figuring out where in the init/ code booster would normally load sd_mod but was unable to find a fitting loadModules() call in the codebase. Could you point me to the place in the init code where this module is supposed to be loaded? This would allow me to do some further debugging of my own :)

The module loading happens at

func finitModule(module string) error {

Note that each module is loaded in a separate goroutine and if loading has failed it does not stop the boot process.

Is there any way to specifically debug loading of modules by the init? With booster.debug there is simply to much debug output to figure out if there is an issue with the module loading code during init.

The easiest ay would be to enable this flag, then boot to emergency shell, then check output of dmesg. It will contain all the debug logs of booster boot process.

nmeum commented

The module loading happens at

func finitModule(module string) error {

I am aware of that I was just wondering where finitModule / loadModule is called with sd_mod as a parameter.

Note that each module is loaded in a separate goroutine and if loading has failed it does not stop the boot process.

The easiest ay would be to enable this flag, then boot to emergency shell, then check output of dmesg. It will contain all the debug logs of booster boot process.

Right. Unfortunately, I don't see any errors or warnings in the dmesg output. I also don't see anything related to sd_mod. It seems to me that Booster is not even attempting to load sd_mod. Is this because there is no udev event with the driver / modalias for the sd_mod module?

[    0.000000] microcode: microcode updated early to revision 0xa0b, date = 2010-09-28
[    0.000000] Linux version 5.15.74-0-lts (buildozer@build-edge-x86_64) (gcc (Alpine 12.2.1_git20220924-r3) 12.2.1 20220924, GNU ld (GNU Binutils) 2.39) #1-Alpine SMP Sat, 15 Oct 2022 18:25:37 +0000
[    0.000000] Command line: BOOT_IMAGE=vmlinuz-lts root=UUID=3b6146fd-13d3-4c7d-b249-8f4c52e5ac82 modules= quiet log_buf_len=16M booster.debug console=tty1 rootflags=rw,noatime,compress=lzo,ssd,discard,space_cache rd.luks.name=d6990c4f-c9f0-4caf-a651-00511a66567f=root rd.luks.options=discard rootfstype=btrfs initrd=intel-ucode.img,initramfs-lts
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Enabled xstate features 0x3, context size is 576 bytes, using 'standard' format.
[    0.000000] signal: max sigframe size: 1520
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bdd9ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bdda0000-0x00000000bddadfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000bddae000-0x00000000bddeffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bddf0000-0x00000000bfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fff00000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.5 present.
[    0.000000] DMI: Shuttle Inc SG41/FG41, BIOS 080015  07/13/2010
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2593.241 MHz processor
[    0.000999] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.001004] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.001012] last_pfn = 0x140000 max_arch_pfn = 0x400000000
[    0.001540] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.002102] e820: update [mem 0xbde00000-0xffffffff] usable ==> reserved
[    0.002113] last_pfn = 0xbdda0 max_arch_pfn = 0x400000000
[    0.014584] found SMP MP-table at [mem 0x000ff780-0x000ff78f]
[    0.074221] printk: log_buf_len: 16777216 bytes
[    0.074228] printk: early log buf free: 14032(85%)
[    0.074230] RAMDISK: [mem 0x7f4d9000-0x7fffffff]
[    0.074239] ACPI: Early table checksum verification disabled
[    0.074250] ACPI: RSDP 0x00000000000F91D0 000024 (v02 ACPIAM)
[    0.074258] ACPI: XSDT 0x00000000BDDA0100 000064 (v01 Shuttl Shuttle  20100713 MSFT 00000097)
[    0.074266] ACPI: FACP 0x00000000BDDA0290 0000F4 (v03 071310 FACP1737 20100713 MSFT 00000097)
[    0.074275] ACPI: DSDT 0x00000000BDDA05C0 00562B (v01 Shuttl SG41V20  00000103 INTL 20051117)
[    0.074280] ACPI: FACS 0x00000000BDDAE000 000040
[    0.074284] ACPI: FACS 0x00000000BDDAE000 000040
[    0.074289] ACPI: APIC 0x00000000BDDA0390 00006C (v01 071310 APIC1737 20100713 MSFT 00000097)
[    0.074294] ACPI: MCFG 0x00000000BDDA0400 00003C (v01 071310 OEMMCFG  20100713 MSFT 00000097)
[    0.074298] ACPI: SLIC 0x00000000BDDA0440 000176 (v01 Shuttl Shuttle  20100713 MSFT 00000097)
[    0.074303] ACPI: OEMB 0x00000000BDDAE040 000072 (v01 071310 OEMB1737 20100713 MSFT 00000097)
[    0.074309] ACPI: HPET 0x00000000BDDAA5C0 000038 (v01 071310 OEMHPET  20100713 MSFT 00000097)
[    0.074314] ACPI: GSCI 0x00000000BDDAE0C0 002024 (v01 071310 GMCHSCI  20100713 MSFT 00000097)
[    0.074319] ACPI: SSDT 0x00000000BDDB0A20 000363 (v01 DpgPmm CpuPm    00000012 INTL 20051117)
[    0.074323] ACPI: Reserving FACP table memory at [mem 0xbdda0290-0xbdda0383]
[    0.074326] ACPI: Reserving DSDT table memory at [mem 0xbdda05c0-0xbdda5bea]
[    0.074328] ACPI: Reserving FACS table memory at [mem 0xbddae000-0xbddae03f]
[    0.074330] ACPI: Reserving FACS table memory at [mem 0xbddae000-0xbddae03f]
[    0.074331] ACPI: Reserving APIC table memory at [mem 0xbdda0390-0xbdda03fb]
[    0.074332] ACPI: Reserving MCFG table memory at [mem 0xbdda0400-0xbdda043b]
[    0.074334] ACPI: Reserving SLIC table memory at [mem 0xbdda0440-0xbdda05b5]
[    0.074336] ACPI: Reserving OEMB table memory at [mem 0xbddae040-0xbddae0b1]
[    0.074337] ACPI: Reserving HPET table memory at [mem 0xbddaa5c0-0xbddaa5f7]
[    0.074339] ACPI: Reserving GSCI table memory at [mem 0xbddae0c0-0xbddb00e3]
[    0.074340] ACPI: Reserving SSDT table memory at [mem 0xbddb0a20-0xbddb0d82]
[    0.074425] No NUMA configuration found
[    0.074426] Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
[    0.074439] NODE_DATA(0) allocated [mem 0x13b7fc000-0x13b7fffff]
[    0.074487] Zone ranges:
[    0.074488]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.074491]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.074493]   Normal   [mem 0x0000000100000000-0x000000013fffffff]
[    0.074495] Movable zone start for each node
[    0.074497] Early memory node ranges
[    0.074498]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.074500]   node   0: [mem 0x0000000000100000-0x00000000bdd9ffff]
[    0.074502]   node   0: [mem 0x0000000100000000-0x000000013fffffff]
[    0.074504] Initmem setup node 0 [mem 0x0000000000001000-0x000000013fffffff]
[    0.074515] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.074656] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.113548] On node 0, zone Normal: 8800 pages in unavailable ranges
[    0.113563] Reserving Intel graphics memory at [mem 0xbe000000-0xbfffffff]
[    0.113711] ACPI: PM-Timer IO Port: 0x808
[    0.113737] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.113743] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.113747] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.113752] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.113754] ACPI: HPET id: 0xffffffff base: 0xfed00000
[    0.113771] smpboot: Allowing 4 CPUs, 2 hotplug CPUs
[    0.113795] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.113799] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.113801] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.113802] PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.113805] PM: hibernation: Registered nosave memory: [mem 0xbdda0000-0xbddadfff]
[    0.113806] PM: hibernation: Registered nosave memory: [mem 0xbddae000-0xbddeffff]
[    0.113807] PM: hibernation: Registered nosave memory: [mem 0xbddf0000-0xbfffffff]
[    0.113809] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xfedfffff]
[    0.113810] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.113811] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffefffff]
[    0.113813] PM: hibernation: Registered nosave memory: [mem 0xfff00000-0xffffffff]
[    0.113815] [mem 0xc0000000-0xfedfffff] available for PCI devices
[    0.113817] Booting paravirtualized kernel on bare hardware
[    0.113823] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.119633] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:4 nr_node_ids:1
[    0.120338] percpu: Embedded 55 pages/cpu s185688 r8192 d31400 u524288
[    0.120372] pcpu-alloc: s185688 r8192 d31400 u524288 alloc=1*2097152
[    0.120377] pcpu-alloc: [0] 0 1 2 3 
[    0.120448] Built 1 zonelists, mobility grouping on.  Total pages: 1023273
[    0.120454] Policy zone: Normal
[    0.120457] Kernel command line: BOOT_IMAGE=vmlinuz-lts root=UUID=3b6146fd-13d3-4c7d-b249-8f4c52e5ac82 modules= quiet log_buf_len=16M booster.debug console=tty1 rootflags=rw,noatime,compress=lzo,ssd,discard,space_cache rd.luks.name=d6990c4f-c9f0-4caf-a651-00511a66567f=root rd.luks.options=discard rootfstype=btrfs initrd=intel-ucode.img,initramfs-lts
[    0.120643] Unknown kernel command line parameters "BOOT_IMAGE=vmlinuz-lts modules=", will be passed to user space.
[    0.122163] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.122954] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.123832] mem auto-init: stack:byref(zero), heap alloc:on, heap free:off
[    0.226695] Memory: 3898872K/4158712K available (12295K kernel code, 1311K rwdata, 3376K rodata, 2220K init, 7328K bss, 259580K reserved, 0K cma-reserved)
[    0.227830] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.227834] kmemleak: Kernel memory leak detector disabled
[    0.227849] Kernel/User page tables isolation: enabled
[    0.227882] ftrace: allocating 34923 entries in 137 pages
[    0.249536] ftrace: allocated 137 pages with 3 groups
[    0.249829] rcu: Hierarchical RCU implementation.
[    0.249831] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
[    0.249833] 	Rude variant of Tasks RCU enabled.
[    0.249834] 	Tracing variant of Tasks RCU enabled.
[    0.249836] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    0.249837] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.257101] NR_IRQS: 16640, nr_irqs: 456, preallocated irqs: 16
[    0.257441] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[    0.258412] Console: colour VGA+ 80x25
[    0.258428] printk: console [tty1] enabled
[    0.258461] ACPI: Core revision 20210730
[    0.258563] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.258581] APIC: Switch to symmetric I/O mode setup
[    0.258948] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.275248] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x25614b0ab57, max_idle_ns: 440795249024 ns
[    0.275255] Calibrating delay loop (skipped), value calculated using timer frequency.. 5188.58 BogoMIPS (lpj=8644136)
[    0.275258] pid_max: default: 32768 minimum: 301
[    0.275308] LSM: Security Framework initializing
[    0.275318] landlock: Up and running.
[    0.275319] Yama: becoming mindful.
[    0.275394] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.275423] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.275859] CPU0: Thermal monitoring enabled (TM2)
[    0.275874] process: using mwait in idle threads
[    0.275878] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
[    0.275880] Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
[    0.275886] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.275889] Spectre V2 : Mitigation: Retpolines
[    0.275890] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.275892] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    0.275893] Speculative Store Bypass: Vulnerable
[    0.275897] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[    0.275899] MMIO Stale Data: Unknown: No mitigations
[    0.289270] Freeing SMP alternatives memory: 32K
[    0.400974] smpboot: CPU0: Intel Pentium(R) Dual-Core  CPU      E5300  @ 2.60GHz (family: 0x6, model: 0x17, stepping: 0xa)
[    0.401330] Performance Events: PEBS fmt0+, Core2 events, 4-deep LBR, Intel PMU driver.
[    0.401342] ... version:                2
[    0.401343] ... bit width:              40
[    0.401344] ... generic registers:      2
[    0.401345] ... value mask:             000000ffffffffff
[    0.401346] ... max period:             000000007fffffff
[    0.401347] ... fixed-purpose events:   3
[    0.401348] ... event mask:             0000000700000003
[    0.401491] rcu: Hierarchical SRCU implementation.
[    0.401919] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.401919] smp: Bringing up secondary CPUs ...
[    0.401919] x86: Booting SMP configuration:
[    0.401919] .... node  #0, CPUs:      #1
[    0.408670] smp: Brought up 1 node, 2 CPUs
[    0.408670] smpboot: Max logical packages: 2
[    0.408670] ----------------
[    0.408670] | NMI testsuite:
[    0.408670] --------------------
[    0.408670]   remote IPI:  ok  |
[    0.408670]    local IPI:  ok  |
[    0.408670] --------------------
[    0.408670] Good, all   2 testcases passed! |
[    0.408670] ---------------------------------
[    0.408670] smpboot: Total of 2 processors activated (10377.17 BogoMIPS)
[    0.410242] devtmpfs: initialized
[    0.410242] ACPI: PM: Registering ACPI NVS region [mem 0xbddae000-0xbddeffff] (270336 bytes)
[    0.410242] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.410242] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.410242] pinctrl core: initialized pinctrl subsystem
[    0.410242] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.410242] audit: initializing netlink subsys (disabled)
[    0.410242] audit: type=2000 audit(1666637781.149:1): state=initialized audit_enabled=0 res=1
[    0.412072] thermal_sys: Registered thermal governor 'fair_share'
[    0.412074] thermal_sys: Registered thermal governor 'bang_bang'
[    0.412076] thermal_sys: Registered thermal governor 'step_wise'
[    0.412077] thermal_sys: Registered thermal governor 'user_space'
[    0.412092] cpuidle: using governor ladder
[    0.412097] cpuidle: using governor menu
[    0.412168] ACPI: bus type PCI registered
[    0.412171] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.412279] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.412286] PCI: not using MMCONFIG
[    0.412291] PCI: Using configuration type 1 for base access
[    0.413729] Kprobes globally optimized
[    0.413865] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.414018] ACPI: Added _OSI(Module Device)
[    0.414018] ACPI: Added _OSI(Processor Device)
[    0.414018] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.414018] ACPI: Added _OSI(Processor Aggregator Device)
[    0.414018] ACPI: Added _OSI(Linux-Dell-Video)
[    0.414018] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.414018] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.418321] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    0.419182] ACPI: Dynamic OEM Table Load:
[    0.419191] ACPI: SSDT 0xFFFF90990034F800 000406 (v01 DpgPmm P001Ist  00000011 INTL 20051117)
[    0.419638] ACPI: Dynamic OEM Table Load:
[    0.419644] ACPI: SSDT 0xFFFF90990034C000 000513 (v01 PmRef  P001Cst  00003001 INTL 20051117)
[    0.420612] ACPI: Interpreter enabled
[    0.420633] ACPI: PM: (supports S0 S3 S4 S5)
[    0.420635] ACPI: Using IOAPIC for interrupt routing
[    0.420669] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.421991] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[    0.422004] pmd_set_huge: Cannot satisfy [mem 0xe0000000-0xe0200000] with a huge-page mapping due to MTRR override.
[    0.422444] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.422796] ACPI: Enabled 12 GPEs in block 00 to 1F
[    0.429835] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.429844] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.430002] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR]
[    0.430150] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.430396] PCI host bridge to bus 0000:00
[    0.430398] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.430401] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.430403] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.430405] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff window]
[    0.430407] pci_bus 0000:00: root bus resource [mem 0xbde00000-0xdfffffff window]
[    0.430409] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xffffffff window]
[    0.430411] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.430453] pci 0000:00:00.0: [8086:2e30] type 00 class 0x060000
[    0.430477] pci 0000:00:00.0: DMAR: Disabling IOMMU for graphics on this chipset
[    0.430479] pci 0000:00:00.0: DMAR: Forcing write-buffer flush capability
[    0.430632] pci 0000:00:02.0: [8086:2e32] type 00 class 0x030000
[    0.430642] pci 0000:00:02.0: reg 0x10: [mem 0xfe400000-0xfe7fffff 64bit]
[    0.430649] pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.430654] pci 0000:00:02.0: reg 0x20: [io  0xdc00-0xdc07]
[    0.430668] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.430784] pci 0000:00:02.1: [8086:2e33] type 00 class 0x038000
[    0.430794] pci 0000:00:02.1: reg 0x10: [mem 0xfe900000-0xfe9fffff 64bit]
[    0.430950] pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300
[    0.430967] pci 0000:00:1b.0: reg 0x10: [mem 0xfeaf8000-0xfeafbfff 64bit]
[    0.431037] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.431193] pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400
[    0.431263] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.431422] pci 0000:00:1c.1: [8086:27d2] type 01 class 0x060400
[    0.431497] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.431652] pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300
[    0.431690] pci 0000:00:1d.0: reg 0x20: [io  0xd880-0xd89f]
[    0.431849] pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300
[    0.431887] pci 0000:00:1d.1: reg 0x20: [io  0xd800-0xd81f]
[    0.432065] pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300
[    0.432104] pci 0000:00:1d.2: reg 0x20: [io  0xd480-0xd49f]
[    0.432256] pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300
[    0.432294] pci 0000:00:1d.3: reg 0x20: [io  0xd400-0xd41f]
[    0.432460] pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320
[    0.432476] pci 0000:00:1d.7: reg 0x10: [mem 0xfeaf7c00-0xfeaf7fff]
[    0.432549] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.432692] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[    0.432873] pci 0000:00:1f.0: [8086:27b8] type 00 class 0x060100
[    0.432947] pci 0000:00:1f.0: quirk: [io  0x0800-0x087f] claimed by ICH6 ACPI/GPIO/TCO
[    0.432952] pci 0000:00:1f.0: quirk: [io  0x0480-0x04bf] claimed by ICH6 GPIO
[    0.432955] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0a00 (mask 00ff)
[    0.433117] pci 0000:00:1f.1: [8086:27df] type 00 class 0x01018a
[    0.433131] pci 0000:00:1f.1: reg 0x10: [io  0x0000-0x0007]
[    0.433140] pci 0000:00:1f.1: reg 0x14: [io  0x0000-0x0003]
[    0.433148] pci 0000:00:1f.1: reg 0x18: [io  0x08f0-0x08f7]
[    0.433157] pci 0000:00:1f.1: reg 0x1c: [io  0x08f8-0x08fb]
[    0.433165] pci 0000:00:1f.1: reg 0x20: [io  0xffa0-0xffaf]
[    0.433182] pci 0000:00:1f.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    0.433184] pci 0000:00:1f.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    0.433185] pci 0000:00:1f.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    0.433187] pci 0000:00:1f.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    0.433339] pci 0000:00:1f.2: [8086:27c0] type 00 class 0x01018f
[    0.433352] pci 0000:00:1f.2: reg 0x10: [io  0xd080-0xd087]
[    0.433360] pci 0000:00:1f.2: reg 0x14: [io  0xd000-0xd003]
[    0.433367] pci 0000:00:1f.2: reg 0x18: [io  0xcc00-0xcc07]
[    0.433374] pci 0000:00:1f.2: reg 0x1c: [io  0xc880-0xc883]
[    0.433381] pci 0000:00:1f.2: reg 0x20: [io  0xc800-0xc80f]
[    0.433414] pci 0000:00:1f.2: PME# supported from D3hot
[    0.433530] pci 0000:00:1f.3: [8086:27da] type 00 class 0x0c0500
[    0.433580] pci 0000:00:1f.3: reg 0x20: [io  0x0400-0x041f]
[    0.433724] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.433794] pci 0000:02:00.0: [11ab:4380] type 00 class 0x020000
[    0.433820] pci 0000:02:00.0: reg 0x10: [mem 0xfebfc000-0xfebfffff 64bit]
[    0.433832] pci 0000:02:00.0: reg 0x18: [io  0xe800-0xe8ff]
[    0.433872] pci 0000:02:00.0: reg 0x30: [mem 0xfebc0000-0xfebdffff pref]
[    0.433940] pci 0000:02:00.0: supports D1 D2
[    0.433942] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.434056] pci 0000:00:1c.1: PCI bridge to [bus 02]
[    0.434060] pci 0000:00:1c.1:   bridge window [io  0xe000-0xefff]
[    0.434063] pci 0000:00:1c.1:   bridge window [mem 0xfeb00000-0xfebfffff]
[    0.434083] pci_bus 0000:03: extended config space not accessible
[    0.434133] pci 0000:00:1e.0: PCI bridge to [bus 03] (subtractive decode)
[    0.434142] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    0.434144] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    0.434146] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    0.434148] pci 0000:00:1e.0:   bridge window [mem 0x000d0000-0x000dffff window] (subtractive decode)
[    0.434150] pci 0000:00:1e.0:   bridge window [mem 0xbde00000-0xdfffffff window] (subtractive decode)
[    0.434152] pci 0000:00:1e.0:   bridge window [mem 0xf0000000-0xffffffff window] (subtractive decode)
[    0.435190] ACPI: PCI: Interrupt link LNKA configured for IRQ 10
[    0.435247] ACPI: PCI: Interrupt link LNKB configured for IRQ 11
[    0.435308] ACPI: PCI: Interrupt link LNKC configured for IRQ 4
[    0.435363] ACPI: PCI: Interrupt link LNKD configured for IRQ 3
[    0.435418] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.435420] ACPI: PCI: Interrupt link LNKE disabled
[    0.435474] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.435476] ACPI: PCI: Interrupt link LNKF disabled
[    0.435530] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.435532] ACPI: PCI: Interrupt link LNKG disabled
[    0.435586] ACPI: PCI: Interrupt link LNKH configured for IRQ 5
[    0.435745] iommu: Default domain type: Translated 
[    0.435747] iommu: DMA domain TLB invalidation policy: lazy mode 
[    0.435767] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.435767] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.435767] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.435767] vgaarb: loaded
[    0.435767] pps_core: LinuxPPS API ver. 1 registered
[    0.435767] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.435767] PTP clock support registered
[    0.435767] EDAC MC: Ver: 3.0.0
[    0.435767] PCI: Using ACPI for IRQ routing
[    0.441956] PCI: pci_cache_line_size set to 64 bytes
[    0.441997] Expanded resource Reserved due to conflict with PCI Bus 0000:00
[    0.441999] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.442002] e820: reserve RAM buffer [mem 0xbdda0000-0xbfffffff]
[    0.443686] hpet: 3 channels of 0 reserved for per-cpu timers
[    0.443693] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.443698] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.445339] clocksource: Switched to clocksource tsc-early
[    0.462185] VFS: Disk quotas dquot_6.6.0
[    0.462229] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.462309] pnp: PnP ACPI init
[    0.462432] system 00:00: [mem 0xfed14000-0xfed19fff] has been reserved
[    0.462437] system 00:00: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.462760] system 00:02: [io  0x0a00-0x0a0f] has been reserved
[    0.462763] system 00:02: [io  0x0a10-0x0a1f] has been reserved
[    0.462766] system 00:02: [io  0x0a20-0x0a2f] has been reserved
[    0.462768] system 00:02: [io  0x0a30-0x0a3f] has been reserved
[    0.462890] system 00:03: [io  0x04d0-0x04d1] has been reserved
[    0.462893] system 00:03: [io  0x0800-0x087f] has been reserved
[    0.462895] system 00:03: [io  0x0480-0x04bf] has been reserved
[    0.462898] system 00:03: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.462901] system 00:03: [mem 0xfed20000-0xfed8ffff] has been reserved
[    0.463012] system 00:04: [mem 0xffc00000-0xffefffff] has been reserved
[    0.463124] system 00:05: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.463128] system 00:05: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.463726] system 00:06: [mem 0xe0000000-0xefffffff] has been reserved
[    0.463880] pnp 00:07: disabling [mem 0x000c0000-0x000cffff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
[    0.463908] system 00:07: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.463911] system 00:07: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.463913] system 00:07: [mem 0x00100000-0xbddfffff] could not be reserved
[    0.464048] pnp: PnP ACPI: found 8 devices
[    0.470424] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.470518] NET: Registered PF_INET protocol family
[    0.470718] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.471981] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[    0.472097] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.472210] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.472475] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[    0.472547] TCP: Hash tables configured (established 32768 bind 32768)
[    0.472671] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    0.472711] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    0.472800] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.472815] NET: Registered PF_XDP protocol family
[    0.472829] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    0.472836] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    0.472840] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    0.472844] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
[    0.472866] pci 0000:00:1c.0: BAR 14: assigned [mem 0xc0000000-0xc01fffff]
[    0.472873] pci 0000:00:1c.0: BAR 15: assigned [mem 0xc0200000-0xc03fffff 64bit pref]
[    0.472878] pci 0000:00:1c.1: BAR 15: assigned [mem 0xc0400000-0xc05fffff 64bit pref]
[    0.472882] pci 0000:00:1c.0: BAR 13: assigned [io  0x1000-0x1fff]
[    0.472887] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.472891] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
[    0.472895] pci 0000:00:1c.0:   bridge window [mem 0xc0000000-0xc01fffff]
[    0.472899] pci 0000:00:1c.0:   bridge window [mem 0xc0200000-0xc03fffff 64bit pref]
[    0.472904] pci 0000:00:1c.1: PCI bridge to [bus 02]
[    0.472907] pci 0000:00:1c.1:   bridge window [io  0xe000-0xefff]
[    0.472911] pci 0000:00:1c.1:   bridge window [mem 0xfeb00000-0xfebfffff]
[    0.472914] pci 0000:00:1c.1:   bridge window [mem 0xc0400000-0xc05fffff 64bit pref]
[    0.472920] pci 0000:00:1e.0: PCI bridge to [bus 03]
[    0.472929] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.472931] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.472933] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.472935] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff window]
[    0.472937] pci_bus 0000:00: resource 8 [mem 0xbde00000-0xdfffffff window]
[    0.472939] pci_bus 0000:00: resource 9 [mem 0xf0000000-0xffffffff window]
[    0.472941] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    0.472943] pci_bus 0000:01: resource 1 [mem 0xc0000000-0xc01fffff]
[    0.472945] pci_bus 0000:01: resource 2 [mem 0xc0200000-0xc03fffff 64bit pref]
[    0.472947] pci_bus 0000:02: resource 0 [io  0xe000-0xefff]
[    0.472949] pci_bus 0000:02: resource 1 [mem 0xfeb00000-0xfebfffff]
[    0.472951] pci_bus 0000:02: resource 2 [mem 0xc0400000-0xc05fffff 64bit pref]
[    0.472953] pci_bus 0000:03: resource 4 [io  0x0000-0x0cf7 window]
[    0.472955] pci_bus 0000:03: resource 5 [io  0x0d00-0xffff window]
[    0.472957] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.472958] pci_bus 0000:03: resource 7 [mem 0x000d0000-0x000dffff window]
[    0.472960] pci_bus 0000:03: resource 8 [mem 0xbde00000-0xdfffffff window]
[    0.472962] pci_bus 0000:03: resource 9 [mem 0xf0000000-0xffffffff window]
[    0.473740] PCI: CLS 32 bytes, default 64
[    0.473757] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.473759] software IO TLB: mapped [mem 0x00000000b9da0000-0x00000000bdda0000] (64MB)
[    0.473893] Trying to unpack rootfs image as initramfs...
[    0.474404] Initialise system trusted keyrings
[    0.478298] workingset: timestamp_bits=40 max_order=20 bucket_order=0
[    0.479842] zbud: loaded
[    0.480009] Key type asymmetric registered
[    0.480012] Asymmetric key parser 'x509' registered
[    0.480062] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    0.480345] io scheduler mq-deadline registered
[    0.480348] io scheduler kyber registered
[    0.480391] io scheduler bfq registered
[    0.480740] pcieport 0000:00:1c.0: enabling device (0104 -> 0107)
[    0.480953] pcieport 0000:00:1c.0: PME: Signaling with IRQ 24
[    0.480988] pcieport 0000:00:1c.0: pciehp: Slot #32 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    0.481311] pcieport 0000:00:1c.1: PME: Signaling with IRQ 25
[    0.481343] pcieport 0000:00:1c.1: pciehp: Slot #33 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
[    0.481717] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.481830] Monitor-Mwait will be used to enter C-1 state
[    0.481842] Monitor-Mwait will be used to enter C-2 state
[    0.481850] Monitor-Mwait will be used to enter C-3 state
[    0.481855] ACPI: \_PR_.P001: Found 3 idle states
[    0.483555] ERST DBG: ERST support is disabled.
[    0.483819] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.487280] brd: module loaded
[    0.487431] i8042: PNP: No PS/2 controller found.
[    0.487433] i8042: Probing ports directly.
[    0.489018] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.489027] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.489270] rtc_cmos 00:01: RTC can wake from S4
[    0.489740] rtc_cmos 00:01: registered as rtc0
[    0.489768] rtc_cmos 00:01: setting system clock to 2022-10-24T18:56:21 UTC (1666637781)
[    0.489824] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.489946] intel_pstate: CPU model not supported
[    0.490137] ashmem: initialized
[    0.490393] gre: GRE over IPv4 demultiplexor driver
[    0.490396] can: controller area network core
[    0.490423] NET: Registered PF_CAN protocol family
[    0.490488] Key type dns_resolver registered
[    0.491019] microcode: sig=0x1067a, pf=0x1, revision=0xa0b
[    0.491103] microcode: Microcode Update Driver: v2.2.
[    0.491111] IPI shorthand broadcast: enabled
[    0.491126] sched_clock: Marking stable (487525949, 1260152)->(498388914, -9602813)
[    0.491301] registered taskstats version 1
[    0.491308] Loading compiled-in X.509 certificates
[    0.491744] zswap: loaded using pool lzo/zbud
[    0.495867] Key type ._fscrypt registered
[    0.495873] Key type .fscrypt registered
[    0.495874] Key type fscrypt-provisioning registered
[    0.590100] Freeing initrd memory: 11420K
[    0.593862] Freeing unused kernel image (initmem) memory: 2220K
[    0.612193] Write protecting the kernel read-only data: 18432k
[    0.613287] Freeing unused kernel image (text/rodata gap) memory: 2040K
[    0.613731] Freeing unused kernel image (rodata/data gap) memory: 720K
[    0.613793] Run /init as init process
[    0.613795]   with arguments:
[    0.613796]     /init
[    0.613797]   with environment:
[    0.613798]     HOME=/
[    0.613799]     TERM=linux
[    0.613799]     BOOT_IMAGE=vmlinuz-lts
[    0.613800]     modules=
[    0.620086] booster: loading font file /console/font
[    0.625321] booster: loading keymap file /console/keymap
[    0.648437] booster: found a new device /dev/ram9
[    0.648879] booster: symlink /dev/ram9 /dev/disk/by-path/: file exists
[    0.648975] booster: found a new device /dev/ram0
[    0.649220] booster: symlink /dev/ram0 /dev/disk/by-path/: file exists
[    0.649313] booster: found a new device /dev/ram1
[    0.649547] booster: symlink /dev/ram1 /dev/disk/by-path/: file exists
[    0.649636] booster: found a new device /dev/ram10
[    0.649868] booster: symlink /dev/ram10 /dev/disk/by-path/: file exists
[    0.649958] booster: found a new device /dev/ram11
[    0.650193] booster: symlink /dev/ram11 /dev/disk/by-path/: file exists
[    0.650281] booster: found a new device /dev/ram12
[    0.650513] booster: symlink /dev/ram12 /dev/disk/by-path/: file exists
[    0.650603] booster: found a new device /dev/ram13
[    0.650838] booster: symlink /dev/ram13 /dev/disk/by-path/: file exists
[    0.650926] booster: found a new device /dev/ram14
[    0.651159] booster: symlink /dev/ram14 /dev/disk/by-path/: file exists
[    0.651254] booster: found a new device /dev/ram15
[    0.651504] booster: symlink /dev/ram15 /dev/disk/by-path/: file exists
[    0.651599] booster: found a new device /dev/ram2
[    0.651849] booster: symlink /dev/ram2 /dev/disk/by-path/: file exists
[    0.651937] booster: found a new device /dev/ram3
[    0.652185] booster: symlink /dev/ram3 /dev/disk/by-path/: file exists
[    0.652274] booster: found a new device /dev/ram4
[    0.652510] booster: symlink /dev/ram4 /dev/disk/by-path/: file exists
[    0.652600] booster: found a new device /dev/ram5
[    0.652842] booster: symlink /dev/ram5 /dev/disk/by-path/: file exists
[    0.652935] booster: found a new device /dev/ram6
[    0.653170] booster: symlink /dev/ram6 /dev/disk/by-path/: file exists
[    0.653258] booster: found a new device /dev/ram7
[    0.653492] booster: symlink /dev/ram7 /dev/disk/by-path/: file exists
[    0.653580] booster: found a new device /dev/ram8
[    0.653813] booster: symlink /dev/ram8 /dev/disk/by-path/: file exists
[    0.653916] booster: no match found for alias acpi:PNP0000:
[    0.654003] booster: no match found for alias acpi:LNXCPU:
[    0.654092] booster: no match found for alias acpi:LNXPWRBN:
[    0.654177] booster: no match found for alias acpi:PNP0C01:
[    0.654261] booster: no match found for alias acpi:PNP0C02:
[    0.654346] booster: no match found for alias acpi:INT0800:
[    0.654433] booster: no match found for alias acpi:PNP0B00:
[    0.654516] booster: no match found for alias acpi:PNP0100:
[    0.654603] booster: no match found for alias acpi:PNP0103:
[    0.654687] booster: no match found for alias acpi:PNP0200:
[    0.654771] booster: no match found for alias acpi:PNP0800:
[    0.655496] booster: no match found for alias acpi:PNP0C04:
[    0.657540] booster: no match found for alias acpi:PNP0A08:PNP0A03:
[    0.658847] booster: no match found for alias acpi:PNP0C0C:
[    0.658938] booster: no match found for alias acpi:PNP0C0F:
[    0.662189] booster: no match found for alias acpi:LNXSYBUS:
[    0.662230] booster: no match found for alias pci:v00008086d00002E33sv00001297sd00004001bc03sc80i00
[    0.662263] booster: no match found for alias acpi:LNXSYSTM:
[    0.662292] booster: no match found for alias pci:v00008086d00002E30sv00001297sd00004001bc06sc00i00
[    0.662320] booster: no match found for alias pci:v00008086d00002E32sv00001297sd00004001bc03sc00i00
[    0.662623] booster: no match found for alias pci:v00008086d000027D8sv00001297sd00004001bc04sc03i00
[    0.665510] booster: no match found for alias pci:v000011ABd00004380sv00001297sd00004001bc02sc00i00
[    0.665618] booster: no match found for alias pci:v00008086d000027D0sv00001297sd00004001bc06sc04i00
[    0.665721] booster: no match found for alias pci:v00008086d000027D2sv00001297sd00004001bc06sc04i00
[    0.665826] booster: modalias pci:v00008086d000027C8sv00001297sd00004001bc0Csc03i00 matched module uhci_hcd
[    0.665972] booster: loading module usb_common
[    0.666428] booster: loading module usbcore
[    0.675580] ACPI: bus type USB registered
[    0.675652] booster: udev event {Action:add KObj:/module/usb_common Env:map[ACTION:add DEVPATH:/module/usb_common SEQNUM:613 SUBSYSTEM:module]}
[    0.675737] usbcore: registered new interface driver usbfs
[    0.675776] usbcore: registered new interface driver hub
[    0.675800] usbcore: registered new device driver usb
[    0.675853] booster: udev event {Action:add KObj:/bus/usb Env:map[ACTION:add DEVPATH:/bus/usb SEQNUM:614 SUBSYSTEM:bus]}
[    0.675943] booster: loading module ehci_hcd
[    0.675972] booster: modalias pci:v00008086d000027DFsv00001297sd00004001bc01sc01i8A matched module ata_generic
[    0.676018] booster: modalias pci:v00008086d000027C9sv00001297sd00004001bc0Csc03i00 matched module uhci_hcd
[    0.676052] booster: modalias pci:v00008086d000027CAsv00001297sd00004001bc0Csc03i00 matched module uhci_hcd
[    0.676081] booster: no match found for alias platform:alarmtimer
[    0.676097] booster: udev event {Action:add KObj:/bus/usb/drivers/usbfs Env:map[ACTION:add DEVPATH:/bus/usb/drivers/usbfs SEQNUM:615 SUBSYSTEM:drivers]}
[    0.676131] booster: modalias pci:v00008086d000027CCsv00001297sd00004001bc0Csc03i20 matched module ehci_pci
[    0.676163] booster: no match found for alias pci:v00008086d0000244Esv00001297sd00004001bc06sc04i01
[    0.676197] booster: no match found for alias pci:v00008086d000027B8sv00001297sd00004001bc06sc01i00
[    0.676216] booster: modalias serio:ty01pr00id00ex00 matched module serio_raw
[    0.676235] booster: modalias pci:v00008086d000027C0sv00001297sd00004001bc01sc01i8F matched module ata_generic
[    0.676261] booster: no match found for alias pci:v00008086d000027DAsv00001297sd00004001bc0Csc05i00
[    0.676274] booster: modalias pci:v00008086d000027DFsv00001297sd00004001bc01sc01i8A matched module ata_generic
[    0.676280] booster: no match found for alias platform:i8042
[    0.676297] booster: modalias serio:ty06pr00id00ex00 matched module serio_raw
[    0.676313] booster: no match found for alias platform:platform-framebuffer
[    0.676329] booster: no match found for alias platform:microcode
[    0.676345] booster: no match found for alias platform:pcspkr
[    0.676361] booster: no match found for alias platform:serial8250
[    0.676376] booster: no match found for alias platform:reg-dummy
[    0.676384] booster: modalias pci:v00008086d000027DFsv00001297sd00004001bc01sc01i8A matched module pata_acpi
[    0.676389] booster: modalias pci:v00008086d000027CBsv00001297sd00004001bc0Csc03i00 matched module uhci_hcd
[    0.676608] booster: udev event {Action:add KObj:/bus/usb/drivers/hub Env:map[ACTION:add DEVPATH:/bus/usb/drivers/hub SEQNUM:616 SUBSYSTEM:drivers]}
[    0.678010] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.678130] booster: loading module ehci_pci
[    0.678375] ehci-pci: EHCI PCI platform driver
[    0.678564] ehci-pci 0000:00:1d.7: EHCI Host Controller
[    0.678574] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    0.678587] ehci-pci 0000:00:1d.7: debug port 1
[    0.678888] booster: udev event {Action:add KObj:/bus/usb/drivers/usb Env:map[ACTION:add DEVPATH:/bus/usb/drivers/usb SEQNUM:617 SUBSYSTEM:drivers]}
[    0.679061] booster: udev event {Action:add KObj:/module/usbcore Env:map[ACTION:add DEVPATH:/module/usbcore SEQNUM:618 SUBSYSTEM:module]}
[    0.679460] booster: loading module serio_raw
[    0.680281] booster: modalias pci:v00008086d000027DFsv00001297sd00004001bc01sc01i8A matched module ata_piix
[    0.680908] booster: udev event {Action:add KObj:/module/ehci_hcd Env:map[ACTION:add DEVPATH:/module/ehci_hcd SEQNUM:619 SUBSYSTEM:module]}
[    0.681075] booster: udev event {Action:add KObj:/bus/serio/drivers/serio_raw Env:map[ACTION:add DEVPATH:/bus/serio/drivers/serio_raw SEQNUM:620 SUBSYSTEM:drivers]}
[    0.682321] booster: modalias pci:v00008086d000027C0sv00001297sd00004001bc01sc01i8F matched module ata_generic
[    0.682472] booster: modalias pci:v00008086d000027C0sv00001297sd00004001bc01sc01i8F matched module pata_acpi
[    0.682549] ehci-pci 0000:00:1d.7: irq 23, io mem 0xfeaf7c00
[    0.682603] booster: modalias pci:v00008086d000027C0sv00001297sd00004001bc01sc01i8F matched module ata_piix
[    0.685535] booster: udev event {Action:add KObj:/module/serio_raw Env:map[ACTION:add DEVPATH:/module/serio_raw SEQNUM:621 SUBSYSTEM:module]}
[    0.685972] booster: loading module scsi_mod
[    0.690651] SCSI subsystem initialized
[    0.690760] booster: udev event {Action:add KObj:/class/scsi_host Env:map[ACTION:add DEVPATH:/class/scsi_host SEQNUM:622 SUBSYSTEM:class]}
[    0.690929] booster: loading module libata
[    0.695645] booster: udev event {Action:add KObj:/bus/scsi Env:map[ACTION:add DEVPATH:/bus/scsi SEQNUM:623 SUBSYSTEM:bus]}
[    0.695792] booster: udev event {Action:add KObj:/class/scsi_device Env:map[ACTION:add DEVPATH:/class/scsi_device SEQNUM:624 SUBSYSTEM:class]}
[    0.696006] booster: no match found for alias cpu:type:x86,ven0000fam0006mod0017:feature:,0000,0001,0002,0003,0004,0005,0006,0007,0008,0009,000B,000C,000D,000E,000F,0010,0011,0013,0015,0016,0017,0018,0019,001A,001C,001D,001F,002B,0034,003D,0068,006B,006C,006D,006F,0070,0072,0074,0075,0079,007C,0080,0082,0083,0084,0085,0087,0088,0089,008D,008E,008F,009A,009B,00C0,00EB,00ED,00F3,00FD,00FF,0100,0101,0102,0104,0165,016C,01C0
[    0.698828] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    0.698876] booster: udev event {Action:add KObj:/module/scsi_mod Env:map[ACTION:add DEVPATH:/module/scsi_mod SEQNUM:625 SUBSYSTEM:module]}
[    0.698896] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[    0.698899] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.698902] usb usb1: Product: EHCI Host Controller
[    0.698903] usb usb1: Manufacturer: Linux 5.15.74-0-lts ehci_hcd
[    0.698904] usb usb1: SerialNumber: 0000:00:1d.7
[    0.699247] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.7/usb1 Env:map[ACTION:add BUSNUM:001 DEVNAME:bus/usb/001/001 DEVNUM:001 DEVPATH:/devices/pci0000:00/0000:00:1d.7/usb1 DEVTYPE:usb_device MAJOR:189 MINOR:0 PRODUCT:1d6b/2/515 SEQNUM:626 SUBSYSTEM:usb TYPE:9/0/0]}
[    0.699497] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.7/usb1/1-0:1.0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1d.7/usb1/1-0:1.0 DEVTYPE:usb_interface INTERFACE:9/0/0 MODALIAS:usb:v1D6Bp0002d0515dc09dsc00dp00ic09isc00ip00in00 PRODUCT:1d6b/2/515 SEQNUM:627 SUBSYSTEM:usb TYPE:9/0/0]}
[    0.699732] booster: modalias usb:v1D6Bp0002d0515dc09dsc00dp00ic09isc00ip00in00 matched module usbcore
[    0.699842] booster: modalias usb:v1D6Bp0002d0515dc09dsc00dp00ic09isc00ip00in00 matched module usbcore
[    0.700007] hub 1-0:1.0: USB hub found
[    0.700019] hub 1-0:1.0: 8 ports detected
[    0.702188] libata version 3.00 loaded.
[    0.702299] booster: loading module ata_piix
[    0.702699] booster: loading module uhci_hcd
[    0.702969] ata_piix 0000:00:1f.1: version 2.13
[    0.703352] uhci_hcd: USB Universal Host Controller Interface driver
[    0.704969] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    0.704980] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    0.705006] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000d880
[    0.705075] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15
[    0.705079] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.705081] usb usb2: Product: UHCI Host Controller
[    0.705083] usb usb2: Manufacturer: Linux 5.15.74-0-lts uhci_hcd
[    0.705084] usb usb2: SerialNumber: 0000:00:1d.0
[    0.705650] hub 2-0:1.0: USB hub found
[    0.705666] hub 2-0:1.0: 2 ports detected
[    0.706100] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    0.706108] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[    0.706149] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000d800
[    0.706203] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15
[    0.706206] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.706209] usb usb3: Product: UHCI Host Controller
[    0.706211] usb usb3: Manufacturer: Linux 5.15.74-0-lts uhci_hcd
[    0.706212] usb usb3: SerialNumber: 0000:00:1d.1
[    0.708399] booster: loading module ata_generic
[    0.708421] scsi host0: ata_piix
[    0.708660] hub 3-0:1.0: USB hub found
[    0.708672] hub 3-0:1.0: 2 ports detected
[    0.708835] booster: udev event {Action:add KObj:/class/ata_link Env:map[ACTION:add DEVPATH:/class/ata_link SEQNUM:628 SUBSYSTEM:class]}
[    0.709001] booster: udev event {Action:add KObj:/class/ata_port Env:map[ACTION:add DEVPATH:/class/ata_port SEQNUM:629 SUBSYSTEM:class]}
[    0.709180] booster: udev event {Action:add KObj:/class/ata_device Env:map[ACTION:add DEVPATH:/class/ata_device SEQNUM:630 SUBSYSTEM:class]}
[    0.709311] booster: loading module pata_acpi
[    0.709621] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    0.709630] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[    0.709670] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000d480
[    0.709687] scsi host1: ata_piix
[    0.709733] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15
[    0.709737] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.709739] usb usb4: Product: UHCI Host Controller
[    0.709741] usb usb4: Manufacturer: Linux 5.15.74-0-lts uhci_hcd
[    0.709743] usb usb4: SerialNumber: 0000:00:1d.2
[    0.709753] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
[    0.709757] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
[    0.709861] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[    0.711182] scsi host2: ata_piix
[    0.711294] hub 4-0:1.0: USB hub found
[    0.711304] hub 4-0:1.0: 2 ports detected
[    0.711691] scsi host3: ata_piix
[    0.711762] ata3: SATA max UDMA/133 cmd 0xd080 ctl 0xd000 bmdma 0xc800 irq 19
[    0.711766] ata4: SATA max UDMA/133 cmd 0xcc00 ctl 0xc880 bmdma 0xc808 irq 19
[    0.711803] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    0.711813] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[    0.711858] uhci_hcd 0000:00:1d.3: irq 16, io base 0x0000d400
[    0.711927] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15
[    0.711931] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.711933] usb usb5: Product: UHCI Host Controller
[    0.711935] usb usb5: Manufacturer: Linux 5.15.74-0-lts uhci_hcd
[    0.711936] usb usb5: SerialNumber: 0000:00:1d.3
[    0.712270] hub 5-0:1.0: USB hub found
[    0.712279] hub 5-0:1.0: 2 ports detected
[    0.714272] booster: udev event {Action:add KObj:/module/libata Env:map[ACTION:add DEVPATH:/module/libata SEQNUM:631 SUBSYSTEM:module]}
[    0.714420] booster: udev event {Action:bind KObj:/devices/pci0000:00/0000:00:1d.7/usb1/1-0:1.0 Env:map[ACTION:bind DEVPATH:/devices/pci0000:00/0000:00:1d.7/usb1/1-0:1.0 DEVTYPE:usb_interface DRIVER:hub INTERFACE:9/0/0 MODALIAS:usb:v1D6Bp0002d0515dc09dsc00dp00ic09isc00ip00in00 PRODUCT:1d6b/2/515 SEQNUM:632 SUBSYSTEM:usb TYPE:9/0/0]}
[    0.714674] booster: udev event {Action:bind KObj:/devices/pci0000:00/0000:00:1d.7/usb1 Env:map[ACTION:bind BUSNUM:001 DEVNAME:bus/usb/001/001 DEVNUM:001 DEVPATH:/devices/pci0000:00/0000:00:1d.7/usb1 DEVTYPE:usb_device DRIVER:usb MAJOR:189 MINOR:0 PRODUCT:1d6b/2/515 SEQNUM:633 SUBSYSTEM:usb TYPE:9/0/0]}
[    0.714867] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.7/wakeup/wakeup16 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1d.7/wakeup/wakeup16 SEQNUM:634 SUBSYSTEM:wakeup]}
[    0.715050] booster: udev event {Action:bind KObj:/devices/pci0000:00/0000:00:1d.7 Env:map[ACTION:bind DEVPATH:/devices/pci0000:00/0000:00:1d.7 DRIVER:ehci-pci MODALIAS:pci:v00008086d000027CCsv00001297sd00004001bc0Csc03i20 PCI_CLASS:C0320 PCI_ID:8086:27CC PCI_SLOT_NAME:0000:00:1d.7 PCI_SUBSYS_ID:1297:4001 SEQNUM:635 SUBSYSTEM:pci]}
[    0.715248] booster: udev event {Action:add KObj:/bus/pci/drivers/ehci-pci Env:map[ACTION:add DEVPATH:/bus/pci/drivers/ehci-pci SEQNUM:636 SUBSYSTEM:drivers]}
[    0.715393] booster: udev event {Action:add KObj:/module/ehci_pci Env:map[ACTION:add DEVPATH:/module/ehci_pci SEQNUM:637 SUBSYSTEM:module]}
[    0.715556] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.1/ata1/ata_port/ata1 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.1/ata1/ata_port/ata1 SEQNUM:638 SUBSYSTEM:ata_port]}
[    0.716438] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.1/ata1/link1/ata_link/link1 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.1/ata1/link1/ata_link/link1 SEQNUM:639 SUBSYSTEM:ata_link]}
[    0.716602] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.1/ata1/link1/dev1.0/ata_device/dev1.0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.1/ata1/link1/dev1.0/ata_device/dev1.0 SEQNUM:640 SUBSYSTEM:ata_device]}
[    0.716788] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.1/ata1/link1/dev1.1/ata_device/dev1.1 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.1/ata1/link1/dev1.1/ata_device/dev1.1 SEQNUM:641 SUBSYSTEM:ata_device]}
[    0.716952] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.1/ata2/ata_port/ata2 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.1/ata2/ata_port/ata2 SEQNUM:642 SUBSYSTEM:ata_port]}
[    0.717129] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.1/ata2/link2/ata_link/link2 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.1/ata2/link2/ata_link/link2 SEQNUM:643 SUBSYSTEM:ata_link]}
[    0.717288] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.1/ata2/link2/dev2.0/ata_device/dev2.0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.1/ata2/link2/dev2.0/ata_device/dev2.0 SEQNUM:644 SUBSYSTEM:ata_device]}
[    0.717509] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.1/ata2/link2/dev2.1/ata_device/dev2.1 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.1/ata2/link2/dev2.1/ata_device/dev2.1 SEQNUM:645 SUBSYSTEM:ata_device]}
[    0.717686] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.0/usb2 Env:map[ACTION:add BUSNUM:002 DEVNAME:bus/usb/002/001 DEVNUM:001 DEVPATH:/devices/pci0000:00/0000:00:1d.0/usb2 DEVTYPE:usb_device MAJOR:189 MINOR:128 PRODUCT:1d6b/1/515 SEQNUM:646 SUBSYSTEM:usb TYPE:9/0/0]}
[    0.717916] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.0/usb2/2-0:1.0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1d.0/usb2/2-0:1.0 DEVTYPE:usb_interface INTERFACE:9/0/0 MODALIAS:usb:v1D6Bp0001d0515dc09dsc00dp00ic09isc00ip00in00 PRODUCT:1d6b/1/515 SEQNUM:647 SUBSYSTEM:usb TYPE:9/0/0]}
[    0.718121] booster: udev event {Action:bind KObj:/devices/pci0000:00/0000:00:1d.0/usb2/2-0:1.0 Env:map[ACTION:bind DEVPATH:/devices/pci0000:00/0000:00:1d.0/usb2/2-0:1.0 DEVTYPE:usb_interface DRIVER:hub INTERFACE:9/0/0 MODALIAS:usb:v1D6Bp0001d0515dc09dsc00dp00ic09isc00ip00in00 PRODUCT:1d6b/1/515 SEQNUM:648 SUBSYSTEM:usb TYPE:9/0/0]}
[    0.718347] booster: modalias usb:v1D6Bp0001d0515dc09dsc00dp00ic09isc00ip00in00 matched module usbcore
[    0.718455] booster: modalias usb:v1D6Bp0001d0515dc09dsc00dp00ic09isc00ip00in00 matched module usbcore
[    0.718608] booster: udev event {Action:bind KObj:/devices/pci0000:00/0000:00:1d.0/usb2 Env:map[ACTION:bind BUSNUM:002 DEVNAME:bus/usb/002/001 DEVNUM:001 DEVPATH:/devices/pci0000:00/0000:00:1d.0/usb2 DEVTYPE:usb_device DRIVER:usb MAJOR:189 MINOR:128 PRODUCT:1d6b/1/515 SEQNUM:649 SUBSYSTEM:usb TYPE:9/0/0]}
[    0.718835] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.0/wakeup/wakeup17 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1d.0/wakeup/wakeup17 SEQNUM:650 SUBSYSTEM:wakeup]}
[    0.719034] booster: udev event {Action:bind KObj:/devices/pci0000:00/0000:00:1d.0 Env:map[ACTION:bind DEVPATH:/devices/pci0000:00/0000:00:1d.0 DRIVER:uhci_hcd MODALIAS:pci:v00008086d000027C8sv00001297sd00004001bc0Csc03i00 PCI_CLASS:C0300 PCI_ID:8086:27C8 PCI_SLOT_NAME:0000:00:1d.0 PCI_SUBSYS_ID:1297:4001 SEQNUM:651 SUBSYSTEM:pci]}
[    0.719240] booster: udev event {Action:add KObj:/devices/virtual/workqueue/scsi_tmf_0 Env:map[ACTION:add DEVPATH:/devices/virtual/workqueue/scsi_tmf_0 SEQNUM:652 SUBSYSTEM:workqueue]}
[    0.719413] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.1/ata1/host0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.1/ata1/host0 DEVTYPE:scsi_host SEQNUM:653 SUBSYSTEM:scsi]}
[    0.719569] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.1/ata1/host0/scsi_host/host0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.1/ata1/host0/scsi_host/host0 SEQNUM:654 SUBSYSTEM:scsi_host]}
[    0.719785] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.1/usb3 Env:map[ACTION:add BUSNUM:003 DEVNAME:bus/usb/003/001 DEVNUM:001 DEVPATH:/devices/pci0000:00/0000:00:1d.1/usb3 DEVTYPE:usb_device MAJOR:189 MINOR:256 PRODUCT:1d6b/1/515 SEQNUM:655 SUBSYSTEM:usb TYPE:9/0/0]}
[    0.719981] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.1/usb3/3-0:1.0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1d.1/usb3/3-0:1.0 DEVTYPE:usb_interface INTERFACE:9/0/0 MODALIAS:usb:v1D6Bp0001d0515dc09dsc00dp00ic09isc00ip00in00 PRODUCT:1d6b/1/515 SEQNUM:656 SUBSYSTEM:usb TYPE:9/0/0]}
[    0.720223] booster: udev event {Action:bind KObj:/devices/pci0000:00/0000:00:1d.1/usb3/3-0:1.0 Env:map[ACTION:bind DEVPATH:/devices/pci0000:00/0000:00:1d.1/usb3/3-0:1.0 DEVTYPE:usb_interface DRIVER:hub INTERFACE:9/0/0 MODALIAS:usb:v1D6Bp0001d0515dc09dsc00dp00ic09isc00ip00in00 PRODUCT:1d6b/1/515 SEQNUM:657 SUBSYSTEM:usb TYPE:9/0/0]}
[    0.720432] booster: udev event {Action:bind KObj:/devices/pci0000:00/0000:00:1d.1/usb3 Env:map[ACTION:bind BUSNUM:003 DEVNAME:bus/usb/003/001 DEVNUM:001 DEVPATH:/devices/pci0000:00/0000:00:1d.1/usb3 DEVTYPE:usb_device DRIVER:usb MAJOR:189 MINOR:256 PRODUCT:1d6b/1/515 SEQNUM:658 SUBSYSTEM:usb TYPE:9/0/0]}
[    0.720655] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.1/wakeup/wakeup18 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1d.1/wakeup/wakeup18 SEQNUM:659 SUBSYSTEM:wakeup]}
[    0.720811] booster: udev event {Action:bind KObj:/devices/pci0000:00/0000:00:1d.1 Env:map[ACTION:bind DEVPATH:/devices/pci0000:00/0000:00:1d.1 DRIVER:uhci_hcd MODALIAS:pci:v00008086d000027C9sv00001297sd00004001bc0Csc03i00 PCI_CLASS:C0300 PCI_ID:8086:27C9 PCI_SLOT_NAME:0000:00:1d.1 PCI_SUBSYS_ID:1297:4001 SEQNUM:660 SUBSYSTEM:pci]}
[    0.721046] booster: udev event {Action:add KObj:/devices/virtual/workqueue/scsi_tmf_1 Env:map[ACTION:add DEVPATH:/devices/virtual/workqueue/scsi_tmf_1 SEQNUM:661 SUBSYSTEM:workqueue]}
[    0.721199] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.1/ata2/host1 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.1/ata2/host1 DEVTYPE:scsi_host SEQNUM:662 SUBSYSTEM:scsi]}
[    0.721382] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.1/ata2/host1/scsi_host/host1 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.1/ata2/host1/scsi_host/host1 SEQNUM:663 SUBSYSTEM:scsi_host]}
[    0.721545] booster: udev event {Action:bind KObj:/devices/pci0000:00/0000:00:1f.1 Env:map[ACTION:bind DEVPATH:/devices/pci0000:00/0000:00:1f.1 DRIVER:ata_piix MODALIAS:pci:v00008086d000027DFsv00001297sd00004001bc01sc01i8A PCI_CLASS:1018A PCI_ID:8086:27DF PCI_SLOT_NAME:0000:00:1f.1 PCI_SUBSYS_ID:1297:4001 SEQNUM:664 SUBSYSTEM:pci]}
[    0.721771] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata3/ata_port/ata3 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata3/ata_port/ata3 SEQNUM:665 SUBSYSTEM:ata_port]}
[    0.721925] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata3/link3/ata_link/link3 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata3/link3/ata_link/link3 SEQNUM:666 SUBSYSTEM:ata_link]}
[    0.722104] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata3/link3/dev3.0/ata_device/dev3.0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata3/link3/dev3.0/ata_device/dev3.0 SEQNUM:667 SUBSYSTEM:ata_device]}
[    0.722428] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata3/link3/dev3.1/ata_device/dev3.1 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata3/link3/dev3.1/ata_device/dev3.1 SEQNUM:668 SUBSYSTEM:ata_device]}
[    0.722617] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata4/ata_port/ata4 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata4/ata_port/ata4 SEQNUM:669 SUBSYSTEM:ata_port]}
[    0.722773] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata4/link4/ata_link/link4 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata4/link4/ata_link/link4 SEQNUM:670 SUBSYSTEM:ata_link]}
[    0.722953] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata4/link4/dev4.0/ata_device/dev4.0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata4/link4/dev4.0/ata_device/dev4.0 SEQNUM:671 SUBSYSTEM:ata_device]}
[    0.723119] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata4/link4/dev4.1/ata_device/dev4.1 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata4/link4/dev4.1/ata_device/dev4.1 SEQNUM:672 SUBSYSTEM:ata_device]}
[    0.723317] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.2/usb4 Env:map[ACTION:add BUSNUM:004 DEVNAME:bus/usb/004/001 DEVNUM:001 DEVPATH:/devices/pci0000:00/0000:00:1d.2/usb4 DEVTYPE:usb_device MAJOR:189 MINOR:384 PRODUCT:1d6b/1/515 SEQNUM:673 SUBSYSTEM:usb TYPE:9/0/0]}
[    0.723510] booster: udev event {Action:add KObj:/devices/virtual/workqueue/scsi_tmf_2 Env:map[ACTION:add DEVPATH:/devices/virtual/workqueue/scsi_tmf_2 SEQNUM:674 SUBSYSTEM:workqueue]}
[    0.723687] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.2/usb4/4-0:1.0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1d.2/usb4/4-0:1.0 DEVTYPE:usb_interface INTERFACE:9/0/0 MODALIAS:usb:v1D6Bp0001d0515dc09dsc00dp00ic09isc00ip00in00 PRODUCT:1d6b/1/515 SEQNUM:675 SUBSYSTEM:usb TYPE:9/0/0]}
[    0.723889] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata3/host2 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata3/host2 DEVTYPE:scsi_host SEQNUM:676 SUBSYSTEM:scsi]}
[    0.724072] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata3/host2/scsi_host/host2 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata3/host2/scsi_host/host2 SEQNUM:677 SUBSYSTEM:scsi_host]}
[    0.724235] booster: udev event {Action:bind KObj:/devices/pci0000:00/0000:00:1d.2/usb4/4-0:1.0 Env:map[ACTION:bind DEVPATH:/devices/pci0000:00/0000:00:1d.2/usb4/4-0:1.0 DEVTYPE:usb_interface DRIVER:hub INTERFACE:9/0/0 MODALIAS:usb:v1D6Bp0001d0515dc09dsc00dp00ic09isc00ip00in00 PRODUCT:1d6b/1/515 SEQNUM:678 SUBSYSTEM:usb TYPE:9/0/0]}
[    0.724478] booster: udev event {Action:bind KObj:/devices/pci0000:00/0000:00:1d.2/usb4 Env:map[ACTION:bind BUSNUM:004 DEVNAME:bus/usb/004/001 DEVNUM:001 DEVPATH:/devices/pci0000:00/0000:00:1d.2/usb4 DEVTYPE:usb_device DRIVER:usb MAJOR:189 MINOR:384 PRODUCT:1d6b/1/515 SEQNUM:679 SUBSYSTEM:usb TYPE:9/0/0]}
[    0.724674] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.2/wakeup/wakeup19 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1d.2/wakeup/wakeup19 SEQNUM:680 SUBSYSTEM:wakeup]}
[    0.724861] booster: udev event {Action:bind KObj:/devices/pci0000:00/0000:00:1d.2 Env:map[ACTION:bind DEVPATH:/devices/pci0000:00/0000:00:1d.2 DRIVER:uhci_hcd MODALIAS:pci:v00008086d000027CAsv00001297sd00004001bc0Csc03i00 PCI_CLASS:C0300 PCI_ID:8086:27CA PCI_SLOT_NAME:0000:00:1d.2 PCI_SUBSYS_ID:1297:4001 SEQNUM:681 SUBSYSTEM:pci]}
[    0.725066] booster: udev event {Action:add KObj:/devices/virtual/workqueue/scsi_tmf_3 Env:map[ACTION:add DEVPATH:/devices/virtual/workqueue/scsi_tmf_3 SEQNUM:682 SUBSYSTEM:workqueue]}
[    0.725239] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata4/host3 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata4/host3 DEVTYPE:scsi_host SEQNUM:683 SUBSYSTEM:scsi]}
[    0.725393] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata4/host3/scsi_host/host3 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata4/host3/scsi_host/host3 SEQNUM:684 SUBSYSTEM:scsi_host]}
[    0.725698] booster: udev event {Action:bind KObj:/devices/pci0000:00/0000:00:1f.2 Env:map[ACTION:bind DEVPATH:/devices/pci0000:00/0000:00:1f.2 DRIVER:ata_piix MODALIAS:pci:v00008086d000027C0sv00001297sd00004001bc01sc01i8F PCI_CLASS:1018F PCI_ID:8086:27C0 PCI_SLOT_NAME:0000:00:1f.2 PCI_SUBSYS_ID:1297:4001 SEQNUM:685 SUBSYSTEM:pci]}
[    0.725904] booster: udev event {Action:add KObj:/bus/pci/drivers/ata_piix Env:map[ACTION:add DEVPATH:/bus/pci/drivers/ata_piix SEQNUM:686 SUBSYSTEM:drivers]}
[    0.726054] booster: udev event {Action:add KObj:/module/ata_piix Env:map[ACTION:add DEVPATH:/module/ata_piix SEQNUM:687 SUBSYSTEM:module]}
[    0.726178] booster: udev event {Action:add KObj:/bus/pci/drivers/ata_generic Env:map[ACTION:add DEVPATH:/bus/pci/drivers/ata_generic SEQNUM:688 SUBSYSTEM:drivers]}
[    0.726328] booster: udev event {Action:add KObj:/module/ata_generic Env:map[ACTION:add DEVPATH:/module/ata_generic SEQNUM:689 SUBSYSTEM:module]}
[    0.726448] booster: udev event {Action:add KObj:/bus/pci/drivers/pata_acpi Env:map[ACTION:add DEVPATH:/bus/pci/drivers/pata_acpi SEQNUM:690 SUBSYSTEM:drivers]}
[    0.726603] booster: udev event {Action:add KObj:/module/pata_acpi Env:map[ACTION:add DEVPATH:/module/pata_acpi SEQNUM:691 SUBSYSTEM:module]}
[    0.726728] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.3/usb5 Env:map[ACTION:add BUSNUM:005 DEVNAME:bus/usb/005/001 DEVNUM:001 DEVPATH:/devices/pci0000:00/0000:00:1d.3/usb5 DEVTYPE:usb_device MAJOR:189 MINOR:512 PRODUCT:1d6b/1/515 SEQNUM:692 SUBSYSTEM:usb TYPE:9/0/0]}
[    0.726982] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.3/usb5/5-0:1.0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1d.3/usb5/5-0:1.0 DEVTYPE:usb_interface INTERFACE:9/0/0 MODALIAS:usb:v1D6Bp0001d0515dc09dsc00dp00ic09isc00ip00in00 PRODUCT:1d6b/1/515 SEQNUM:693 SUBSYSTEM:usb TYPE:9/0/0]}
[    0.727810] booster: udev event {Action:bind KObj:/devices/pci0000:00/0000:00:1d.3/usb5/5-0:1.0 Env:map[ACTION:bind DEVPATH:/devices/pci0000:00/0000:00:1d.3/usb5/5-0:1.0 DEVTYPE:usb_interface DRIVER:hub INTERFACE:9/0/0 MODALIAS:usb:v1D6Bp0001d0515dc09dsc00dp00ic09isc00ip00in00 PRODUCT:1d6b/1/515 SEQNUM:694 SUBSYSTEM:usb TYPE:9/0/0]}
[    0.728065] booster: udev event {Action:bind KObj:/devices/pci0000:00/0000:00:1d.3/usb5 Env:map[ACTION:bind BUSNUM:005 DEVNAME:bus/usb/005/001 DEVNUM:001 DEVPATH:/devices/pci0000:00/0000:00:1d.3/usb5 DEVTYPE:usb_device DRIVER:usb MAJOR:189 MINOR:512 PRODUCT:1d6b/1/515 SEQNUM:695 SUBSYSTEM:usb TYPE:9/0/0]}
[    0.728263] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.3/wakeup/wakeup20 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1d.3/wakeup/wakeup20 SEQNUM:696 SUBSYSTEM:wakeup]}
[    0.728449] booster: udev event {Action:bind KObj:/devices/pci0000:00/0000:00:1d.3 Env:map[ACTION:bind DEVPATH:/devices/pci0000:00/0000:00:1d.3 DRIVER:uhci_hcd MODALIAS:pci:v00008086d000027CBsv00001297sd00004001bc0Csc03i00 PCI_CLASS:C0300 PCI_ID:8086:27CB PCI_SLOT_NAME:0000:00:1d.3 PCI_SUBSYS_ID:1297:4001 SEQNUM:697 SUBSYSTEM:pci]}
[    0.728654] booster: udev event {Action:add KObj:/bus/pci/drivers/uhci_hcd Env:map[ACTION:add DEVPATH:/bus/pci/drivers/uhci_hcd SEQNUM:698 SUBSYSTEM:drivers]}
[    0.728906] booster: no match found for alias dmi:bvnAmericanMegatrendsInc.:bvr080015:bd07/13/2010:br8.15:svnShuttleInc:pnSG41:pvrV20:rvnShuttleInc:rnFG41:rvrV20:cvnShuttleInc:ct3:cvrToBeFilledByO.E.M.:skuToBeFilledByO.E.M.:
[    0.729202] booster: udev event {Action:add KObj:/module/uhci_hcd Env:map[ACTION:add DEVPATH:/module/uhci_hcd SEQNUM:699 SUBSYSTEM:module]}
[    0.875764] ata3.00: ATA-8: TOSHIBA HDWD120, MX4OACF0, max UDMA/133
[    0.875770] ata3.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    0.876032] ata3.01: ATA-10: WDC WDS120G2G0A-00JH30, UE220400, max UDMA/133
[    0.876035] ata3.01: 234441648 sectors, multi 1: LBA48 NCQ (depth 0/32)
[    0.877476] ata3.01: Features: Dev-Sleep
[    0.899122] ata1.01: ATAPI: HL-DT-ST RW/DVD GCC-4482B, 1.01, max UDMA/33
[    0.905495] ata4.00: ATA-10: ST2000DM008-2FR102, 0001, max UDMA/133
[    0.905503] ata4.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    0.926549] scsi 0:0:1:0: CD-ROM            HL-DT-ST RW/DVD GCC-4482B 1.01 PQ: 0 ANSI: 5
[    0.956123] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.1/ata1/host0/target0:0:1 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.1/ata1/host0/target0:0:1 DEVTYPE:scsi_target SEQNUM:700 SUBSYSTEM:scsi]}
[    0.956328] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.1/ata1/host0/target0:0:1/0:0:1:0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.1/ata1/host0/target0:0:1/0:0:1:0 DEVTYPE:scsi_device MODALIAS:scsi:t-0x05 SEQNUM:701 SUBSYSTEM:scsi]}
[    0.956531] booster: no match found for alias scsi:t-0x05
[    0.956734] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.1/ata1/host0/target0:0:1/0:0:1:0/scsi_device/0:0:1:0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.1/ata1/host0/target0:0:1/0:0:1:0/scsi_device/0:0:1:0 SEQNUM:702 SUBSYSTEM:scsi_device]}
[    0.956758] scsi 2:0:0:0: Direct-Access     ATA      TOSHIBA HDWD120  ACF0 PQ: 0 ANSI: 5
[    0.956941] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.1/ata1/host0/target0:0:1/0:0:1:0/bsg/0:0:1:0 Env:map[ACTION:add DEVNAME:bsg/0:0:1:0 DEVPATH:/devices/pci0000:00/0000:00:1f.1/ata1/host0/target0:0:1/0:0:1:0/bsg/0:0:1:0 MAJOR:246 MINOR:0 SEQNUM:703 SUBSYSTEM:bsg]}
[    0.957195] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0 DEVTYPE:scsi_target SEQNUM:704 SUBSYSTEM:scsi]}
[    0.957225] scsi 2:0:1:0: Direct-Access     ATA      WDC WDS120G2G0A- 0400 PQ: 0 ANSI: 5
[    0.957361] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0 DEVTYPE:scsi_device MODALIAS:scsi:t-0x00 SEQNUM:705 SUBSYSTEM:scsi]}
[    0.957584] booster: no match found for alias scsi:t-0x00
[    0.957699] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0/scsi_device/2:0:0:0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0/scsi_device/2:0:0:0 SEQNUM:706 SUBSYSTEM:scsi_device]}
[    0.957885] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0/bsg/2:0:0:0 Env:map[ACTION:add DEVNAME:bsg/2:0:0:0 DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0/bsg/2:0:0:0 MAJOR:246 MINOR:1 SEQNUM:707 SUBSYSTEM:bsg]}
[    0.958098] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:1 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:1 DEVTYPE:scsi_target SEQNUM:708 SUBSYSTEM:scsi]}
[    0.958255] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:1/2:0:1:0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:1/2:0:1:0 DEVTYPE:scsi_device MODALIAS:scsi:t-0x00 SEQNUM:709 SUBSYSTEM:scsi]}
[    0.958464] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:1/2:0:1:0/scsi_device/2:0:1:0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:1/2:0:1:0/scsi_device/2:0:1:0 SEQNUM:710 SUBSYSTEM:scsi_device]}
[    0.958649] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:1/2:0:1:0/bsg/2:0:1:0 Env:map[ACTION:add DEVNAME:bsg/2:0:1:0 DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:1/2:0:1:0/bsg/2:0:1:0 MAJOR:246 MINOR:2 SEQNUM:711 SUBSYSTEM:bsg]}
[    0.969037] scsi 3:0:0:0: Direct-Access     ATA      ST2000DM008-2FR1 0001 PQ: 0 ANSI: 5
[    0.969316] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata4/host3/target3:0:0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata4/host3/target3:0:0 DEVTYPE:scsi_target SEQNUM:712 SUBSYSTEM:scsi]}
[    0.969516] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata4/host3/target3:0:0/3:0:0:0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata4/host3/target3:0:0/3:0:0:0 DEVTYPE:scsi_device MODALIAS:scsi:t-0x00 SEQNUM:713 SUBSYSTEM:scsi]}
[    0.969709] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata4/host3/target3:0:0/3:0:0:0/scsi_device/3:0:0:0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata4/host3/target3:0:0/3:0:0:0/scsi_device/3:0:0:0 SEQNUM:714 SUBSYSTEM:scsi_device]}
[    0.969899] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata4/host3/target3:0:0/3:0:0:0/bsg/3:0:0:0 Env:map[ACTION:add DEVNAME:bsg/3:0:0:0 DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata4/host3/target3:0:0/3:0:0:0/bsg/3:0:0:0 MAJOR:246 MINOR:3 SEQNUM:715 SUBSYSTEM:bsg]}
[    1.085518] usb 3-2: new low-speed USB device number 2 using uhci_hcd
[    1.286574] usb 3-2: New USB device found, idVendor=046a, idProduct=0011, bcdDevice= 1.00
[    1.286582] usb 3-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.286838] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.1/usb3/3-2 Env:map[ACTION:add BUSNUM:003 DEVNAME:bus/usb/003/002 DEVNUM:002 DEVPATH:/devices/pci0000:00/0000:00:1d.1/usb3/3-2 DEVTYPE:usb_device MAJOR:189 MINOR:257 PRODUCT:46a/11/100 SEQNUM:716 SUBSYSTEM:usb TYPE:0/0/0]}
[    1.291755] booster: udev event {Action:change KObj:/devices/pci0000:00/0000:00:1d.1/usb3/3-2 Env:map[ACTION:change BUSNUM:003 DEVNAME:bus/usb/003/002 DEVNUM:002 DEVPATH:/devices/pci0000:00/0000:00:1d.1/usb3/3-2 DEVTYPE:usb_device DRIVER:usb MAJOR:189 MINOR:257 PRODUCT:46a/11/100 SEQNUM:717 SUBSYSTEM:usb TYPE:0/0/0]}
[    1.291959] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0 DEVTYPE:usb_interface INTERFACE:3/1/1 MODALIAS:usb:v046Ap0011d0100dc00dsc00dp00ic03isc01ip01in00 PRODUCT:46a/11/100 SEQNUM:718 SUBSYSTEM:usb TYPE:0/0/0]}
[    1.292180] booster: modalias usb:v046Ap0011d0100dc00dsc00dp00ic03isc01ip01in00 matched module usbhid
[    1.292320] booster: loading module hid
[    1.294007] hid: raw HID events driver (C) Jiri Kosina
[    1.294121] booster: loading module usbhid
[    1.294153] booster: udev event {Action:bind KObj:/devices/pci0000:00/0000:00:1d.1/usb3/3-2 Env:map[ACTION:bind BUSNUM:003 DEVNAME:bus/usb/003/002 DEVNUM:002 DEVPATH:/devices/pci0000:00/0000:00:1d.1/usb3/3-2 DEVTYPE:usb_device DRIVER:usb MAJOR:189 MINOR:257 PRODUCT:46a/11/100 SEQNUM:719 SUBSYSTEM:usb TYPE:0/0/0]}
[    1.295805] booster: udev event {Action:add KObj:/bus/hid Env:map[ACTION:add DEVPATH:/bus/hid SEQNUM:720 SUBSYSTEM:bus]}
[    1.295950] booster: udev event {Action:add KObj:/class/hidraw Env:map[ACTION:add DEVPATH:/class/hidraw SEQNUM:721 SUBSYSTEM:class]}
[    1.296065] booster: udev event {Action:add KObj:/module/hid Env:map[ACTION:add DEVPATH:/module/hid SEQNUM:722 SUBSYSTEM:module]}
[    1.331908] usbcore: registered new interface driver usbhid
[    1.331911] usbhid: USB HID core driver
[    1.332054] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0/0003:046A:0011.0001 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0/0003:046A:0011.0001 HID_ID:0003:0000046A:00000011 HID_NAME:HID 046a:0011 HID_PHYS:usb-0000:00:1d.1-2/input0 HID_UNIQ: MODALIAS:hid:b0003g0001v0000046Ap00000011 SEQNUM:723 SUBSYSTEM:hid]}
[    1.332326] booster: udev event {Action:bind KObj:/devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0 Env:map[ACTION:bind DEVPATH:/devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0 DEVTYPE:usb_interface DRIVER:usbhid INTERFACE:3/1/1 MODALIAS:usb:v046Ap0011d0100dc00dsc00dp00ic03isc01ip01in00 PRODUCT:46a/11/100 SEQNUM:724 SUBSYSTEM:usb TYPE:0/0/0]}
[    1.332339] booster: modalias hid:b0003g0001v0000046Ap00000011 matched module hid_generic
[    1.332554] booster: udev event {Action:add KObj:/bus/usb/drivers/usbhid Env:map[ACTION:add DEVPATH:/bus/usb/drivers/usbhid SEQNUM:725 SUBSYSTEM:drivers]}
[    1.332670] booster: loading module hid_generic
[    1.332892] booster: udev event {Action:add KObj:/module/usbhid Env:map[ACTION:add DEVPATH:/module/usbhid SEQNUM:726 SUBSYSTEM:module]}
[    1.333194] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.1/usb3/3-2/wakeup/wakeup21 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1d.1/usb3/3-2/wakeup/wakeup21 SEQNUM:727 SUBSYSTEM:wakeup]}
[    1.333197] input: HID 046a:0011 as /devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0/0003:046A:0011.0001/input/input2
[    1.333375] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0/0003:046A:0011.0001/input/input2 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0/0003:046A:0011.0001/input/input2 EV:120013 KEY:1000000000007 ff980000000007ff febeffdfffefffff fffffffffffffffe LED:7 MODALIAS:input:b0003v046Ap0011e0111-e0,1,4,11,14,k71,72,73,74,75,77,79,7A,7B,7C,7D,7E,7F,80,81,82,83,84,85,86,87,88,89,8A,B3,B4,B7,B8,B9,BA,BB,BC,BD,BE,BF,C0,C1,C2,F0,ram4,l0,1,2,sfw MSC:10 NAME:"HID 046a:0011" PHYS:"usb-0000:00:1d.1-2/input0" PRODUCT:3/46a/11/111 PROP:0 SEQNUM:728 SUBSYSTEM:input UNIQ:""]}
[    1.333737] booster: no match found for alias input:b0003v046Ap0011e0111-e0,1,4,11,14,k71,72,73,74,75,77,79,7A,7B,7C,7D,7E,7F,80,81,82,83,84,85,86,87,88,89,8A,B3,B4,B7,B8,B9,BA,BB,BC,BD,BE,BF,C0,C1,C2,F0,ram4,l0,1,2,sfw
[    1.388716] hid-generic 0003:046A:0011.0001: input,hidraw0: USB HID v1.11 Keyboard [HID 046a:0011] on usb-0000:00:1d.1-2/input0
[    1.388847] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0/0003:046A:0011.0001/hidraw/hidraw0 Env:map[ACTION:add DEVNAME:hidraw0 DEVPATH:/devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0/0003:046A:0011.0001/hidraw/hidraw0 MAJOR:244 MINOR:0 SEQNUM:729 SUBSYSTEM:hidraw]}
[    1.389080] booster: udev event {Action:bind KObj:/devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0/0003:046A:0011.0001 Env:map[ACTION:bind DEVPATH:/devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0/0003:046A:0011.0001 DRIVER:hid-generic HID_ID:0003:0000046A:00000011 HID_NAME:HID 046a:0011 HID_PHYS:usb-0000:00:1d.1-2/input0 HID_UNIQ: MODALIAS:hid:b0003g0001v0000046Ap00000011 SEQNUM:730 SUBSYSTEM:hid]}
[    1.389325] booster: udev event {Action:add KObj:/bus/hid/drivers/hid-generic Env:map[ACTION:add DEVPATH:/bus/hid/drivers/hid-generic SEQNUM:731 SUBSYSTEM:drivers]}
[    1.389452] booster: udev event {Action:add KObj:/module/hid_generic Env:map[ACTION:add DEVPATH:/module/hid_generic SEQNUM:732 SUBSYSTEM:module]}
[    1.485294] tsc: Refined TSC clocksource calibration: 2593.506 MHz
[    1.485304] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x25624574f10, max_idle_ns: 440795289034 ns
[    1.485328] clocksource: Switched to clocksource tsc
[   30.674946] booster: Timeout waiting for root filesystem
nmeum commented

This does not seem to be specific to a certain hardware. On older ThinkPads of mine, Booster is also unable to load sd_mod automatically. In general, on all of my hardware which still uses SATA Booster does not work out-of-the-box with the Alpine Kernel which has CONFIG_BLK_DEV_SD=m (i.e. compiles sd_mod as a module).

I still don't fully understand how Booster is expected to load sd_mod if it is not explicitly force loaded by the user. The module is added to requiredModules by the generator in generator/kmod.go, however, I don't see where these requiredModules are loaded by the init.

initConfig.ModulesForceLoad is only set to kmod.selectNonBuiltinModules(conf.modulesForceLoad) where conf.modulesForceLoad refers to the modules force loaded explicitly via /etc/booster.yaml:

initConfig.ModulesForceLoad = kmod.selectNonBuiltinModules(conf.modulesForceLoad)

and selectNonBuiltinModules does not include k.requiredModules in the returned result:

booster/generator/kmod.go

Lines 918 to 926 in e17e9e0

func (k *Kmod) selectNonBuiltinModules(mods []string) []string {
var result []string
for _, m := range mods {
if !k.builtinModules[m] {
result = append(result, m)
}
}
return result
}

Should initConfig.ModulesForceLoad include requiredModules? If not, how is sd_mod expected to be loaded?

Any kernel module can be loaded by booster as a result of udev event alias matching or as a dependency of another loading module, or as a force load via config.

Here are the modules aliases for alpine kernel 5.15.72-0-virt.

➜  modules git:(wip) grep sd_mod *
grep: kernel: Is a directory
modules.alias:alias scsi:t-0x14* sd_mod
modules.alias:alias scsi:t-0x0e* sd_mod
modules.alias:alias scsi:t-0x07* sd_mod
modules.alias:alias scsi:t-0x00* sd_mod
modules.alias:alias block-major-135-* sd_mod
modules.alias:alias block-major-134-* sd_mod
modules.alias:alias block-major-133-* sd_mod
modules.alias:alias block-major-132-* sd_mod
modules.alias:alias block-major-131-* sd_mod
modules.alias:alias block-major-130-* sd_mod
modules.alias:alias block-major-129-* sd_mod
modules.alias:alias block-major-128-* sd_mod
modules.alias:alias block-major-71-* sd_mod
modules.alias:alias block-major-70-* sd_mod
modules.alias:alias block-major-69-* sd_mod
modules.alias:alias block-major-68-* sd_mod
modules.alias:alias block-major-67-* sd_mod
modules.alias:alias block-major-66-* sd_mod
modules.alias:alias block-major-65-* sd_mod
modules.alias:alias block-major-8-* sd_mod
grep: modules.alias.bin: binary file matches
modules.dep:kernel/drivers/scsi/sd_mod.ko.gz: kernel/block/t10-pi.ko.gz
grep: modules.dep.bin: binary file matches
modules.order:kernel/drivers/scsi/sd_mod.ko

So in this case, any matched alias will trigger sd_mod, which in turn will load its dependency t10-pi first.

In your logs I see following entry

[    0.957361] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0 DEVTYPE:scsi_device MODALIAS:scsi:t-0x00 SEQNUM:705 SUBSYSTEM:scsi]}
[    0.957584] booster: no match found for alias scsi:t-0x00

that should match the modules.alias:alias scsi:t-0x00* sd_mod alias and trigger the sd_mod module loading. But for some reason, it does not happen.

Could you please share content of your image's usr/lib/modules/booster.alias file with booster cat YOURIMAGE usr/lib/modules/booster.alias

Also, my guess is that using universal: true config option would help you to load the system without any force module parameters. If you have time could you please confirm this hypothesis?

nmeum commented

Finally found some time to look into this again.

tl;dr There seems to be a mismatch between scsi:t-0x00 and scsi:t_0x00 (_ vs -).

Any kernel module can be loaded by booster as a result of udev event alias matching or as a dependency of another loading module, or as a force load via config.

Ah! So sd_mod is expected to be loaded via an alias through a udev event, that wasn't clear to me.

Thanks for pointing this out!

Here are the modules aliases for alpine kernel 5.15.72-0-virt.

I also have an alias for scsi:t_0x00 in my modules.alias for my 5.15.79-1-lts kernel:

$ grep sd_mod /lib/modules/5.15.79-1-lts/modules.alias
alias block_major_8_* sd_mod
alias block_major_65_* sd_mod
alias block_major_66_* sd_mod
alias block_major_67_* sd_mod
alias block_major_68_* sd_mod
alias block_major_69_* sd_mod
alias block_major_70_* sd_mod
alias block_major_71_* sd_mod
alias block_major_128_* sd_mod
alias block_major_129_* sd_mod
alias block_major_130_* sd_mod
alias block_major_131_* sd_mod
alias block_major_132_* sd_mod
alias block_major_133_* sd_mod
alias block_major_134_* sd_mod
alias block_major_135_* sd_mod
alias scsi:t_0x00* sd_mod
alias scsi:t_0x07* sd_mod
alias scsi:t_0x0e* sd_mod
alias scsi:t_0x14* sd_mod

Could you please share content of your image's usr/lib/modules/booster.alias file with booster cat YOURIMAGE usr/lib/modules/booster.alias

$ booster cat /boot/booster-lts lib/modules/booster.alias
usb:v*p*d*dc*dsc*dp*ic09isc*ip*in* usbcore
acpi*:LNXVIDEO:* video
pci:v00008086d00000166sv*sd*bc03sc*i* i915
pci:v*d*sv*sd*bc0Csc03i20* ehci_pci
cpu:type:x86,ven*fam*mod*:feature:*0081* crc32_pclmul
serio:ty01pr*id*ex* serio_raw
pci:v00001180d0000E822sv*sd*bc*sc*i* sdhci_pci
acpi*:PNP0C31:* tpm_tis
cpu:type:x86,ven*fam*mod*:feature:*0094* crc32c_intel
pci:v*d*sv*sd*bc0Csc03i30* xhci_pci
pci:v*d*sv*sd*bc01sc06i01* ahci
usb:v*p*d*dc09dsc*dp*ic*isc*ip*in* usbcore
serio:ty06pr*id*ex* serio_raw
cpu:type:x86,ven*fam*mod*:feature:*0099* aesni_intel
pci:v00008086d00001E03sv*sd*bc*sc*i* ahci
cpu:type:x86,ven*fam*mod*:feature:*0081* ghash_clmulni_intel
cpu:type:x86,ven*fam*mod*:feature:*0081* crct10dif_pclmul

This file does not contain an alias for scsi:t-0x00.

In your logs I see following entry

[    0.957361] booster: udev event {Action:add KObj:/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0 Env:map[ACTION:add DEVPATH:/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0 DEVTYPE:scsi_device MODALIAS:scsi:t-0x00 SEQNUM:705 SUBSYSTEM:scsi]}
[    0.957584] booster: no match found for alias scsi:t-0x00

that should match the modules.alias:alias scsi:t-0x00* sd_mod alias and trigger the sd_mod module loading. But for some reason, it does not happen.

I don't have an alias for scsi:t-0x00 (difference _ vs -) though in my /lib/modules/5.15.79-1-lts/modules.alias. That is the problem, isn't it? For some reason, scsi:t-0x00 is used in the modalias file in /sys/devices while scsi:t_0x00 in modules.alias. This causes Booster to remove the corresponding entry from the generated booster.alias file in filterAliasesForRequiredModules() and for this reason sd_mod is not loaded.

The following patch fixes this problem for me:

diff --git a/generator/kmod.go b/generator/kmod.go
index 9723d32..1ae1989 100644
--- a/generator/kmod.go
+++ b/generator/kmod.go
@@ -596,6 +596,10 @@ func (k *Kmod) filterAliasesForRequiredModules(conf *generatorConfig) ([]alias,
 	var filteredAliases []alias
 
 	for _, a := range k.aliases {
+		if strings.HasPrefix(a.pattern, "scsi:t_") {
+			a.pattern = strings.Replace(a.pattern, "scsi:t_", "scsi:t-", 1)
+		}
+
 		if k.requiredModules[a.module] {
 			filteredAliases = append(filteredAliases, a)
 		}

With this patch applied:

$ booster cat /boot/booster-lts lib/modules/booster.alias | grep sd_mod
scsi:t-0x00* sd_mod

🎉 Booster boots fine with this patch without force loading any additional modules. 🎉

Do you have any clue why the module names in /lib/modules/5.15.79-1-lts/modules.alias and /sys/devices/…/modalias differ? The module name also seems to differ between your linux-virt and my linux-lts version.

nmeum commented

As it turns out, _ and - can be used interchangeably in both module and alias names.

Fix in #197