public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Woody Suwalski <terraluna977@gmail.com>
To: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Cc: LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] mouse_cypress_ps2: Fix 6.11 regression on xps15z
Date: Wed, 28 Aug 2024 22:18:42 -0400	[thread overview]
Message-ID: <e920460d-78d0-991d-822b-04d2ff40925a@gmail.com> (raw)
In-Reply-To: <Zs-PUNQI6SFWH6s_@google.com>

[-- Attachment #1: Type: text/plain, Size: 6868 bytes --]

Dmitry Torokhov wrote:
> On Wed, Aug 28, 2024 at 12:15:24PM -0700, Dmitry Torokhov wrote:
>> On Tue, Aug 27, 2024 at 10:46:11PM -0400, Woody Suwalski wrote:
>>> Dmitry Torokhov wrote:
>>>> Hi Woody,
>>>>
>>>> On Tue, Aug 27, 2024 at 07:44:12PM -0400, Woody Suwalski wrote:
>>>>> Kernel 6.11 rcN on Dell XPS 15Z:  touch pad has stopped working after the
>>>>> patch
>>>>>
>>>>> commit 8bccf667f62a2351fd0b2a2fe5ba90806702c048
>>>>> Author: Dmitry Torokhov <dmitry.torokhov@gmail.com>
>>>>> Date:   Fri Jun 28 15:47:25 2024 -0700
>>>>>
>>>>>       Input: cypress_ps2 - report timeouts when reading command status
>>>>>
>>>>> It seems that the first communication is with an invalid packet of 3 NULLs,
>>>>> and that
>>>>> status failure used to be ignored. With the above patch it is now returning
>>>>> an error and
>>>>> that results in a dead touch pad.
>>>>>
>>>>> The fix is to stop flagging an error for 3-byte null packets, just keep
>>>>> ignoring them as before.
>>>>> [    2.338016] [    T591] err: Command 0x00 response data (0x): 00 00 00
>>>>> [    2.338032] [    T591] ok: Command 0x00 response data (0x): 33 cc a2
>>>>> ...
>>>>> [    2.770029] [    T591] ok: Command 0x00 response data (0x): 33 cc a2
>>>>> [    2.998030] [    T591] ok: Command 0x11 response data (0x): 01 00 64
>>>> Could you please send me logs with i8042.debug=1 kernel command line
>>>> option please?  I wonder if we need to wake up the controller...
>>>>
>>>> Thanks.
>>>>
>>> Sure, the dmesg log is attached (for the failing scenario)
>> Thank you.
>>
>>> [    0.000000] [      T0] Linux version 6.9.0-pingu+ (root@DellXPS15Z) (gcc (Debian 14.2.0-1) 14.2.0, GNU ld (GNU Binutils for Debian) 2.43.1) #24 SMP PREEMPT_DYNAMIC Tue Aug 27 22:33:33 EDT 2024
>> This is not 6.11, did you patch 6.9 with cypress patches from 6.11?
No, this is just inside git bisect tree. Whatever name git has chosen :-)
>>
>> Anyway, the patch you posted does not make sense. You are doing the
>> following check:
>>
>> +        if (!(pktsize == 3 && param[0] == 0 && param[1] == 0 )) {
>> +            rc = -ETIMEDOUT;
>> +            goto out;
>> +        }
>>
>> trying to ignore "all zeroes" response from the device, however at this
>> point param array does not contain data from the device, it always
>> contains all zeroes because of memset() a few lines above. So in effect
>> you always skipping reporting timeout.
I was just blindly following the trace output I have got during debugging.
First line had 00 00 00. And the workaround did work...
>> However I think cypress is busted in general as it looks like it times
>> out all the commands, because it tries to issue them outside of libp2s,
>> and so noone is actually wakes it up when we get enough response from
>> the device. To prove this could you please try applying this:
>>
>> diff --git a/drivers/input/mouse/cypress_ps2.c b/drivers/input/mouse/cypress_ps2.c
>> index b3c34ebcc4ef..8c0c7100aa4d 100644
>> --- a/drivers/input/mouse/cypress_ps2.c
>> +++ b/drivers/input/mouse/cypress_ps2.c
>> @@ -115,8 +115,9 @@ static int cypress_ps2_read_cmd_status(struct psmouse *psmouse,
>>   	if (!wait_event_timeout(ps2dev->wait,
>>   				psmouse->pktcnt >= pktsize,
>>   				msecs_to_jiffies(CYTP_CMD_TIMEOUT))) {
>> -		rc = -ETIMEDOUT;
>> -		goto out;
>> +//		rc = -ETIMEDOUT;
>> +//		goto out;
>> +		pr_err("XXX looks like timeout\n");
>>   	}
>>   
>>   	memcpy(param, psmouse->packet, pktsize);
>>
>> and let me know if you see "XXX looks like timeout" multiple times
>> during initialization (essentially for each extended command issued by
>> the cypress driver)?
>>
>> Thanks!
That is more or less the first test I did during debugging.
As a result there is a lot of error output, but the touchpad does work.
See dmesg.cypress.timeout.txt


> And I wonder if this fixes it properly:
>
> diff --git a/drivers/input/mouse/cypress_ps2.c b/drivers/input/mouse/cypress_ps2.c
> index b3c34ebcc4ef..9446657a5f35 100644
> --- a/drivers/input/mouse/cypress_ps2.c
> +++ b/drivers/input/mouse/cypress_ps2.c
> @@ -91,48 +91,6 @@ static int cypress_ps2_ext_cmd(struct psmouse *psmouse, u8 prefix, u8 nibble)
>   	return rc;
>   }
>   
> -static int cypress_ps2_read_cmd_status(struct psmouse *psmouse,
> -				       u8 cmd, u8 *param)
> -{
> -	struct ps2dev *ps2dev = &psmouse->ps2dev;
> -	enum psmouse_state old_state;
> -	int pktsize;
> -	int rc;
> -
> -	ps2_begin_command(ps2dev);
> -
> -	old_state = psmouse->state;
> -	psmouse->state = PSMOUSE_CMD_MODE;
> -	psmouse->pktcnt = 0;
> -
> -	pktsize = (cmd == CYTP_CMD_READ_TP_METRICS) ? 8 : 3;
> -	memset(param, 0, pktsize);
> -
> -	rc = cypress_ps2_sendbyte(psmouse, PSMOUSE_CMD_GETINFO & 0xff);
> -	if (rc)
> -		goto out;
> -
> -	if (!wait_event_timeout(ps2dev->wait,
> -				psmouse->pktcnt >= pktsize,
> -				msecs_to_jiffies(CYTP_CMD_TIMEOUT))) {
> -		rc = -ETIMEDOUT;
> -		goto out;
> -	}
> -
> -	memcpy(param, psmouse->packet, pktsize);
> -
> -	psmouse_dbg(psmouse, "Command 0x%02x response data (0x): %*ph\n",
> -			cmd, pktsize, param);
> -
> -out:
> -	psmouse->state = old_state;
> -	psmouse->pktcnt = 0;
> -
> -	ps2_end_command(ps2dev);
> -
> -	return rc;
> -}
> -
>   static bool cypress_verify_cmd_state(struct psmouse *psmouse, u8 cmd, u8* param)
>   {
>   	bool rate_match = false;
> @@ -166,6 +124,8 @@ static bool cypress_verify_cmd_state(struct psmouse *psmouse, u8 cmd, u8* param)
>   static int cypress_send_ext_cmd(struct psmouse *psmouse, u8 cmd, u8 *param)
>   {
>   	u8 cmd_prefix = PSMOUSE_CMD_SETRES & 0xff;
> +	unsigned int resp_size = cmd == CYTP_CMD_READ_TP_METRICS ? 8 : 3;
> +	unsigned int ps2_cmd = (PSMOUSE_CMD_GETINFO & 0xff) | (resp_size << 8);
>   	int tries = CYTP_PS2_CMD_TRIES;
>   	int error;
>   
> @@ -179,10 +139,18 @@ static int cypress_send_ext_cmd(struct psmouse *psmouse, u8 cmd, u8 *param)
>   		cypress_ps2_ext_cmd(psmouse, cmd_prefix, DECODE_CMD_BB(cmd));
>   		cypress_ps2_ext_cmd(psmouse, cmd_prefix, DECODE_CMD_AA(cmd));
>   
> -		error = cypress_ps2_read_cmd_status(psmouse, cmd, param);
> -		if (!error && cypress_verify_cmd_state(psmouse, cmd, param))
> -			return 0;
> +		error = ps2_command(&psmouse->ps2dev, param, ps2_cmd);
> +		if (error) {
> +			psmouse_dbg(psmouse, "Command 0x%02x failed: %d\n",
> +				    cmd, error);
> +		} else {
> +			psmouse_dbg(psmouse,
> +				    "Command 0x%02x response data (0x): %*ph\n",
> +				    cmd, resp_size, param);
>   
> +			if (cypress_verify_cmd_state(psmouse, cmd, param))
> +				return 0;
> +		}
>   	} while (--tries > 0);
>   
>   	return -EIO;
>
> Thanks.
>
Thanks, the new algorithm seems to be working ok. See the trace in 
dmesg.cypress.new.txt.

The patch looks good.

I would suggest using brackets to remove ambiguity in
     unsigned int resp_size = (cmd == CYTP_CMD_READ_TP_METRICS) ? 8 : 3;

Tested_by: Woody Suwalski <terraluna977@gmail.com>



[-- Attachment #2: dmesg.cypress.timeout.txt --]
[-- Type: text/plain, Size: 111156 bytes --]

[    0.000000] [      T0] Linux version 6.11-pingu (root@S50T) (gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Wed Aug 28 21:41:43 EDT 2024
[    0.000000] [      T0] Command line: i8042.debug=1 quiet net.ifnames=0 loop.max_part=7 root=/dev/sda5 resume=swap:/dev/sda6 mitigations=off log_buf_len=128M
[    0.000000] [      T0] Disabled fast string operations
[    0.000000] [      T0] reserving inaccessible SNB gfx pages
[    0.000000] [      T0] BIOS-provided physical RAM map:
[    0.000000] [      T0] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
[    0.000000] [      T0] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x0000000000100000-0x00000000b5a27fff] usable
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000b5a28000-0x00000000b6e28fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000b6e29000-0x00000000b8860fff] usable
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000b8861000-0x00000000b8aa9fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000b8aaa000-0x00000000bac8efff] usable
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000bac8f000-0x00000000baca7fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000baca8000-0x00000000bacb6fff] ACPI NVS
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000bacb7000-0x00000000badfafff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000badfb000-0x00000000badfcfff] ACPI NVS
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000badfd000-0x00000000badfefff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000badff000-0x00000000bae01fff] ACPI NVS
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000bae02000-0x00000000bae09fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000bae0a000-0x00000000bae1afff] ACPI NVS
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000bae1b000-0x00000000baf17fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000baf18000-0x00000000baf1bfff] ACPI NVS
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000baf1c000-0x00000000baf1efff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000baf1f000-0x00000000baf9efff] ACPI NVS
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000baf9f000-0x00000000baffefff] ACPI data
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000bafff000-0x00000000baffffff] usable
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000ffd80000-0x00000000ffffffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x0000000100000000-0x000000023fdfffff] usable
[    0.000000] [      T0] NX (Execute Disable) protection: active
[    0.000000] [      T0] APIC: Static calls initialized
[    0.000000] [      T0] SMBIOS 2.6 present.
[    0.000000] [      T0] DMI: Dell Inc.          Dell System XPS 15Z/, BIOS A09 01/13/2012
[    0.000000] [      T0] DMI: Memory slots populated: 2/2
[    0.000000] [      T0] tsc: Fast TSC calibration using PIT
[    0.000000] [      T0] tsc: Detected 2294.742 MHz processor
[    0.000787] [      T0] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000791] [      T0] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000806] [      T0] last_pfn = 0x23fe00 max_arch_pfn = 0x400000000
[    0.000814] [      T0] MTRR map: 8 entries (3 fixed + 5 variable; max 23), built from 10 variable MTRRs
[    0.000817] [      T0] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.001480] [      T0] last_pfn = 0xbb000 max_arch_pfn = 0x400000000
[    0.001498] [      T0] Kernel/User page tables isolation: disabled on command line.
[    0.149836] [      T0] printk: log_buf_len: 134217728 bytes
[    0.149839] [      T0] printk: early log buf free: 127592(97%)
[    0.149841] [      T0] RAMDISK: [mem 0x7fbc5000-0x7fffefff]
[    0.149849] [      T0] ACPI: Early table checksum verification disabled
[    0.149853] [      T0] ACPI: RSDP 0x00000000000F00E0 000024 (v02 DELL  )
[    0.149858] [      T0] ACPI: XSDT 0x00000000BAFFE120 00008C (v01 DELL   QA09     00000002 LOHR 00000002)
[    0.149865] [      T0] ACPI: FACP 0x00000000BAFF0000 0000F4 (v03 DELL   QA09     00000002 PTL  00000002)
[    0.149871] [      T0] ACPI: DSDT 0x00000000BAFF3000 008A57 (v02 DELL   SNB-CPT  00000000 INTL 20061109)
[    0.149875] [      T0] ACPI: FACS 0x00000000BAF40000 000040
[    0.149878] [      T0] ACPI: FACS 0x00000000BAF40000 000040
[    0.149880] [      T0] ACPI: SLIC 0x00000000BAFFD000 000176 (v01 DELL   QA09     00000002 LOHR 00000001)
[    0.149884] [      T0] ACPI: SSDT 0x00000000BAFFC000 000166 (v01 DELL   PtidDevc 00001000 INTL 20061109)
[    0.149888] [      T0] ACPI: ASF! 0x00000000BAFF2000 0000A5 (v32 DELL   QA09     00000002 PTL  00000002)
[    0.149891] [      T0] ACPI: HPET 0x00000000BAFEF000 000038 (v01 DELL   QA09     00000002 PTL  00000002)
[    0.149895] [      T0] ACPI: APIC 0x00000000BAFEE000 000098 (v01 DELL   QA09     00000002 PTL  00000002)
[    0.149898] [      T0] ACPI: MCFG 0x00000000BAFED000 00003C (v01 DELL   QA09     00000002 PTL  00000002)
[    0.149902] [      T0] ACPI: SSDT 0x00000000BAFEC000 000B3B (v01 NvORef NvOptTbl 00001000 INTL 20061109)
[    0.149905] [      T0] ACPI: SSDT 0x00000000BAFEB000 000780 (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
[    0.149909] [      T0] ACPI: SSDT 0x00000000BAFEA000 000996 (v01 PmRef  CpuPm    00003000 INTL 20061109)
[    0.149913] [      T0] ACPI: UEFI 0x00000000BAFE9000 00003E (v01 DELL   QA09     00000002 PTL  00000002)
[    0.149916] [      T0] ACPI: UEFI 0x00000000BAFE8000 000042 (v01 PTL    COMBUF   00000001 PTL  00000001)
[    0.149919] [      T0] ACPI: UEFI 0x00000000BAFE7000 00026A (v01 DELL   QA09     00000002 PTL  00000002)
[    0.149922] [      T0] ACPI: Reserving FACP table memory at [mem 0xbaff0000-0xbaff00f3]
[    0.149924] [      T0] ACPI: Reserving DSDT table memory at [mem 0xbaff3000-0xbaffba56]
[    0.149926] [      T0] ACPI: Reserving FACS table memory at [mem 0xbaf40000-0xbaf4003f]
[    0.149927] [      T0] ACPI: Reserving FACS table memory at [mem 0xbaf40000-0xbaf4003f]
[    0.149928] [      T0] ACPI: Reserving SLIC table memory at [mem 0xbaffd000-0xbaffd175]
[    0.149929] [      T0] ACPI: Reserving SSDT table memory at [mem 0xbaffc000-0xbaffc165]
[    0.149930] [      T0] ACPI: Reserving ASF! table memory at [mem 0xbaff2000-0xbaff20a4]
[    0.149931] [      T0] ACPI: Reserving HPET table memory at [mem 0xbafef000-0xbafef037]
[    0.149932] [      T0] ACPI: Reserving APIC table memory at [mem 0xbafee000-0xbafee097]
[    0.149933] [      T0] ACPI: Reserving MCFG table memory at [mem 0xbafed000-0xbafed03b]
[    0.149934] [      T0] ACPI: Reserving SSDT table memory at [mem 0xbafec000-0xbafecb3a]
[    0.149935] [      T0] ACPI: Reserving SSDT table memory at [mem 0xbafeb000-0xbafeb77f]
[    0.149936] [      T0] ACPI: Reserving SSDT table memory at [mem 0xbafea000-0xbafea995]
[    0.149938] [      T0] ACPI: Reserving UEFI table memory at [mem 0xbafe9000-0xbafe903d]
[    0.149939] [      T0] ACPI: Reserving UEFI table memory at [mem 0xbafe8000-0xbafe8041]
[    0.149940] [      T0] ACPI: Reserving UEFI table memory at [mem 0xbafe7000-0xbafe7269]
[    0.150005] [      T0] No NUMA configuration found
[    0.150006] [      T0] Faking a node at [mem 0x0000000000000000-0x000000023fdfffff]
[    0.150010] [      T0] NODE_DATA(0) allocated [mem 0x21bdf7000-0x21bdfafff]
[    0.150032] [      T0] Zone ranges:
[    0.150033] [      T0]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.150035] [      T0]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.150037] [      T0]   Normal   [mem 0x0000000100000000-0x000000023fdfffff]
[    0.150039] [      T0] Movable zone start for each node
[    0.150040] [      T0] Early memory node ranges
[    0.150040] [      T0]   node   0: [mem 0x0000000000001000-0x000000000009cfff]
[    0.150042] [      T0]   node   0: [mem 0x0000000000100000-0x00000000b5a27fff]
[    0.150044] [      T0]   node   0: [mem 0x00000000b6e29000-0x00000000b8860fff]
[    0.150045] [      T0]   node   0: [mem 0x00000000b8aaa000-0x00000000bac8efff]
[    0.150046] [      T0]   node   0: [mem 0x00000000bafff000-0x00000000baffffff]
[    0.150047] [      T0]   node   0: [mem 0x0000000100000000-0x000000023fdfffff]
[    0.150049] [      T0] Initmem setup node 0 [mem 0x0000000000001000-0x000000023fdfffff]
[    0.150055] [      T0] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.150092] [      T0] On node 0, zone DMA: 99 pages in unavailable ranges
[    0.156691] [      T0] On node 0, zone DMA32: 5121 pages in unavailable ranges
[    0.156779] [      T0] On node 0, zone DMA32: 585 pages in unavailable ranges
[    0.156789] [      T0] On node 0, zone DMA32: 880 pages in unavailable ranges
[    0.168507] [      T0] On node 0, zone Normal: 20480 pages in unavailable ranges
[    0.168521] [      T0] On node 0, zone Normal: 512 pages in unavailable ranges
[    0.168541] [      T0] Reserving Intel graphics memory at [mem 0xbba00000-0xbf9fffff]
[    0.168726] [      T0] ACPI: PM-Timer IO Port: 0x408
[    0.168734] [      T0] CPU topo: Ignoring hot-pluggable APIC ID 0 in present package.
[    0.168738] [      T0] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.168740] [      T0] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.168751] [      T0] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.168754] [      T0] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.168756] [      T0] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.168761] [      T0] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.168762] [      T0] ACPI: HPET id: 0x8086a301 base: 0xfed00000
[    0.168767] [      T0] TSC deadline timer available
[    0.168774] [      T0] CPU topo: Max. logical packages:   1
[    0.168775] [      T0] CPU topo: Max. logical dies:       1
[    0.168776] [      T0] CPU topo: Max. dies per package:   1
[    0.168782] [      T0] CPU topo: Max. threads per core:   2
[    0.168783] [      T0] CPU topo: Num. cores per package:     2
[    0.168784] [      T0] CPU topo: Num. threads per package:   4
[    0.168784] [      T0] CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
[    0.168786] [      T0] CPU topo: Rejected CPUs 4
[    0.168815] [      T0] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.168818] [      T0] PM: hibernation: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
[    0.168819] [      T0] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[    0.168820] [      T0] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.168821] [      T0] PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.168823] [      T0] PM: hibernation: Registered nosave memory: [mem 0xb5a28000-0xb6e28fff]
[    0.168825] [      T0] PM: hibernation: Registered nosave memory: [mem 0xb8861000-0xb8aa9fff]
[    0.168827] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbac8f000-0xbaca7fff]
[    0.168828] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbaca8000-0xbacb6fff]
[    0.168829] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbacb7000-0xbadfafff]
[    0.168830] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbadfb000-0xbadfcfff]
[    0.168831] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbadfd000-0xbadfefff]
[    0.168832] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbadff000-0xbae01fff]
[    0.168833] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbae02000-0xbae09fff]
[    0.168834] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbae0a000-0xbae1afff]
[    0.168835] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbae1b000-0xbaf17fff]
[    0.168836] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbaf18000-0xbaf1bfff]
[    0.168837] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbaf1c000-0xbaf1efff]
[    0.168838] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbaf1f000-0xbaf9efff]
[    0.168839] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbaf9f000-0xbaffefff]
[    0.168841] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbb000000-0xbf9fffff]
[    0.168842] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbfa00000-0xf7ffffff]
[    0.168843] [      T0] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.168844] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[    0.168845] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.168846] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfed07fff]
[    0.168847] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
[    0.168848] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfed09000-0xfed0ffff]
[    0.168849] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
[    0.168850] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
[    0.168851] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.168852] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[    0.168852] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.168853] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffd7ffff]
[    0.168854] [      T0] PM: hibernation: Registered nosave memory: [mem 0xffd80000-0xffffffff]
[    0.168856] [      T0] [mem 0xbfa00000-0xf7ffffff] available for PCI devices
[    0.168858] [      T0] Booting paravirtualized kernel on bare hardware
[    0.168860] [      T0] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.175744] [      T0] setup_percpu: NR_CPUS:8 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.176073] [      T0] percpu: Embedded 48 pages/cpu s157528 r8192 d30888 u524288
[    0.176084] [      T0] pcpu-alloc: s157528 r8192 d30888 u524288 alloc=1*2097152
[    0.176087] [      T0] pcpu-alloc: [0] 0 1 2 3 
[    0.176110] [      T0] Kernel command line: i8042.debug=1 quiet net.ifnames=0 loop.max_part=7 root=/dev/sda5 resume=swap:/dev/sda6 mitigations=off log_buf_len=128M
[    0.177356] [      T0] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.177945] [      T0] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.178029] [      T0] Fallback order for Node 0: 0 
[    0.178033] [      T0] Built 1 zonelists, mobility grouping on.  Total pages: 2069474
[    0.178035] [      T0] Policy zone: Normal
[    0.178037] [      T0] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.178039] [      T0] software IO TLB: area num 4.
[    0.221085] [      T0] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.221667] [      T0] Dynamic Preempt: voluntary
[    0.221708] [      T0] rcu: Preemptible hierarchical RCU implementation.
[    0.221710] [      T0] rcu: 	RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.
[    0.221712] [      T0] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.221713] [      T0] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.221720] [      T0] NR_IRQS: 4352, nr_irqs: 456, preallocated irqs: 16
[    0.221917] [      T0] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.223712] [      T0] Console: colour VGA+ 80x25
[    0.223716] [      T0] printk: legacy console [tty0] enabled
[    0.223755] [      T0] ACPI: Core revision 20240322
[    0.223861] [      T0] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.223879] [      T0] APIC: Switch to symmetric I/O mode setup
[    0.223948] [      T0] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.224393] [      T0] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.243878] [      T0] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2113cdf41c5, max_idle_ns: 440795221655 ns
[    0.243884] [      T0] Calibrating delay loop (skipped), value calculated using timer frequency.. 4589.48 BogoMIPS (lpj=9178968)
[    0.243899] [      T0] Disabled fast string operations
[    0.243931] [      T0] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.243933] [      T0] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.243937] [      T0] process: using mwait in idle threads
[    0.243940] [      T0] Spectre V2 : User space: Vulnerable
[    0.243942] [      T0] Speculative Store Bypass: Vulnerable
[    0.243948] [      T0] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.243950] [      T0] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.243951] [      T0] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.243953] [      T0] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.243955] [      T0] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.264068] [      T0] Freeing SMP alternatives memory: 44K
[    0.264077] [      T0] pid_max: default: 32768 minimum: 301
[    0.264140] [      T0] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.264157] [      T0] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.267944] [      T1] smpboot: CPU0: Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz (family: 0x6, model: 0x2a, stepping: 0x7)
[    0.268130] [      T1] Performance Events: PEBS fmt1+, SandyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.268147] [      T1] ... version:                3
[    0.268149] [      T1] ... bit width:              48
[    0.268150] [      T1] ... generic registers:      4
[    0.268151] [      T1] ... value mask:             0000ffffffffffff
[    0.268152] [      T1] ... max period:             00007fffffffffff
[    0.268153] [      T1] ... fixed-purpose events:   3
[    0.268154] [      T1] ... event mask:             000000070000000f
[    0.268273] [      T1] signal: max sigframe size: 1776
[    0.268288] [      T1] Estimated ratio of average max frequency by base frequency (times 1024): 1202
[    0.268335] [      T1] rcu: Hierarchical SRCU implementation.
[    0.268337] [      T1] rcu: 	Max phase no-delay instances is 1000.
[    0.268390] [      T1] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[    0.268558] [      T1] smp: Bringing up secondary CPUs ...
[    0.268669] [      T1] smpboot: x86: Booting SMP configuration:
[    0.268671] [      T1] .... node  #0, CPUs:      #2
[    0.005931] [      T0] Disabled fast string operations
[    0.269885] [      T1]  #1 #3
[    0.005931] [      T0] Disabled fast string operations
[    0.005931] [      T0] Disabled fast string operations
[    0.275897] [      T1] smp: Brought up 1 node, 4 CPUs
[    0.275899] [      T1] smpboot: Total of 4 processors activated (18357.93 BogoMIPS)
[    0.278974] [      T1] Memory: 7440612K/8277896K available (14336K kernel code, 1105K rwdata, 4660K rodata, 2272K init, 556K bss, 834024K reserved, 0K cma-reserved)
[    0.278974] [      T1] devtmpfs: initialized
[    0.278974] [      T1] ACPI: PM: Registering ACPI NVS region [mem 0xbaca8000-0xbacb6fff] (61440 bytes)
[    0.278974] [      T1] ACPI: PM: Registering ACPI NVS region [mem 0xbadfb000-0xbadfcfff] (8192 bytes)
[    0.278974] [      T1] ACPI: PM: Registering ACPI NVS region [mem 0xbadff000-0xbae01fff] (12288 bytes)
[    0.278974] [      T1] ACPI: PM: Registering ACPI NVS region [mem 0xbae0a000-0xbae1afff] (69632 bytes)
[    0.278974] [      T1] ACPI: PM: Registering ACPI NVS region [mem 0xbaf18000-0xbaf1bfff] (16384 bytes)
[    0.278974] [      T1] ACPI: PM: Registering ACPI NVS region [mem 0xbaf1f000-0xbaf9efff] (524288 bytes)
[    0.278974] [      T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.278974] [      T1] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.278974] [      T1] pinctrl core: initialized pinctrl subsystem
[    0.280010] [      T1] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.280210] [      T1] thermal_sys: Registered thermal governor 'fair_share'
[    0.280212] [      T1] thermal_sys: Registered thermal governor 'bang_bang'
[    0.280213] [      T1] thermal_sys: Registered thermal governor 'step_wise'
[    0.280214] [      T1] thermal_sys: Registered thermal governor 'user_space'
[    0.280229] [      T1] cpuidle: using governor ladder
[    0.280234] [      T1] cpuidle: using governor menu
[    0.280296] [      T1] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.280351] [      T1] PCI: ECAM [mem 0xf8000000-0xfbffffff] (base 0xf8000000) for domain 0000 [bus 00-3f]
[    0.280358] [      T1] PCI: ECAM [mem 0xf8000000-0xfbffffff] reserved as E820 entry
[    0.280368] [      T1] PCI: Using configuration type 1 for base access
[    0.280445] [      T1] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.347883] [      T1] raid6: sse2x4   gen() 10773 MB/s
[    0.415884] [      T1] raid6: sse2x2   gen() 11229 MB/s
[    0.483885] [      T1] raid6: sse2x1   gen()  8991 MB/s
[    0.483887] [      T1] raid6: using algorithm sse2x2 gen() 11229 MB/s
[    0.551883] [      T1] raid6: .... xor() 6147 MB/s, rmw enabled
[    0.551885] [      T1] raid6: using ssse3x2 recovery algorithm
[    0.551932] [      T1] ACPI: Added _OSI(Module Device)
[    0.551934] [      T1] ACPI: Added _OSI(Processor Device)
[    0.551935] [      T1] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.551936] [      T1] ACPI: Added _OSI(Processor Aggregator Device)
[    0.556561] [      T1] ACPI: 5 ACPI AML tables successfully acquired and loaded
[    0.556963] [      T1] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.556963] [      T1] ACPI: Dynamic OEM Table Load:
[    0.556963] [      T1] ACPI: SSDT 0xFFFF9571C089B000 00067C (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
[    0.556963] [      T1] ACPI: Dynamic OEM Table Load:
[    0.556963] [      T1] ACPI: SSDT 0xFFFF9571C015B000 000303 (v01 PmRef  ApIst    00003000 INTL 20061109)
[    0.556963] [      T1] ACPI: Dynamic OEM Table Load:
[    0.556963] [      T1] ACPI: SSDT 0xFFFF9571C018C600 000119 (v01 PmRef  ApCst    00003000 INTL 20061109)
[    0.557482] [      T1] ACPI: EC: EC started
[    0.557484] [      T1] ACPI: EC: interrupt blocked
[    0.561373] [      T1] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.561377] [      T1] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions
[    0.561379] [      T1] ACPI: Interpreter enabled
[    0.561397] [      T1] ACPI: PM: (supports S0 S3 S4 S5)
[    0.561399] [      T1] ACPI: Using IOAPIC for interrupt routing
[    0.561787] [      T1] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.561789] [      T1] PCI: Using E820 reservations for host bridge windows
[    0.561936] [      T1] ACPI: Enabled 7 GPEs in block 00 to 3F
[    0.567389] [      T1] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.567397] [      T1] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.567428] [      T1] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability LTR]
[    0.567431] [      T1] acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME AER PCIeCapability LTR]
[    0.567433] [      T1] acpi PNP0A08:00: _OSC: platform retains control of PCIe features (AE_ERROR)
[    0.567781] [      T1] PCI host bridge to bus 0000:00
[    0.567786] [      T1] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.567789] [      T1] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.567792] [      T1] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.567794] [      T1] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff window]
[    0.567795] [      T1] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[    0.567798] [      T1] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.567812] [      T1] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000 conventional PCI endpoint
[    0.567885] [      T1] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400 PCIe Root Port
[    0.567899] [      T1] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.567902] [      T1] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.567905] [      T1] pci 0000:00:01.0:   bridge window [mem 0xf0000000-0xf10fffff]
[    0.567910] [      T1] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.567935] [      T1] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.568013] [      T1] pci 0000:00:02.0: [8086:0116] type 00 class 0x030000 conventional PCI endpoint
[    0.568023] [      T1] pci 0000:00:02.0: BAR 0 [mem 0xf1400000-0xf17fffff 64bit]
[    0.568029] [      T1] pci 0000:00:02.0: BAR 2 [mem 0xe0000000-0xefffffff 64bit pref]
[    0.568033] [      T1] pci 0000:00:02.0: BAR 4 [io  0x4000-0x403f]
[    0.568045] [      T1] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.568406] [      T1] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000 conventional PCI endpoint
[    0.568428] [      T1] pci 0000:00:16.0: BAR 0 [mem 0xf1c05000-0xf1c0500f 64bit]
[    0.568504] [      T1] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.568573] [      T1] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320 conventional PCI endpoint
[    0.568591] [      T1] pci 0000:00:1a.0: BAR 0 [mem 0xf1c0a000-0xf1c0a3ff]
[    0.568675] [      T1] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.568761] [      T1] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300 PCIe Root Complex Integrated Endpoint
[    0.568780] [      T1] pci 0000:00:1b.0: BAR 0 [mem 0xf1c00000-0xf1c03fff 64bit]
[    0.568861] [      T1] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.568960] [      T1] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400 PCIe Root Port
[    0.569001] [      T1] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.569122] [      T1] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.569241] [      T1] pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400 PCIe Root Port
[    0.569292] [      T1] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.569302] [      T1] pci 0000:00:1c.1:   bridge window [mem 0xf1b00000-0xf1bfffff]
[    0.569415] [      T1] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.569534] [      T1] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400 PCIe Root Port
[    0.569585] [      T1] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.569595] [      T1] pci 0000:00:1c.3:   bridge window [mem 0xf1a00000-0xf1afffff]
[    0.569708] [      T1] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.569817] [      T1] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400 PCIe Root Port
[    0.569849] [      T1] pci 0000:00:1c.4: PCI bridge to [bus 05]
[    0.569856] [      T1] pci 0000:00:1c.4:   bridge window [mem 0xf1900000-0xf19fffff]
[    0.569886] [      T1] pci 0000:00:1c.4: broken device, retraining non-functional downstream link at 2.5GT/s
[    1.575890] [      T1] pci 0000:00:1c.4: retraining failed
[    1.575987] [      T1] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    1.576089] [      T1] pci 0000:00:1c.5: [8086:1c1a] type 01 class 0x060400 PCIe Root Port
[    1.576121] [      T1] pci 0000:00:1c.5: PCI bridge to [bus 06]
[    1.576126] [      T1] pci 0000:00:1c.5:   bridge window [io  0x2000-0x2fff]
[    1.576130] [      T1] pci 0000:00:1c.5:   bridge window [mem 0xf1800000-0xf18fffff]
[    1.576199] [      T1] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    1.576295] [      T1] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320 conventional PCI endpoint
[    1.576312] [      T1] pci 0000:00:1d.0: BAR 0 [mem 0xf1c09000-0xf1c093ff]
[    1.576397] [      T1] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    1.576485] [      T1] pci 0000:00:1f.0: [8086:1c4b] type 00 class 0x060100 conventional PCI endpoint
[    1.576666] [      T1] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601 conventional PCI endpoint
[    1.576680] [      T1] pci 0000:00:1f.2: BAR 0 [io  0x4088-0x408f]
[    1.576688] [      T1] pci 0000:00:1f.2: BAR 1 [io  0x4094-0x4097]
[    1.576696] [      T1] pci 0000:00:1f.2: BAR 2 [io  0x4080-0x4087]
[    1.576704] [      T1] pci 0000:00:1f.2: BAR 3 [io  0x4090-0x4093]
[    1.576712] [      T1] pci 0000:00:1f.2: BAR 4 [io  0x4060-0x407f]
[    1.576720] [      T1] pci 0000:00:1f.2: BAR 5 [mem 0xf1c08000-0xf1c087ff]
[    1.576762] [      T1] pci 0000:00:1f.2: PME# supported from D3hot
[    1.576831] [      T1] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500 conventional PCI endpoint
[    1.576850] [      T1] pci 0000:00:1f.3: BAR 0 [mem 0xf1c04000-0xf1c040ff 64bit]
[    1.576871] [      T1] pci 0000:00:1f.3: BAR 4 [io  0xefa0-0xefbf]
[    1.576985] [      T1] pci 0000:01:00.0: [10de:0df5] type 00 class 0x030000 PCIe Endpoint
[    1.576996] [      T1] pci 0000:01:00.0: BAR 0 [mem 0xf0000000-0xf0ffffff]
[    1.577004] [      T1] pci 0000:01:00.0: BAR 1 [mem 0xc0000000-0xcfffffff 64bit pref]
[    1.577012] [      T1] pci 0000:01:00.0: BAR 3 [mem 0xd0000000-0xd1ffffff 64bit pref]
[    1.577018] [      T1] pci 0000:01:00.0: BAR 5 [io  0x3000-0x307f]
[    1.577024] [      T1] pci 0000:01:00.0: ROM [mem 0xfff80000-0xffffffff pref]
[    1.577030] [      T1] pci 0000:01:00.0: enabling Extended Tags
[    1.577040] [      T1] pci 0000:01:00.0: Enabling HDA controller
[    1.577238] [      T1] pci 0000:01:00.1: [10de:0bea] type 00 class 0x040300 PCIe Endpoint
[    1.577249] [      T1] pci 0000:01:00.1: BAR 0 [mem 0xf1000000-0xf1003fff]
[    1.577278] [      T1] pci 0000:01:00.1: enabling Extended Tags
[    1.577363] [      T1] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.577433] [      T1] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    1.577697] [      T1] pci 0000:03:00.0: [8086:0091] type 00 class 0x028000 PCIe Endpoint
[    1.577874] [      T1] pci 0000:03:00.0: BAR 0 [mem 0xf1b00000-0xf1b01fff 64bit]
[    1.578627] [      T1] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    1.579179] [      T1] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    1.579335] [      T1] pci 0000:04:00.0: [1033:0194] type 00 class 0x0c0330 PCIe Endpoint
[    1.579368] [      T1] pci 0000:04:00.0: BAR 0 [mem 0xf1a00000-0xf1a01fff 64bit]
[    1.579530] [      T1] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[    1.579768] [      T1] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    1.579842] [      T1] pci 0000:00:1c.4: PCI bridge to [bus 05]
[    1.579927] [      T1] pci 0000:06:00.0: [1969:1083] type 00 class 0x020000 PCIe Endpoint
[    1.579962] [      T1] pci 0000:06:00.0: BAR 0 [mem 0xf1800000-0xf183ffff 64bit]
[    1.579977] [      T1] pci 0000:06:00.0: BAR 2 [io  0x2000-0x207f]
[    1.580049] [      T1] pci 0000:06:00.0: [Firmware Bug]: disabling VPD access (can't determine size of non-standard VPD format)
[    1.580125] [      T1] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.580255] [      T1] pci 0000:00:1c.5: PCI bridge to [bus 06]
[    1.580867] [      T1] ACPI: PCI: Interrupt link LNKA configured for IRQ 11
[    1.580913] [      T1] ACPI: PCI: Interrupt link LNKB configured for IRQ 9
[    1.580955] [      T1] ACPI: PCI: Interrupt link LNKC configured for IRQ 9
[    1.580997] [      T1] ACPI: PCI: Interrupt link LNKD configured for IRQ 10
[    1.581040] [      T1] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    1.581041] [      T1] ACPI: PCI: Interrupt link LNKE disabled
[    1.581082] [      T1] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    1.581084] [      T1] ACPI: PCI: Interrupt link LNKF disabled
[    1.581125] [      T1] ACPI: PCI: Interrupt link LNKG configured for IRQ 10
[    1.581166] [      T1] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[    1.581426] [      T1] ACPI: EC: interrupt unblocked
[    1.581428] [      T1] ACPI: EC: event unblocked
[    1.581435] [      T1] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    1.581436] [      T1] ACPI: EC: GPE=0x17
[    1.581438] [      T1] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC initialization complete
[    1.581440] [      T1] ACPI: \_SB_.PCI0.LPCB.EC0_: EC: Used to handle transactions and events
[    1.581488] [      T1] iommu: Default domain type: Translated
[    1.581490] [      T1] iommu: DMA domain TLB invalidation policy: lazy mode
[    1.581556] [      T1] SCSI subsystem initialized
[    1.581564] [      T1] libata version 3.00 loaded.
[    1.581564] [      T1] PCI: Using ACPI for IRQ routing
[    1.581593] [      T1] PCI: pci_cache_line_size set to 64 bytes
[    1.581745] [      T1] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[    1.581748] [      T1] e820: reserve RAM buffer [mem 0xb5a28000-0xb7ffffff]
[    1.581750] [      T1] e820: reserve RAM buffer [mem 0xb8861000-0xbbffffff]
[    1.581752] [      T1] e820: reserve RAM buffer [mem 0xbac8f000-0xbbffffff]
[    1.581754] [      T1] e820: reserve RAM buffer [mem 0xbb000000-0xbbffffff]
[    1.581756] [      T1] e820: reserve RAM buffer [mem 0x23fe00000-0x23fffffff]
[    1.581770] [      T1] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    1.581770] [      T1] pci 0000:00:02.0: vgaarb: bridge control possible
[    1.581770] [      T1] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    1.581770] [      T1] pci 0000:01:00.0: vgaarb: bridge control possible
[    1.581770] [      T1] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    1.581770] [      T1] vgaarb: loaded
[    1.581770] [      T1] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[    1.581770] [      T1] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    1.581770] [      T1] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    1.585917] [      T1] clocksource: Switched to clocksource tsc-early
[    1.586017] [      T1] pnp: PnP ACPI init
[    1.586108] [      T1] system 00:00: [io  0x0680-0x069f] has been reserved
[    1.586112] [      T1] system 00:00: [io  0x1000-0x1003] has been reserved
[    1.586115] [      T1] system 00:00: [io  0x1004-0x1013] has been reserved
[    1.586116] [      T1] system 00:00: [io  0xffff] has been reserved
[    1.586118] [      T1] system 00:00: [io  0x0400-0x0453] has been reserved
[    1.586120] [      T1] system 00:00: [io  0x0458-0x047f] has been reserved
[    1.586122] [      T1] system 00:00: [io  0x0500-0x057f] has been reserved
[    1.586125] [      T1] system 00:00: [io  0x164e-0x164f] has been reserved
[    1.586200] [      T1] system 00:02: [io  0x0454-0x0457] has been reserved
[    1.586360] [      T1] pnp 00:05: disabling [mem 0xfffff000-0xffffffff] because it overlaps 0000:01:00.0 BAR 6 [mem 0xfff80000-0xffffffff pref]
[    1.586385] [      T1] system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    1.586388] [      T1] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[    1.586390] [      T1] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[    1.586392] [      T1] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[    1.586394] [      T1] system 00:05: [mem 0xf8000000-0xfbffffff] has been reserved
[    1.586396] [      T1] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[    1.586397] [      T1] system 00:05: [mem 0xfed90000-0xfed93fff] has been reserved
[    1.586399] [      T1] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
[    1.586401] [      T1] system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
[    1.586404] [      T1] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[    1.586551] [      T1] pnp: PnP ACPI: found 6 devices
[    1.590296] [      T1] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    1.590359] [      T1] NET: Registered PF_INET protocol family
[    1.590520] [      T1] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    1.592898] [      T1] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    1.592916] [      T1] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    1.592929] [      T1] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    1.593012] [      T1] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    1.593405] [      T1] TCP: Hash tables configured (established 65536 bind 65536)
[    1.593451] [      T1] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    1.593475] [      T1] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    1.593537] [      T1] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    1.593548] [      T1] pci 0000:01:00.0: ROM [mem 0xfff80000-0xffffffff pref]: can't claim; no compatible bridge window
[    1.593566] [      T1] pci 0000:01:00.0: ROM [mem 0xf1080000-0xf10fffff pref]: assigned
[    1.593569] [      T1] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.593572] [      T1] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    1.593576] [      T1] pci 0000:00:01.0:   bridge window [mem 0xf0000000-0xf10fffff]
[    1.593579] [      T1] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    1.593583] [      T1] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    1.593601] [      T1] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    1.593607] [      T1] pci 0000:00:1c.1:   bridge window [mem 0xf1b00000-0xf1bfffff]
[    1.593619] [      T1] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    1.593626] [      T1] pci 0000:00:1c.3:   bridge window [mem 0xf1a00000-0xf1afffff]
[    1.593637] [      T1] pci 0000:00:1c.4: PCI bridge to [bus 05]
[    1.593642] [      T1] pci 0000:00:1c.4:   bridge window [mem 0xf1900000-0xf19fffff]
[    1.593651] [      T1] pci 0000:00:1c.5: PCI bridge to [bus 06]
[    1.593654] [      T1] pci 0000:00:1c.5:   bridge window [io  0x2000-0x2fff]
[    1.593659] [      T1] pci 0000:00:1c.5:   bridge window [mem 0xf1800000-0xf18fffff]
[    1.593669] [      T1] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    1.593671] [      T1] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    1.593673] [      T1] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    1.593675] [      T1] pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfeafffff window]
[    1.593677] [      T1] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff window]
[    1.593678] [      T1] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    1.593680] [      T1] pci_bus 0000:01: resource 1 [mem 0xf0000000-0xf10fffff]
[    1.593682] [      T1] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
[    1.593684] [      T1] pci_bus 0000:03: resource 1 [mem 0xf1b00000-0xf1bfffff]
[    1.593686] [      T1] pci_bus 0000:04: resource 1 [mem 0xf1a00000-0xf1afffff]
[    1.593687] [      T1] pci_bus 0000:05: resource 1 [mem 0xf1900000-0xf19fffff]
[    1.593689] [      T1] pci_bus 0000:06: resource 0 [io  0x2000-0x2fff]
[    1.593691] [      T1] pci_bus 0000:06: resource 1 [mem 0xf1800000-0xf18fffff]
[    1.594119] [      T1] pci 0000:01:00.1: extending delay after power-on from D3hot to 20 msec
[    1.594153] [      T1] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
[    1.595396] [      T1] PCI: CLS 64 bytes, default 64
[    1.595412] [      T1] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.595413] [      T1] software IO TLB: mapped [mem 0x00000000b1a28000-0x00000000b5a28000] (64MB)
[    1.595458] [     T11] Trying to unpack rootfs image as initramfs...
[    1.595961] [      T1] Initialise system trusted keyrings
[    1.596018] [      T1] workingset: timestamp_bits=40 max_order=21 bucket_order=0
[    1.596029] [      T1] zbud: loaded
[    1.596166] [      T1] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.613081] [      T1] xor: automatically using best checksumming function   avx       
[    1.613085] [      T1] async_tx: api initialized (async)
[    1.613087] [      T1] Key type asymmetric registered
[    1.613089] [      T1] Asymmetric key parser 'x509' registered
[    1.613091] [      T1] Asymmetric key parser 'pkcs8' registered
[    1.613113] [      T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    1.726066] [      T1] ACPI: AC: AC Adapter [ADP0] (on-line)
[    1.726182] [      T1] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    1.726225] [      T1] ACPI: button: Power Button [PWRB]
[    1.726273] [      T1] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[    1.726307] [      T1] ACPI: button: Sleep Button [SLPB]
[    1.726354] [      T1] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
[    1.726407] [      T1] ACPI: button: Lid Switch [LID0]
[    1.726453] [      T1] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    1.726531] [      T1] ACPI: button: Power Button [PWRF]
[    1.743008] [     T40] ACPI: battery: Slot [BAT0] (battery present)
[    1.747405] [      T1] Linux agpgart interface v0.103
[    1.747539] [      T1] ACPI: bus type drm_connector registered
[    1.747698] [      T1] i915 0000:00:02.0: [drm] Found SANDYBRIDGE (device ID 0116) display version 6.00
[    1.748061] [      T1] i915 0000:00:02.0: vgaarb: deactivate vga console
[    1.748456] [      T1] Console: switching to colour dummy device 80x25
[    1.749329] [      T1] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=io+mem
[    2.026284] [      T1] i915 0000:00:02.0: [drm] Skipping intel_backlight registration
[    2.026480] [      T1] [drm] Initialized i915 1.6.0 for 0000:00:02.0 on minor 0
[    2.026750] [      T1] ACPI: video: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[    2.026795] [      T1] ACPI: video: Video Device [PEGP] (multi-head: yes  rom: yes  post: no)
[    2.026876] [      T1] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:2c/LNXVIDEO:00/input/input4
[    2.027448] [      T1] ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    2.027579] [      T1] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input5
[    2.027919] [      T1] acpi device:31: registered as cooling_device4
[    2.158653] [      T1] fbcon: i915drmfb (fb0) is primary device
[    2.269676] [     T11] Freeing initrd memory: 4328K
[    2.622039] [    T692] tsc: Refined TSC clocksource calibration: 2294.785 MHz
[    2.622064] [    T692] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2113f68e5e2, max_idle_ns: 440795213111 ns
[    2.622117] [    T692] clocksource: Switched to clocksource tsc
[    3.119604] [      T1] Console: switching to colour frame buffer device 170x48
[    3.137632] [      T1] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[    3.140161] [      T1] brd: module loaded
[    3.141378] [      T1] loop: module loaded
[    3.141624] [      T1] ahci 0000:00:1f.2: version 3.0
[    3.141817] [      T1] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[    3.151908] [      T1] ahci 0000:00:1f.2: AHCI vers 0001.0300, 32 command slots, 6 Gbps, SATA mode
[    3.151912] [      T1] ahci 0000:00:1f.2: 3/6 ports implemented (port mask 0x13)
[    3.151915] [      T1] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems sxs apst 
[    3.174433] [      T1] scsi host0: ahci
[    3.174551] [      T1] scsi host1: ahci
[    3.174655] [      T1] scsi host2: ahci
[    3.174753] [      T1] scsi host3: ahci
[    3.174855] [      T1] scsi host4: ahci
[    3.174958] [      T1] scsi host5: ahci
[    3.174998] [      T1] ata1: SATA max UDMA/133 abar m2048@0xf1c08000 port 0xf1c08100 irq 26 lpm-pol 0
[    3.175003] [      T1] ata2: SATA max UDMA/133 abar m2048@0xf1c08000 port 0xf1c08180 irq 26 lpm-pol 0
[    3.175004] [      T1] ata3: DUMMY
[    3.175006] [      T1] ata4: DUMMY
[    3.175008] [      T1] ata5: SATA max UDMA/133 abar m2048@0xf1c08000 port 0xf1c08300 irq 26 lpm-pol 0
[    3.175010] [      T1] ata6: DUMMY
[    3.175221] [      T1] tun: Universal TUN/TAP device driver, 1.6
[    3.175347] [      T1] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    3.175393] [      T1] i8042: [0] 20 -> i8042 (command)
[    3.175612] [      T1] i8042: [0] 67 <- i8042 (return)
[    3.175666] [      T1] i8042: [0] 20 -> i8042 (command)
[    3.175882] [      T1] i8042: [0] 67 <- i8042 (return)
[    3.175887] [      T1] i8042: [0] 60 -> i8042 (command)
[    3.176049] [      T1] i8042: [0] 76 -> i8042 (parameter)
[    3.176269] [      T1] i8042: [0] d3 -> i8042 (command)
[    3.176535] [      T1] i8042: [0] 5a -> i8042 (parameter)
[    3.176754] [      T1] i8042: [0] 5a <- i8042 (return)
[    3.176757] [      T1] i8042: [0] a7 -> i8042 (command)
[    3.176865] [      T1] i8042: [0] 20 -> i8042 (command)
[    3.177081] [      T1] i8042: [0] 76 <- i8042 (return)
[    3.177084] [      T1] i8042: [0] a8 -> i8042 (command)
[    3.177296] [      T1] i8042: [0] 20 -> i8042 (command)
[    3.177565] [      T1] i8042: [0] 56 <- i8042 (return)
[    3.177569] [      T1] i8042: [0] 60 -> i8042 (command)
[    3.177731] [      T1] i8042: [0] 74 -> i8042 (parameter)
[    3.177949] [      T1] i8042: [1] d3 -> i8042 (command)
[    3.178163] [      T1] i8042: [1] f0 -> i8042 (parameter)
[    3.178381] [      T1] i8042: [1] f0 <- i8042 (return)
[    3.178394] [      T1] i8042: [1] d3 -> i8042 (command)
[    3.178504] [      T1] i8042: [1] 56 -> i8042 (parameter)
[    3.178724] [      T1] i8042: [1] 56 <- i8042 (return)
[    3.178728] [      T1] i8042: [1] d3 -> i8042 (command)
[    3.178837] [      T1] i8042: [1] a4 -> i8042 (parameter)
[    3.179056] [      T1] i8042: [1] a4 <- i8042 (return)
[    3.179073] [      T1] i8042: [1] 60 -> i8042 (command)
[    3.179184] [      T1] i8042: [1] 56 -> i8042 (parameter)
[    3.179407] [      T1] i8042: [1] 60 -> i8042 (command)
[    3.179621] [      T1] i8042: [1] 47 -> i8042 (parameter)
[    3.179625] [      T1] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.179630] [      T1] serio: i8042 AUX port at 0x60,0x64 irq 12
[    3.179781] [      T1] mousedev: PS/2 mouse device common for all mice
[    3.179979] [      T1] rtc_cmos 00:01: RTC can wake from S4
[    3.180189] [     T10] i8042: [1] f5 -> i8042 (kbd-data)
[    3.180275] [      T1] rtc_cmos 00:01: registered as rtc0
[    3.180313] [      T1] rtc_cmos 00:01: setting system clock to 2024-08-28T21:45:57 UTC (1724881557)
[    3.180349] [      T1] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    3.180423] [      T1] intel_pstate: Intel P-state driver initializing
[    3.180566] [      T1] hid: raw HID events driver (C) Jiri Kosina
[    3.180684] [      C2] i8042: [1] fa <- i8042 (interrupt, 0, 1)
[    3.180732] [      T1] NET: Registered PF_PACKET protocol family
[    3.180748] [     T10] i8042: [1] ed -> i8042 (kbd-data)
[    3.180765] [      T1] Key type dns_resolver registered
[    3.180954] [      C2] i8042: [1] fa <- i8042 (interrupt, 0, 1)
[    3.180966] [     T10] i8042: [1] 00 -> i8042 (kbd-data)
[    3.180972] [     T19] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    3.181012] [      T1] microcode: Current revision: 0x0000002f
[    3.181016] [      T1] microcode: Updated early from: 0x00000025
[    3.181108] [      T1] IPI shorthand broadcast: enabled
[    3.181254] [      C2] i8042: [1] fa <- i8042 (interrupt, 0, 1)
[    3.181266] [     T10] i8042: [1] f3 -> i8042 (kbd-data)
[    3.181596] [      C2] i8042: [1] fa <- i8042 (interrupt, 0, 1)
[    3.181606] [     T10] i8042: [1] 00 -> i8042 (kbd-data)
[    3.181866] [      C2] i8042: [1] fa <- i8042 (interrupt, 0, 1)
[    3.181881] [     T10] i8042: [1] f4 -> i8042 (kbd-data)
[    3.182309] [      C2] i8042: [2] fa <- i8042 (interrupt, 0, 1)
[    3.182907] [     T10] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input6
[    3.183224] [     T10] i8042: [2] d4 -> i8042 (command)
[    3.183338] [     T10] i8042: [2] f2 -> i8042 (parameter)
[    3.184443] [      T1] sched_clock: Marking stable (3180003084, 1931814)->(3233359327, -51424429)
[    3.184570] [      T1] registered taskstats version 1
[    3.184573] [      T1] Loading compiled-in X.509 certificates
[    3.186071] [      T1] Demotion targets for Node 0: null
[    3.186100] [      T1] Key type .fscrypt registered
[    3.186102] [      T1] Key type fscrypt-provisioning registered
[    3.186287] [      C1] i8042: [3] fa <- i8042 (interrupt, 1, 12)
[    3.186416] [      T1] Btrfs loaded, zoned=no, fsverity=no
[    3.186696] [      T1] Key type encrypted registered
[    3.187141] [      C1] i8042: [3] 00 <- i8042 (interrupt, 1, 12)
[    3.187150] [     T10] i8042: [3] 60 -> i8042 (command)
[    3.187418] [     T10] i8042: [3] 45 -> i8042 (parameter)
[    3.187629] [     T10] i8042: [3] 60 -> i8042 (command)
[    3.187843] [     T10] i8042: [3] 47 -> i8042 (parameter)
[    3.188027] [     T10] i8042: [3] d4 -> i8042 (command)
[    3.188241] [     T10] i8042: [3] f2 -> i8042 (parameter)
[    3.190689] [      C1] i8042: [4] fa <- i8042 (interrupt, 1, 12)
[    3.192047] [      C1] i8042: [4] 00 <- i8042 (interrupt, 1, 12)
[    3.192056] [     T10] i8042: [4] d4 -> i8042 (command)
[    3.192219] [     T10] i8042: [4] f6 -> i8042 (parameter)
[    3.194911] [      C1] i8042: [5] fa <- i8042 (interrupt, 1, 12)
[    3.194930] [     T10] i8042: [5] d4 -> i8042 (command)
[    3.195199] [     T10] i8042: [5] f3 -> i8042 (parameter)
[    3.198333] [      C1] i8042: [6] fa <- i8042 (interrupt, 1, 12)
[    3.198347] [     T10] i8042: [6] d4 -> i8042 (command)
[    3.198511] [     T10] i8042: [6] 0a -> i8042 (parameter)
[    3.201562] [      C1] i8042: [6] fa <- i8042 (interrupt, 1, 12)
[    3.201577] [     T10] i8042: [6] d4 -> i8042 (command)
[    3.201846] [     T10] i8042: [6] e8 -> i8042 (parameter)
[    3.204176] [      C1] i8042: [7] fa <- i8042 (interrupt, 1, 12)
[    3.204191] [     T10] i8042: [7] d4 -> i8042 (command)
[    3.204354] [     T10] i8042: [7] 00 -> i8042 (parameter)
[    3.206629] [      C1] i8042: [8] fa <- i8042 (interrupt, 1, 12)
[    3.206644] [     T10] i8042: [8] d4 -> i8042 (command)
[    3.207224] [     T10] i8042: [8] f3 -> i8042 (parameter)
[    3.209757] [      C1] i8042: [8] fa <- i8042 (interrupt, 1, 12)
[    3.209771] [     T10] i8042: [8] d4 -> i8042 (command)
[    3.209935] [     T10] i8042: [8] 14 -> i8042 (parameter)
[    3.212596] [      C1] i8042: [9] fa <- i8042 (interrupt, 1, 12)
[    3.212611] [     T10] i8042: [9] d4 -> i8042 (command)
[    3.212879] [     T10] i8042: [9] f3 -> i8042 (parameter)
[    3.215346] [      C1] i8042: [10] fa <- i8042 (interrupt, 1, 12)
[    3.215361] [     T10] i8042: [10] d4 -> i8042 (command)
[    3.215526] [     T10] i8042: [10] 3c -> i8042 (parameter)
[    3.217822] [      C1] i8042: [10] fa <- i8042 (interrupt, 1, 12)
[    3.217836] [     T10] i8042: [10] d4 -> i8042 (command)
[    3.218419] [     T10] i8042: [10] f3 -> i8042 (parameter)
[    3.221030] [      C1] i8042: [11] fa <- i8042 (interrupt, 1, 12)
[    3.221046] [     T10] i8042: [11] d4 -> i8042 (command)
[    3.221314] [     T10] i8042: [11] 28 -> i8042 (parameter)
[    3.223932] [      C1] i8042: [12] fa <- i8042 (interrupt, 1, 12)
[    3.223949] [     T10] i8042: [12] d4 -> i8042 (command)
[    3.224114] [     T10] i8042: [12] f3 -> i8042 (parameter)
[    3.226616] [      C1] i8042: [13] fa <- i8042 (interrupt, 1, 12)
[    3.226631] [     T10] i8042: [13] d4 -> i8042 (command)
[    3.226795] [     T10] i8042: [13] 14 -> i8042 (parameter)
[    3.229293] [      C1] i8042: [13] fa <- i8042 (interrupt, 1, 12)
[    3.229307] [     T10] i8042: [13] d4 -> i8042 (command)
[    3.229472] [     T10] i8042: [13] f3 -> i8042 (parameter)
[    3.232062] [      C1] i8042: [14] fa <- i8042 (interrupt, 1, 12)
[    3.232078] [     T10] i8042: [14] d4 -> i8042 (command)
[    3.232348] [     T10] i8042: [14] 14 -> i8042 (parameter)
[    3.235233] [      C1] i8042: [15] fa <- i8042 (interrupt, 1, 12)
[    3.235249] [     T10] i8042: [15] d4 -> i8042 (command)
[    3.235413] [     T10] i8042: [15] f3 -> i8042 (parameter)
[    3.237883] [      C1] i8042: [15] fa <- i8042 (interrupt, 1, 12)
[    3.237898] [     T10] i8042: [15] d4 -> i8042 (command)
[    3.239154] [     T10] i8042: [15] 3c -> i8042 (parameter)
[    3.241410] [      C1] i8042: [16] fa <- i8042 (interrupt, 1, 12)
[    3.241425] [     T10] i8042: [16] d4 -> i8042 (command)
[    3.241588] [     T10] i8042: [16] f3 -> i8042 (parameter)
[    3.244731] [      C1] i8042: [17] fa <- i8042 (interrupt, 1, 12)
[    3.244746] [     T10] i8042: [17] d4 -> i8042 (command)
[    3.245015] [     T10] i8042: [17] 28 -> i8042 (parameter)
[    3.247342] [      C1] i8042: [18] fa <- i8042 (interrupt, 1, 12)
[    3.247358] [     T10] i8042: [18] d4 -> i8042 (command)
[    3.247523] [     T10] i8042: [18] f3 -> i8042 (parameter)
[    3.250746] [      C1] i8042: [19] fa <- i8042 (interrupt, 1, 12)
[    3.250761] [     T10] i8042: [19] d4 -> i8042 (command)
[    3.250925] [     T10] i8042: [19] 14 -> i8042 (parameter)
[    3.253279] [      C1] i8042: [19] fa <- i8042 (interrupt, 1, 12)
[    3.253293] [     T10] i8042: [19] d4 -> i8042 (command)
[    3.253457] [     T10] i8042: [19] f3 -> i8042 (parameter)
[    3.256162] [      C1] i8042: [20] fa <- i8042 (interrupt, 1, 12)
[    3.256176] [     T10] i8042: [20] d4 -> i8042 (command)
[    3.256394] [     T10] i8042: [20] 14 -> i8042 (parameter)
[    3.258685] [      C1] i8042: [21] fa <- i8042 (interrupt, 1, 12)
[    3.258727] [     T10] i8042: [21] d4 -> i8042 (command)
[    3.258901] [     T10] i8042: [21] f2 -> i8042 (parameter)
[    3.261396] [      C1] i8042: [21] fa <- i8042 (interrupt, 1, 12)
[    3.262322] [      C1] i8042: [22] 00 <- i8042 (interrupt, 1, 12)
[    3.262364] [     T10] i8042: [22] d4 -> i8042 (command)
[    3.262483] [     T10] i8042: [22] e8 -> i8042 (parameter)
[    3.265310] [      C1] i8042: [22] fa <- i8042 (interrupt, 1, 12)
[    3.265356] [     T10] i8042: [22] d4 -> i8042 (command)
[    3.265483] [     T10] i8042: [22] 00 -> i8042 (parameter)
[    3.267789] [      C1] i8042: [23] fa <- i8042 (interrupt, 1, 12)
[    3.267836] [     T10] i8042: [23] d4 -> i8042 (command)
[    3.268067] [     T10] i8042: [23] e8 -> i8042 (parameter)
[    3.270691] [      C1] i8042: [24] fa <- i8042 (interrupt, 1, 12)
[    3.270733] [     T10] i8042: [24] d4 -> i8042 (command)
[    3.270903] [     T10] i8042: [24] 00 -> i8042 (parameter)
[    3.273219] [      C1] i8042: [24] fa <- i8042 (interrupt, 1, 12)
[    3.273266] [     T10] i8042: [24] d4 -> i8042 (command)
[    3.273444] [     T10] i8042: [24] e8 -> i8042 (parameter)
[    3.276392] [      C1] i8042: [25] fa <- i8042 (interrupt, 1, 12)
[    3.276437] [     T10] i8042: [25] d4 -> i8042 (command)
[    3.276565] [     T10] i8042: [25] 00 -> i8042 (parameter)
[    3.278915] [      C1] i8042: [26] fa <- i8042 (interrupt, 1, 12)
[    3.278963] [     T10] i8042: [26] d4 -> i8042 (command)
[    3.279759] [     T10] i8042: [26] e8 -> i8042 (parameter)
[    3.282276] [      C1] i8042: [27] fa <- i8042 (interrupt, 1, 12)
[    3.282320] [     T10] i8042: [27] d4 -> i8042 (command)
[    3.282490] [     T10] i8042: [27] 00 -> i8042 (parameter)
[    3.285192] [      C1] i8042: [27] fa <- i8042 (interrupt, 1, 12)
[    3.285258] [     T10] i8042: [27] d4 -> i8042 (command)
[    3.285533] [     T10] i8042: [27] e9 -> i8042 (parameter)
[    3.287916] [      C1] i8042: [28] fa <- i8042 (interrupt, 1, 12)
[    3.288741] [      C1] i8042: [28] 33 <- i8042 (interrupt, 1, 12)
[    3.290313] [      C1] i8042: [29] cc <- i8042 (interrupt, 1, 12)
[    3.291194] [      C1] i8042: [29] a2 <- i8042 (interrupt, 1, 12)
[    3.291256] [     T10] i8042: [29] d4 -> i8042 (command)
[    3.291539] [     T10] i8042: [29] e8 -> i8042 (parameter)
[    3.293902] [      C1] i8042: [29] fa <- i8042 (interrupt, 1, 12)
[    3.294024] [     T10] i8042: [30] d4 -> i8042 (command)
[    3.294820] [     T10] i8042: [30] 00 -> i8042 (parameter)
[    3.297167] [      C1] i8042: [30] fa <- i8042 (interrupt, 1, 12)
[    3.297223] [     T10] i8042: [30] d4 -> i8042 (command)
[    3.297498] [     T10] i8042: [30] e8 -> i8042 (parameter)
[    3.301593] [      C1] i8042: [31] fa <- i8042 (interrupt, 1, 12)
[    3.301655] [     T10] i8042: [31] d4 -> i8042 (command)
[    3.301773] [     T10] i8042: [31] 00 -> i8042 (parameter)
[    3.304192] [      C1] i8042: [32] fa <- i8042 (interrupt, 1, 12)
[    3.304255] [     T10] i8042: [32] d4 -> i8042 (command)
[    3.304530] [     T10] i8042: [32] e8 -> i8042 (parameter)
[    3.307768] [      C1] i8042: [33] fa <- i8042 (interrupt, 1, 12)
[    3.307818] [     T10] i8042: [33] d4 -> i8042 (command)
[    3.307936] [     T10] i8042: [33] 00 -> i8042 (parameter)
[    3.310843] [      C1] i8042: [34] fa <- i8042 (interrupt, 1, 12)
[    3.310890] [     T10] i8042: [34] d4 -> i8042 (command)
[    3.311173] [     T10] i8042: [34] e8 -> i8042 (parameter)
[    3.313576] [      C1] i8042: [34] fa <- i8042 (interrupt, 1, 12)
[    3.313617] [     T10] i8042: [34] d4 -> i8042 (command)
[    3.313735] [     T10] i8042: [34] 00 -> i8042 (parameter)
[    3.316713] [      C1] i8042: [35] fa <- i8042 (interrupt, 1, 12)
[    3.316756] [     T10] i8042: [35] d4 -> i8042 (command)
[    3.316867] [     T10] i8042: [35] e9 -> i8042 (parameter)
[    3.319482] [      C1] i8042: [36] fa <- i8042 (interrupt, 1, 12)
[    3.320381] [      C1] i8042: [36] 33 <- i8042 (interrupt, 1, 12)
[    3.321288] [      C1] i8042: [36] cc <- i8042 (interrupt, 1, 12)
[    3.322197] [      C1] i8042: [37] a2 <- i8042 (interrupt, 1, 12)
[    3.489528] [    T777] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.492990] [    T777] ata1.00: ACPI cmd 00/00:00:00:00:00:a0(NOP) rejected by device (Stat=0x51 Err=0x04)
[    3.494587] [    T777] ata1.00: ATA-10: KINGSTON SA400S37240G, S1Z40102, max UDMA/133
[    3.497529] [    T777] ata1.00: 468862128 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    3.505133] [    T777] ata1.00: ACPI cmd 00/00:00:00:00:00:a0(NOP) rejected by device (Stat=0x51 Err=0x04)
[    3.509690] [    T777] ata1.00: configured for UDMA/133
[    3.510124] [     T40] scsi 0:0:0:0: Direct-Access     ATA      KINGSTON SA400S3 0102 PQ: 0 ANSI: 5
[    3.510807] [    T808] sd 0:0:0:0: [sda] 468862128 512-byte logical blocks: (240 GB/224 GiB)
[    3.510854] [    T808] sd 0:0:0:0: [sda] Write Protect is off
[    3.510859] [    T808] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.510884] [    T808] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.510908] [    T808] sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[    3.522029] [     T10] XXX looks like timeout
[    3.522081] [     T10] i8042: [87] d4 -> i8042 (command)
[    3.522246] [     T10] i8042: [87] ff -> i8042 (parameter)
[    3.524892] [      C1] i8042: [87] fa <- i8042 (interrupt, 1, 12)
[    3.535109] [    T808]  sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
[    3.536670] [    T808] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.726173] [      C1] i8042: [138] aa <- i8042 (interrupt, 1, 12)
[    3.727048] [      C1] i8042: [138] 00 <- i8042 (interrupt, 1, 12)
[    3.727114] [     T10] i8042: [138] d4 -> i8042 (command)
[    3.727338] [     T10] i8042: [138] e8 -> i8042 (parameter)
[    3.730204] [      C1] i8042: [139] fa <- i8042 (interrupt, 1, 12)
[    3.730267] [     T10] i8042: [139] d4 -> i8042 (command)
[    3.730544] [     T10] i8042: [139] 00 -> i8042 (parameter)
[    3.732877] [      C1] i8042: [139] fa <- i8042 (interrupt, 1, 12)
[    3.732954] [     T10] i8042: [139] d4 -> i8042 (command)
[    3.733546] [     T10] i8042: [139] e8 -> i8042 (parameter)
[    3.735939] [      C1] i8042: [140] fa <- i8042 (interrupt, 1, 12)
[    3.736009] [     T10] i8042: [140] d4 -> i8042 (command)
[    3.736180] [     T10] i8042: [140] 00 -> i8042 (parameter)
[    3.738968] [      C1] i8042: [141] fa <- i8042 (interrupt, 1, 12)
[    3.739036] [     T10] i8042: [141] d4 -> i8042 (command)
[    3.739208] [     T10] i8042: [141] e8 -> i8042 (parameter)
[    3.741600] [      C1] i8042: [141] fa <- i8042 (interrupt, 1, 12)
[    3.741674] [     T10] i8042: [141] d4 -> i8042 (command)
[    3.741793] [     T10] i8042: [141] 00 -> i8042 (parameter)
[    3.744162] [      C1] i8042: [142] fa <- i8042 (interrupt, 1, 12)
[    3.744227] [     T10] i8042: [142] d4 -> i8042 (command)
[    3.744715] [     T10] i8042: [142] e8 -> i8042 (parameter)
[    3.747175] [      C1] i8042: [143] fa <- i8042 (interrupt, 1, 12)
[    3.747250] [     T10] i8042: [143] d4 -> i8042 (command)
[    3.747473] [     T10] i8042: [143] 00 -> i8042 (parameter)
[    3.749990] [      C1] i8042: [144] fa <- i8042 (interrupt, 1, 12)
[    3.750062] [     T10] i8042: [144] d4 -> i8042 (command)
[    3.750235] [     T10] i8042: [144] e9 -> i8042 (parameter)
[    3.752646] [      C1] i8042: [144] fa <- i8042 (interrupt, 1, 12)
[    3.753557] [      C1] i8042: [144] 33 <- i8042 (interrupt, 1, 12)
[    3.754551] [      C1] i8042: [145] cc <- i8042 (interrupt, 1, 12)
[    3.756453] [      C1] i8042: [145] a2 <- i8042 (interrupt, 1, 12)
[    3.825622] [    T782] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    3.830176] [    T782] ata2.00: ATAPI: HL-DT-ST DVD+/-RW GS30N, A101, max UDMA/133
[    3.835304] [    T782] ata2.00: configured for UDMA/133
[    3.840911] [     T53] scsi 1:0:0:0: CD-ROM            HL-DT-ST DVD+-RW GS30N    A101 PQ: 0 ANSI: 5
[    3.954119] [     T10] i8042: [195] d4 -> i8042 (command)
[    3.954250] [     T10] i8042: [195] e8 -> i8042 (parameter)
[    3.957631] [      C1] i8042: [195] fa <- i8042 (interrupt, 1, 12)
[    3.957711] [     T10] i8042: [195] d4 -> i8042 (command)
[    3.957936] [     T10] i8042: [195] 01 -> i8042 (parameter)
[    3.960278] [      C1] i8042: [196] fa <- i8042 (interrupt, 1, 12)
[    3.960360] [     T10] i8042: [196] d4 -> i8042 (command)
[    3.960532] [     T10] i8042: [196] e8 -> i8042 (parameter)
[    3.963098] [      C1] i8042: [197] fa <- i8042 (interrupt, 1, 12)
[    3.963179] [     T10] i8042: [197] d4 -> i8042 (command)
[    3.963298] [     T10] i8042: [197] 00 -> i8042 (parameter)
[    3.965673] [      C1] i8042: [197] fa <- i8042 (interrupt, 1, 12)
[    3.965755] [     T10] i8042: [197] d4 -> i8042 (command)
[    3.966670] [     T10] i8042: [198] e8 -> i8042 (parameter)
[    3.969042] [      C1] i8042: [198] fa <- i8042 (interrupt, 1, 12)
[    3.969124] [     T10] i8042: [198] d4 -> i8042 (command)
[    3.969245] [     T10] i8042: [198] 01 -> i8042 (parameter)
[    3.972294] [      C1] i8042: [199] fa <- i8042 (interrupt, 1, 12)
[    3.972377] [     T10] i8042: [199] d4 -> i8042 (command)
[    3.972549] [     T10] i8042: [199] e8 -> i8042 (parameter)
[    3.975052] [      C1] i8042: [200] fa <- i8042 (interrupt, 1, 12)
[    3.975133] [     T10] i8042: [200] d4 -> i8042 (command)
[    3.975253] [     T10] i8042: [200] 00 -> i8042 (parameter)
[    3.977680] [      C1] i8042: [200] fa <- i8042 (interrupt, 1, 12)
[    3.977764] [     T10] i8042: [200] d4 -> i8042 (command)
[    3.977988] [     T10] i8042: [201] e9 -> i8042 (parameter)
[    3.980412] [      C1] i8042: [201] fa <- i8042 (interrupt, 1, 12)
[    3.981550] [      C1] i8042: [201] 01 <- i8042 (interrupt, 1, 12)
[    3.982412] [      C1] i8042: [202] 00 <- i8042 (interrupt, 1, 12)
[    3.983296] [      C1] i8042: [202] 64 <- i8042 (interrupt, 1, 12)
[    4.174008] [    T797] ata5: SATA link down (SStatus 0 SControl 300)
[    4.174169] [      T1] clk: Disabling unused clocks
[    4.174182] [      T1] PM: genpd: Disabling unused power domains
[    4.175879] [      T1] Freeing unused kernel image (initmem) memory: 2272K
[    4.175913] [      T1] Write protecting the kernel read-only data: 20480k
[    4.177677] [      T1] Freeing unused kernel image (rodata/data gap) memory: 1484K
[    4.177698] [      T1] Run /init as init process
[    4.177702] [      T1]   with arguments:
[    4.177706] [      T1]     /init
[    4.177710] [      T1]   with environment:
[    4.177713] [      T1]     HOME=/
[    4.177716] [      T1]     TERM=linux
[    4.180129] [      T1] pingu: init start
[    4.182017] [     T10] i8042: [252] d4 -> i8042 (command)
[    4.182151] [     T10] i8042: [252] f3 -> i8042 (parameter)
[    4.184597] [      C1] i8042: [252] fa <- i8042 (interrupt, 1, 12)
[    4.184617] [     T10] i8042: [252] d4 -> i8042 (command)
[    4.184835] [     T10] i8042: [252] 64 -> i8042 (parameter)
[    4.186450] [      T1] pingu: detection done
[    4.187265] [      C1] i8042: [253] fa <- i8042 (interrupt, 1, 12)
[    4.187328] [     T10] i8042: [253] d4 -> i8042 (command)
[    4.187506] [     T10] i8042: [253] e8 -> i8042 (parameter)
[    4.189807] [      C1] i8042: [253] fa <- i8042 (interrupt, 1, 12)
[    4.189823] [     T10] i8042: [253] d4 -> i8042 (command)
[    4.190040] [     T10] i8042: [254] 03 -> i8042 (parameter)
[    4.190204] [   T1240] PM: Image not found (code -22)
[    4.191565] [   T1242] EXT4-fs (sda5): mounting ext3 file system using the ext4 subsystem
[    4.193212] [      C1] i8042: [254] fa <- i8042 (interrupt, 1, 12)
[    4.193267] [     T10] i8042: [254] d4 -> i8042 (command)
[    4.193433] [     T10] i8042: [254] e6 -> i8042 (parameter)
[    4.195714] [      C1] i8042: [255] fa <- i8042 (interrupt, 1, 12)
[    4.195880] [     T10] input: CyPS/2 Cypress Trackpad as /devices/platform/i8042/serio1/input/input8
[    4.196029] [     T10] i8042: [255] d4 -> i8042 (command)
[    4.196195] [     T10] i8042: [255] f4 -> i8042 (parameter)
[    4.198752] [      C1] i8042: [256] fa <- i8042 (interrupt, 1, 12)
[    4.201800] [   T1242] EXT4-fs (sda5): mounted filesystem f7516a55-bcdf-4a62-9d42-f9558b037929 r/w with ordered data mode. Quota mode: disabled.
[    4.201876] [      T1] pingu: user mounted
[    4.311968] [      T1] systemd[1]: RTC configured in localtime, applying delta of -240 minutes to system time.
[    4.327726] [      T1] systemd[1]: Inserted module 'autofs4'
[    4.343991] [      T1] systemd[1]: systemd 256.5-1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT +LIBARCHIVE)
[    4.343999] [      T1] systemd[1]: Detected architecture x86-64.
[    4.346644] [      T1] systemd[1]: Hostname set to <DellXPS15Z>.
[    4.385102] [      T1] systemd[1]: bpf-restrict-fs: BPF LSM hook not enabled in the kernel, BPF LSM not supported.
[    4.532176] [      T1] systemd[1]: Queued start job for default target graphical.target.
[    4.579582] [      T1] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[    4.580047] [      T1] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[    4.580316] [      T1] systemd[1]: Created slice user.slice - User and Session Slice.
[    4.580400] [      T1] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[    4.580456] [      T1] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[    4.580672] [      T1] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[    4.580709] [      T1] systemd[1]: Expecting device dev-disk-by\x2dlabel-SWAP.device - /dev/disk/by-label/SWAP...
[    4.580756] [      T1] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[    4.580782] [      T1] systemd[1]: Reached target slices.target - Slice Units.
[    4.582267] [      T1] systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
[    4.582356] [      T1] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[    4.582456] [      T1] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[    4.582557] [      T1] systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
[    4.582593] [      T1] systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    4.582613] [      T1] systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    4.582704] [      T1] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[    4.582775] [      T1] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[    4.582913] [      T1] systemd[1]: dev-hugepages.mount - Huge Pages File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/mm/hugepages).
[    4.584207] [      T1] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[    4.585104] [      T1] systemd[1]: Mounting run-lock.mount - Legacy Locks Directory /run/lock...
[    4.586258] [      T1] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[    4.586402] [      T1] systemd[1]: sys-kernel-tracing.mount - Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
[    4.590187] [      T1] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[    4.594114] [      T1] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[    4.595440] [      T1] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[    4.600149] [      T1] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[    4.603346] [      T1] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[    4.610216] [      T1] systemd[1]: Starting modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics...
[    4.610357] [      T1] systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
[    4.610734] [      T1] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
[    4.610741] [      T1] systemd[1]: systemd-journald.service: (This warning is only shown for the first unit using IP firewalling.)
[    4.613398] [      T1] systemd[1]: Starting systemd-journald.service - Journal Service...
[    4.615050] [      T1] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[    4.615093] [      T1] systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    4.618627] [   T1281] fuse: init (API version 7.40)
[    4.619469] [      T1] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[    4.619559] [      T1] systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    4.622302] [      T1] systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
[    4.624272] [      T1] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[    4.628752] [      T1] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[    4.628909] [      T1] systemd[1]: Mounted run-lock.mount - Legacy Locks Directory /run/lock.
[    4.629046] [      T1] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[    4.629381] [      T1] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[    4.633922] [      T1] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[    4.634263] [      T1] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[    4.635309] [      T1] systemd[1]: modprobe@drm.service: Deactivated successfully.
[    4.635550] [      T1] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[    4.635915] [      T1] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[    4.636152] [      T1] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[    4.636512] [      T1] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[    4.636755] [      T1] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[    4.637119] [      T1] systemd[1]: modprobe@nvme_fabrics.service: Deactivated successfully.
[    4.637344] [      T1] systemd[1]: Finished modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics.
[    4.637729] [      T1] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[    4.639183] [      T1] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[    4.640172] [      T1] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[    4.641775] [      T1] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[    4.644190] [      T1] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[    4.645338] [      T1] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[    4.647029] [      T1] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[    4.647130] [      T1] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[    4.651485] [      T1] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[    4.651531] [      T1] systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    4.657071] [      T1] systemd[1]: Finished systemd-udev-load-credentials.service - Load udev Rules from Credentials.
[    4.659260] [      T1] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[    4.659706] [   T1283] systemd-journald[1283]: /etc/systemd/journald.conf:32: Failed to parse size value, ignoring: 
[    4.660467] [      T1] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[    4.661086] [   T1283] systemd-journald[1283]: Collecting audit messages is disabled.
[    4.672335] [      T1] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
[    4.685241] [      T1] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[    4.685425] [      T1] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
[    4.690134] [      T1] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[    4.707732] [      T1] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[    4.714159] [      T1] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[    4.714643] [      T1] systemd[1]: Started systemd-journald.service - Journal Service.
[    4.757736] [   T1283] systemd-journald[1283]: Received client request to flush runtime journal.
[    4.871195] [   T2227] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    4.871386] [   T2227] scsi 1:0:0:0: Attached scsi generic sg1 type 5
[    5.089628] [   T2253] ACPI: bus type USB registered
[    5.089689] [   T2253] usbcore: registered new interface driver usbfs
[    5.089710] [   T2253] usbcore: registered new interface driver hub
[    5.089734] [   T2253] usbcore: registered new device driver usb
[    5.091345] [   T2079] thermal LNXTHERM:00: registered as thermal_zone0
[    5.091351] [   T2079] ACPI: thermal: Thermal Zone [TZ00] (65 C)
[    5.091662] [   T2079] thermal LNXTHERM:01: registered as thermal_zone1
[    5.091667] [   T2079] ACPI: thermal: Thermal Zone [TZ01] (65 C)
[    5.107256] [    T807] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    5.107270] [    T807] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    5.107284] [    T807] ehci-pci 0000:00:1a.0: debug port 2
[    5.121373] [    T807] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf1c0a000
[    5.133974] [    T807] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    5.134039] [    T807] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.11
[    5.134045] [    T807] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.134048] [    T807] usb usb1: Product: EHCI Host Controller
[    5.134050] [    T807] usb usb1: Manufacturer: Linux 6.11-pingu ehci_hcd
[    5.134052] [    T807] usb usb1: SerialNumber: 0000:00:1a.0
[    5.134409] [    T807] hub 1-0:1.0: USB hub found
[    5.134468] [    T807] hub 1-0:1.0: 2 ports detected
[    5.136737] [     T57] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    5.136751] [     T57] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    5.136768] [     T57] ehci-pci 0000:00:1d.0: debug port 2
[    5.143448] [     T57] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf1c09000
[    5.152907] [   T2179] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.4)
[    5.157953] [     T57] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    5.158021] [     T57] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.11
[    5.158027] [     T57] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.158030] [     T57] usb usb2: Product: EHCI Host Controller
[    5.158033] [     T57] usb usb2: Manufacturer: Linux 6.11-pingu ehci_hcd
[    5.158036] [     T57] usb usb2: SerialNumber: 0000:00:1d.0
[    5.158219] [     T57] hub 2-0:1.0: USB hub found
[    5.158247] [     T57] hub 2-0:1.0: 2 ports detected
[    5.168831] [   T2254] xhci_hcd 0000:04:00.0: xHCI Host Controller
[    5.168844] [   T2254] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 3
[    5.168971] [   T2254] xhci_hcd 0000:04:00.0: hcc params 0x014042cb hci version 0x96 quirks 0x0000000000000084
[    5.169316] [   T2254] xhci_hcd 0000:04:00.0: xHCI Host Controller
[    5.169324] [   T2254] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 4
[    5.169330] [   T2254] xhci_hcd 0000:04:00.0: Host supports USB 3.0 SuperSpeed
[    5.176445] [   T2079] input: Dell WMI hotkeys as /devices/platform/PNP0C14:00/wmi_bus/wmi_bus-PNP0C14:00/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input9
[    5.184932] [   T2058] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[    5.184941] [   T2058] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[    5.184943] [   T2058] RAPL PMU: hw unit of domain package 2^-16 Joules
[    5.184945] [   T2058] RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
[    5.187630] [   T2254] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.11
[    5.187639] [   T2254] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.187642] [   T2254] usb usb3: Product: xHCI Host Controller
[    5.187645] [   T2254] usb usb3: Manufacturer: Linux 6.11-pingu xhci-hcd
[    5.187647] [   T2254] usb usb3: SerialNumber: 0000:04:00.0
[    5.192942] [   T2254] hub 3-0:1.0: USB hub found
[    5.192959] [   T2254] hub 3-0:1.0: 2 ports detected
[    5.193125] [   T2254] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    5.193155] [   T2254] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.11
[    5.193160] [   T2254] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.193163] [   T2254] usb usb4: Product: xHCI Host Controller
[    5.193165] [   T2254] usb usb4: Manufacturer: Linux 6.11-pingu xhci-hcd
[    5.193168] [   T2254] usb usb4: SerialNumber: 0000:04:00.0
[    5.195804] [    T807] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    5.200960] [    T807] i2c i2c-7: Successfully instantiated SPD at 0x50
[    5.203166] [   T2254] hub 4-0:1.0: USB hub found
[    5.203188] [   T2254] hub 4-0:1.0: 2 ports detected
[    5.216104] [   T1985] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    5.230796] [   T2095] snd_hda_intel 0000:00:1b.0: bound 0000:00:02.0 (ops 0xffffffffadebb020)
[    5.232983] [   T1982] cryptd: max_cpu_qlen set to 1000
[    5.233341] [   T2095] snd_hda_intel 0000:01:00.1: Disabling MSI
[    5.233354] [   T2095] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[    5.252674] [   T1987] AES CTR mode by8 optimization enabled
[    5.253147] [   T2012] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda caddy
[    5.253153] [   T2012] cdrom: Uniform CD-ROM driver Revision: 3.20
[    5.253621] [   T1985] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    5.253988] [   T1985] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[    5.254040] [    T692] platform regulatory.0: Requesting firmware: regulatory.db
[    5.257178] [   T1984] ACPI Warning: \_SB.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20240322/nsarguments-61)
[    5.258999] [   T1984] pci 0000:01:00.0: optimus capabilities: enabled, status dynamic power, hda bios codec supported
[    5.259009] [   T1984] VGA switcheroo: detected Optimus DSM method \_SB_.PCI0.PEG0.PEGP handle
[    5.259092] [    T692] platform regulatory.0: Requesting firmware: regulatory.db.p7s
[    5.259215] [   T1984] nouveau 0000:01:00.0: enabling device (0006 -> 0007)
[    5.259386] [   T1984] nouveau 0000:01:00.0: NVIDIA GF108 (0c1a80a1)
[    5.269024] [   T2663] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC269VB: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    5.269033] [   T2663] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    5.269038] [   T2663] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    5.269041] [   T2663] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    5.269043] [   T2663] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    5.269046] [   T2663] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x18
[    5.269049] [   T2663] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[    5.273659] [   T1985] Intel(R) Wireless WiFi driver for Linux
[    5.278829] [   T1985] iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
[    5.286256] [   T1985] iwlwifi 0000:03:00.0: Detected crf-id 0xa5a5a5a1, cnv-id 0xa5a5a5a1 wfpm id 0xa5a5a5a1
[    5.286318] [   T1985] iwlwifi 0000:03:00.0: PCI dev 0091/5221, rev=0xb0, rfid=0xd55555d5
[    5.286326] [   T1985] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Advanced-N 6230 AGN
[    5.295486] [   T2206] iwlwifi 0000:03:00.0: Requesting firmware: iwlwifi-6000g2b-6.ucode
[    5.303540] [     T36] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[    5.303868] [     T36] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[    5.304018] [     T36] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[    5.304164] [     T36] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[    5.307618] [   T2012] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    5.312121] [   T2206] iwlwifi 0000:03:00.0: loaded firmware version 18.168.6.1 6000g2b-6.ucode op_mode iwldvm
[    5.316723] [     T94] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input10
[    5.316796] [     T94] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input15
[    5.316859] [     T94] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input16
[    5.316920] [     T94] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input17
[    5.336201] [   T1984] nouveau 0000:01:00.0: bios: version 70.08.53.00.07
[    5.355141] [     T19] intel_rapl_common: Found RAPL domain package
[    5.355148] [     T19] intel_rapl_common: Found RAPL domain core
[    5.355150] [     T19] intel_rapl_common: Found RAPL domain uncore
[    5.360150] [   T2728] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG disabled
[    5.360156] [   T2728] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
[    5.360158] [   T2728] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled
[    5.360161] [   T2728] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Advanced-N 6230 AGN, REV=0xB0
[    5.421944] [     T48] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    5.438650] [   T2674] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    5.438932] [   T1984] nouveau 0000:01:00.0: fb: 1024 MiB DDR3
[    5.448244] [   T2728] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[    5.499061] [   T1984] vga_switcheroo: enabled
[    5.499175] [   T1984] nouveau 0000:01:00.0: DRM: VRAM: 1024 MiB
[    5.499179] [   T1984] nouveau 0000:01:00.0: DRM: GART: 1048576 MiB
[    5.499183] [   T1984] nouveau 0000:01:00.0: DRM: TMDS table version 2.0
[    5.500093] [   T1984] nouveau 0000:01:00.0: DRM: MM: using COPY0 for buffer copies
[    5.501082] [   T1984] [drm] Initialized nouveau 1.4.0 for 0000:01:00.0 on minor 1
[    5.501202] [   T1984] nouveau 0000:01:00.0: [drm] Cannot find any crtc or sizes
[    5.501236] [     T94] nouveau 0000:01:00.0: [drm] Cannot find any crtc or sizes
[    5.501242] [     T94] nouveau 0000:01:00.0: [drm] Cannot find any crtc or sizes
[    5.524910] [   T2809] Adding 538140k swap on /dev/sda6.  Priority:-2 extents:1 across:538140k SS
[    5.557951] [      C1] random: crng init done
[    5.586817] [     T48] usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    5.586825] [     T48] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    5.587102] [     T48] hub 2-1:1.0: USB hub found
[    5.587181] [     T48] hub 2-1:1.0: 8 ports detected
[    5.598333] [   T2674] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    5.598347] [   T2674] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    5.598661] [   T2674] hub 1-1:1.0: USB hub found
[    5.598833] [   T2674] hub 1-1:1.0: 6 ports detected
[    5.873967] [     T36] usb 2-1.5: new full-speed USB device number 3 using ehci-pci
[    5.885947] [     T10] usb 1-1.4: new high-speed USB device number 3 using ehci-pci
[    5.986425] [     T36] usb 2-1.5: New USB device found, idVendor=8086, idProduct=0189, bcdDevice=69.19
[    5.986431] [     T36] usb 2-1.5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    6.009162] [   T2035] Bluetooth: Core ver 2.22
[    6.009195] [   T2035] NET: Registered PF_BLUETOOTH protocol family
[    6.009198] [   T2035] Bluetooth: HCI device and connection manager initialized
[    6.009204] [   T2035] Bluetooth: HCI socket layer initialized
[    6.009206] [   T2035] Bluetooth: L2CAP socket layer initialized
[    6.009210] [   T2035] Bluetooth: SCO socket layer initialized
[    6.015489] [   T2035] usbcore: registered new interface driver btusb
[    6.064822] [     T10] usb 1-1.4: New USB device found, idVendor=0c45, idProduct=642a, bcdDevice=13.03
[    6.064829] [     T10] usb 1-1.4: New USB device strings: Mfr=2, Product=1, SerialNumber=0
[    6.064831] [     T10] usb 1-1.4: Product: Laptop_Integrated_Webcam_2HDM
[    6.064832] [     T10] usb 1-1.4: Manufacturer: CN0XRCWG7248717CS49ZA00
[    6.078430] [   T2058] mc: Linux media interface: v0.10
[    6.087138] [   T2058] videodev: Linux video capture interface: v2.00
[    6.095857] [   T2058] usb 1-1.4: Found UVC 1.00 device Laptop_Integrated_Webcam_2HDM (0c45:642a)
[    6.116234] [   T2916] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[    6.137117] [   T2058] usbcore: registered new interface driver uvcvideo
[    6.428726] [   T2916] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[    6.573729] [   T2916] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[    6.876918] [   T2916] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[   10.202165] [   T2916] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[   10.504949] [   T2916] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[   10.641139] [   T2917] wlan0: authenticate with 6c:19:8f:cc:87:1c (local address=88:53:2e:22:b4:a6)
[   10.641166] [   T2917] wlan0: send auth to 6c:19:8f:cc:87:1c (try 1/3)
[   10.642960] [    T807] wlan0: authenticated
[   10.645997] [     T53] wlan0: associate with 6c:19:8f:cc:87:1c (try 1/3)
[   10.650261] [     T53] wlan0: RX AssocResp from 6c:19:8f:cc:87:1c (capab=0x431 status=0 aid=1)
[   10.677778] [     T53] wlan0: associated
[   10.791363] [   T3179] warning: `eeeweather' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[   11.991050] [      C2] i8042: [2204] ** <- i8042 (interrupt, 0, 1)
[   12.156663] [      C2] i8042: [2245] ** <- i8042 (interrupt, 0, 1)
[   12.395491] [      C2] i8042: [2305] ** <- i8042 (interrupt, 0, 1)
[   12.474081] [      C2] i8042: [2325] ** <- i8042 (interrupt, 0, 1)
[   12.613414] [      C2] i8042: [2359] ** <- i8042 (interrupt, 0, 1)
[   12.727731] [      C2] i8042: [2388] ** <- i8042 (interrupt, 0, 1)
[   13.278881] [      C2] i8042: [2526] ** <- i8042 (interrupt, 0, 1)
[   13.279375] [      C2] i8042: [2526] ** <- i8042 (interrupt, 0, 1)
[   13.434158] [      C2] i8042: [2565] ** <- i8042 (interrupt, 0, 1)
[   13.435625] [      C2] i8042: [2565] ** <- i8042 (interrupt, 0, 1)
[   13.931658] [      C2] i8042: [2689] ** <- i8042 (interrupt, 0, 1)
[   14.059298] [      C2] i8042: [2721] ** <- i8042 (interrupt, 0, 1)
[   14.681512] [      C2] i8042: [2876] ** <- i8042 (interrupt, 0, 1)
[   14.829570] [      C2] i8042: [2913] ** <- i8042 (interrupt, 0, 1)
[   14.970266] [      C2] i8042: [2949] ** <- i8042 (interrupt, 0, 1)
[   15.054741] [      C2] i8042: [2970] ** <- i8042 (interrupt, 0, 1)
[   15.089413] [      C2] i8042: [2978] ** <- i8042 (interrupt, 0, 1)
[   15.191774] [      C2] i8042: [3004] ** <- i8042 (interrupt, 0, 1)
[   15.304362] [      C2] i8042: [3032] ** <- i8042 (interrupt, 0, 1)
[   15.451429] [      C2] i8042: [3069] ** <- i8042 (interrupt, 0, 1)
[   15.462172] [      C2] i8042: [3072] ** <- i8042 (interrupt, 0, 1)
[   15.565753] [      C2] i8042: [3097] ** <- i8042 (interrupt, 0, 1)
[   15.662508] [      C2] i8042: [3122] ** <- i8042 (interrupt, 0, 1)
[   15.814445] [      C2] i8042: [3160] ** <- i8042 (interrupt, 0, 1)
[   16.360644] [      C2] i8042: [3296] ** <- i8042 (interrupt, 0, 1)
[   17.034642] [      C2] i8042: [3465] ** <- i8042 (interrupt, 0, 1)
[   17.124641] [      C2] i8042: [3487] ** <- i8042 (interrupt, 0, 1)
[   17.158716] [      C2] i8042: [3496] ** <- i8042 (interrupt, 0, 1)
[   17.244416] [      C2] i8042: [3517] ** <- i8042 (interrupt, 0, 1)
[   17.446391] [      C2] i8042: [3568] ** <- i8042 (interrupt, 0, 1)
[   17.580128] [      C2] i8042: [3601] ** <- i8042 (interrupt, 0, 1)
[   17.718030] [      C2] i8042: [3636] ** <- i8042 (interrupt, 0, 1)
[   17.884606] [      C2] i8042: [3677] ** <- i8042 (interrupt, 0, 1)
[   18.015328] [      C2] i8042: [3710] ** <- i8042 (interrupt, 0, 1)
[   18.026699] [      C2] i8042: [3713] ** <- i8042 (interrupt, 0, 1)
[   18.128989] [      C2] i8042: [3738] ** <- i8042 (interrupt, 0, 1)
[   18.389947] [      C2] i8042: [3803] ** <- i8042 (interrupt, 0, 1)
[   18.559978] [      C2] i8042: [3846] ** <- i8042 (interrupt, 0, 1)
[   20.155459] [      C2] i8042: [4245] ** <- i8042 (interrupt, 0, 1)
[   20.295436] [      C2] i8042: [4280] ** <- i8042 (interrupt, 0, 1)
[   21.118840] [      C2] i8042: [4486] ** <- i8042 (interrupt, 0, 1)
[   21.237438] [      C2] i8042: [4515] ** <- i8042 (interrupt, 0, 1)
[   21.247935] [      C2] i8042: [4518] ** <- i8042 (interrupt, 0, 1)
[   21.460934] [      C2] i8042: [4571] ** <- i8042 (interrupt, 0, 1)
[   22.322087] [      C2] i8042: [4787] ** <- i8042 (interrupt, 0, 1)
[   22.434867] [      C2] i8042: [4815] ** <- i8042 (interrupt, 0, 1)
[   22.500149] [      C2] i8042: [4831] ** <- i8042 (interrupt, 0, 1)
[   22.585106] [      C2] i8042: [4852] ** <- i8042 (interrupt, 0, 1)
[   22.661633] [      C2] i8042: [4871] ** <- i8042 (interrupt, 0, 1)
[   22.725386] [      C2] i8042: [4887] ** <- i8042 (interrupt, 0, 1)
[   22.811834] [      C2] i8042: [4909] ** <- i8042 (interrupt, 0, 1)
[   22.862616] [      C2] i8042: [4922] ** <- i8042 (interrupt, 0, 1)
[   22.950720] [      C2] i8042: [4944] ** <- i8042 (interrupt, 0, 1)
[   23.011966] [      C2] i8042: [4959] ** <- i8042 (interrupt, 0, 1)
[   23.099852] [      C2] i8042: [4981] ** <- i8042 (interrupt, 0, 1)
[   23.155312] [      C2] i8042: [4995] ** <- i8042 (interrupt, 0, 1)
[   23.243022] [      C2] i8042: [5017] ** <- i8042 (interrupt, 0, 1)
[   23.298694] [      C2] i8042: [5031] ** <- i8042 (interrupt, 0, 1)
[   23.386486] [      C2] i8042: [5053] ** <- i8042 (interrupt, 0, 1)
[   23.448991] [      C2] i8042: [5068] ** <- i8042 (interrupt, 0, 1)
[   23.539640] [      C2] i8042: [5091] ** <- i8042 (interrupt, 0, 1)
[   23.607360] [      C2] i8042: [5108] ** <- i8042 (interrupt, 0, 1)
[   23.696996] [      C2] i8042: [5130] ** <- i8042 (interrupt, 0, 1)
[   23.834870] [      C2] i8042: [5165] ** <- i8042 (interrupt, 0, 1)
[   24.034501] [      C2] i8042: [5215] ** <- i8042 (interrupt, 0, 1)
[   24.173618] [      C2] i8042: [5249] ** <- i8042 (interrupt, 0, 1)
[   24.485972] [      C2] i8042: [5328] ** <- i8042 (interrupt, 0, 1)
[   24.619724] [      C2] i8042: [5361] ** <- i8042 (interrupt, 0, 1)
[   24.690352] [      C2] i8042: [5379] ** <- i8042 (interrupt, 0, 1)
[   24.900290] [      C2] i8042: [5431] ** <- i8042 (interrupt, 0, 1)
[   28.555694] [      C2] i8042: [6345] ** <- i8042 (interrupt, 0, 1)
[   28.635551] [      C2] i8042: [6365] ** <- i8042 (interrupt, 0, 1)
[   28.701561] [      C2] i8042: [6381] ** <- i8042 (interrupt, 0, 1)
[   28.860114] [      C2] i8042: [6421] ** <- i8042 (interrupt, 0, 1)
[   29.377728] [      C2] i8042: [6550] ** <- i8042 (interrupt, 0, 1)
[   29.496589] [      C2] i8042: [6580] ** <- i8042 (interrupt, 0, 1)
[   29.530165] [      C2] i8042: [6589] ** <- i8042 (interrupt, 0, 1)
[   29.716553] [      C2] i8042: [6635] ** <- i8042 (interrupt, 0, 1)
[   31.136855] [      C1] i8042: [6990] 40 <- i8042 (interrupt, 1, 12)
[   31.138704] [      C1] i8042: [6991] 41 <- i8042 (interrupt, 1, 12)
[   31.140944] [      C1] i8042: [6991] 5d <- i8042 (interrupt, 1, 12)
[   31.142302] [      C1] i8042: [6992] bc <- i8042 (interrupt, 1, 12)
[   31.144204] [      C1] i8042: [6992] 0b <- i8042 (interrupt, 1, 12)
[   31.149106] [      C1] i8042: [6993] 40 <- i8042 (interrupt, 1, 12)
[   31.152006] [      C1] i8042: [6994] 41 <- i8042 (interrupt, 1, 12)
[   31.154000] [      C1] i8042: [6995] 61 <- i8042 (interrupt, 1, 12)
[   31.156274] [      C1] i8042: [6995] b9 <- i8042 (interrupt, 1, 12)
[   31.157768] [      C1] i8042: [6995] 10 <- i8042 (interrupt, 1, 12)
[   31.163657] [      C1] i8042: [6997] 40 <- i8042 (interrupt, 1, 12)
[   31.165628] [      C1] i8042: [6997] 41 <- i8042 (interrupt, 1, 12)
[   31.167385] [      C1] i8042: [6998] 61 <- i8042 (interrupt, 1, 12)
[   31.169195] [      C1] i8042: [6998] b6 <- i8042 (interrupt, 1, 12)
[   31.170020] [      C1] i8042: [6999] 13 <- i8042 (interrupt, 1, 12)
[   31.173643] [      C1] i8042: [6999] 50 <- i8042 (interrupt, 1, 12)
[   31.175496] [      C1] i8042: [7000] c1 <- i8042 (interrupt, 1, 12)
[   31.177318] [      C1] i8042: [7000] 62 <- i8042 (interrupt, 1, 12)
[   31.179156] [      C1] i8042: [7001] b6 <- i8042 (interrupt, 1, 12)
[   31.180966] [      C1] i8042: [7001] 13 <- i8042 (interrupt, 1, 12)
[   31.186212] [      C1] i8042: [7003] 50 <- i8042 (interrupt, 1, 12)
[   31.188361] [      C1] i8042: [7003] c1 <- i8042 (interrupt, 1, 12)
[   31.189933] [      C1] i8042: [7003] 67 <- i8042 (interrupt, 1, 12)
[   31.191859] [      C1] i8042: [7004] b2 <- i8042 (interrupt, 1, 12)
[   31.193603] [      C1] i8042: [7004] 0e <- i8042 (interrupt, 1, 12)
[   31.197114] [      C1] i8042: [7005] 00 <- i8042 (interrupt, 1, 12)
[   31.207059] [      C1] i8042: [7008] 00 <- i8042 (interrupt, 1, 12)
[   31.217029] [      C1] i8042: [7010] 00 <- i8042 (interrupt, 1, 12)
[   31.227023] [      C1] i8042: [7013] 00 <- i8042 (interrupt, 1, 12)
[   31.236973] [      C1] i8042: [7015] 00 <- i8042 (interrupt, 1, 12)
[   31.246994] [      C1] i8042: [7018] 00 <- i8042 (interrupt, 1, 12)
[   31.257598] [      C1] i8042: [7020] 00 <- i8042 (interrupt, 1, 12)
[   31.268517] [      C1] i8042: [7023] 00 <- i8042 (interrupt, 1, 12)
[   31.278832] [      C1] i8042: [7026] 00 <- i8042 (interrupt, 1, 12)
[   31.289479] [      C1] i8042: [7028] 00 <- i8042 (interrupt, 1, 12)
[   31.300129] [      C1] i8042: [7031] 00 <- i8042 (interrupt, 1, 12)
[   31.312317] [      C1] i8042: [7034] 00 <- i8042 (interrupt, 1, 12)
[   31.315512] [      C2] i8042: [7035] ** <- i8042 (interrupt, 0, 1)
[   31.321335] [      C1] i8042: [7036] 00 <- i8042 (interrupt, 1, 12)
[   31.332035] [      C1] i8042: [7039] 00 <- i8042 (interrupt, 1, 12)
[   31.342749] [      C1] i8042: [7042] 00 <- i8042 (interrupt, 1, 12)
[   31.354002] [      C1] i8042: [7045] 00 <- i8042 (interrupt, 1, 12)
[   31.365026] [      C1] i8042: [7047] 00 <- i8042 (interrupt, 1, 12)
[   31.374841] [      C1] i8042: [7050] 00 <- i8042 (interrupt, 1, 12)
[   31.386004] [      C1] i8042: [7053] 00 <- i8042 (interrupt, 1, 12)
[   31.395832] [      C1] i8042: [7055] 00 <- i8042 (interrupt, 1, 12)
[   31.407108] [      C1] i8042: [7058] 00 <- i8042 (interrupt, 1, 12)
[   31.417155] [      C1] i8042: [7060] 00 <- i8042 (interrupt, 1, 12)
[   31.427782] [      C1] i8042: [7063] 00 <- i8042 (interrupt, 1, 12)
[   31.438508] [      C1] i8042: [7066] 00 <- i8042 (interrupt, 1, 12)
[   31.449079] [      C1] i8042: [7068] 00 <- i8042 (interrupt, 1, 12)
[   31.460035] [      C1] i8042: [7071] 00 <- i8042 (interrupt, 1, 12)
[   31.471033] [      C1] i8042: [7074] 00 <- i8042 (interrupt, 1, 12)
[   31.478729] [      C2] i8042: [7076] ** <- i8042 (interrupt, 0, 1)
[   31.480985] [      C1] i8042: [7076] 00 <- i8042 (interrupt, 1, 12)
[   31.491645] [      C1] i8042: [7079] 00 <- i8042 (interrupt, 1, 12)
[   31.502273] [      C1] i8042: [7082] 00 <- i8042 (interrupt, 1, 12)
[   31.512944] [      C1] i8042: [7084] 00 <- i8042 (interrupt, 1, 12)
[   31.523571] [      C1] i8042: [7087] 00 <- i8042 (interrupt, 1, 12)
[   31.534077] [      C1] i8042: [7090] 00 <- i8042 (interrupt, 1, 12)
[   31.544792] [      C1] i8042: [7092] 00 <- i8042 (interrupt, 1, 12)
[   31.555408] [      C1] i8042: [7095] 00 <- i8042 (interrupt, 1, 12)
[   31.565999] [      C1] i8042: [7098] 00 <- i8042 (interrupt, 1, 12)
[   31.576618] [      C1] i8042: [7100] 00 <- i8042 (interrupt, 1, 12)
[   31.580394] [      C2] i8042: [7101] ** <- i8042 (interrupt, 0, 1)
[   31.588051] [      C1] i8042: [7103] 00 <- i8042 (interrupt, 1, 12)
[   31.598813] [      C1] i8042: [7106] 00 <- i8042 (interrupt, 1, 12)
[   31.608475] [      C1] i8042: [7108] 00 <- i8042 (interrupt, 1, 12)
[   31.619148] [      C1] i8042: [7111] 00 <- i8042 (interrupt, 1, 12)
[   31.629757] [      C1] i8042: [7113] 00 <- i8042 (interrupt, 1, 12)
[   31.640366] [      C1] i8042: [7116] 00 <- i8042 (interrupt, 1, 12)
[   31.651007] [      C1] i8042: [7119] 00 <- i8042 (interrupt, 1, 12)
[   31.661599] [      C1] i8042: [7121] 00 <- i8042 (interrupt, 1, 12)
[   31.673112] [      C1] i8042: [7124] 00 <- i8042 (interrupt, 1, 12)
[   31.679273] [      C2] i8042: [7126] ** <- i8042 (interrupt, 0, 1)
[   31.683998] [      C1] i8042: [7127] 00 <- i8042 (interrupt, 1, 12)
[   31.693803] [      C1] i8042: [7129] 00 <- i8042 (interrupt, 1, 12)
[   31.704088] [      C1] i8042: [7132] 00 <- i8042 (interrupt, 1, 12)
[   31.714708] [      C1] i8042: [7135] 00 <- i8042 (interrupt, 1, 12)
[   31.725380] [      C1] i8042: [7137] 00 <- i8042 (interrupt, 1, 12)
[   31.735945] [      C1] i8042: [7140] 00 <- i8042 (interrupt, 1, 12)
[   31.746556] [      C1] i8042: [7143] 00 <- i8042 (interrupt, 1, 12)
[   31.757305] [      C1] i8042: [7145] 00 <- i8042 (interrupt, 1, 12)
[   31.767881] [      C1] i8042: [7148] 00 <- i8042 (interrupt, 1, 12)
[   31.771709] [      C2] i8042: [7149] ** <- i8042 (interrupt, 0, 1)
[   31.778488] [      C1] i8042: [7151] 00 <- i8042 (interrupt, 1, 12)
[   31.789110] [      C1] i8042: [7153] 00 <- i8042 (interrupt, 1, 12)
[   31.799727] [      C1] i8042: [7156] 00 <- i8042 (interrupt, 1, 12)
[   31.810457] [      C1] i8042: [7159] 00 <- i8042 (interrupt, 1, 12)
[   31.820992] [      C1] i8042: [7161] 00 <- i8042 (interrupt, 1, 12)
[   31.832404] [      C1] i8042: [7164] 00 <- i8042 (interrupt, 1, 12)
[   31.843437] [      C1] i8042: [7167] 00 <- i8042 (interrupt, 1, 12)
[   31.853258] [      C1] i8042: [7169] 00 <- i8042 (interrupt, 1, 12)
[   31.864476] [      C1] i8042: [7172] 00 <- i8042 (interrupt, 1, 12)
[   31.874308] [      C1] i8042: [7175] 00 <- i8042 (interrupt, 1, 12)
[   31.885351] [      C1] i8042: [7177] 00 <- i8042 (interrupt, 1, 12)
[   31.896595] [      C1] i8042: [7180] 00 <- i8042 (interrupt, 1, 12)
[   31.906388] [      C1] i8042: [7183] 00 <- i8042 (interrupt, 1, 12)
[   31.917348] [      C1] i8042: [7185] 00 <- i8042 (interrupt, 1, 12)
[   31.927460] [      C1] i8042: [7188] 00 <- i8042 (interrupt, 1, 12)
[   31.938483] [      C1] i8042: [7191] 00 <- i8042 (interrupt, 1, 12)
[   31.945023] [      C2] i8042: [7192] ** <- i8042 (interrupt, 0, 1)
[   31.949743] [      C1] i8042: [7193] 00 <- i8042 (interrupt, 1, 12)
[   31.959548] [      C1] i8042: [7196] 00 <- i8042 (interrupt, 1, 12)
[   31.970017] [      C1] i8042: [7199] 00 <- i8042 (interrupt, 1, 12)
[   31.980757] [      C1] i8042: [7201] 00 <- i8042 (interrupt, 1, 12)
[   31.991394] [      C1] i8042: [7204] 00 <- i8042 (interrupt, 1, 12)
[   32.002129] [      C1] i8042: [7207] 00 <- i8042 (interrupt, 1, 12)
[   32.012728] [      C1] i8042: [7209] 00 <- i8042 (interrupt, 1, 12)
[   32.023367] [      C1] i8042: [7212] 00 <- i8042 (interrupt, 1, 12)
[   32.034014] [      C1] i8042: [7215] 00 <- i8042 (interrupt, 1, 12)
[   32.044695] [      C1] i8042: [7217] 00 <- i8042 (interrupt, 1, 12)
[   32.055505] [      C1] i8042: [7220] 00 <- i8042 (interrupt, 1, 12)
[   32.066003] [      C1] i8042: [7223] 00 <- i8042 (interrupt, 1, 12)
[   32.076665] [      C1] i8042: [7225] 00 <- i8042 (interrupt, 1, 12)
[   32.087390] [      C1] i8042: [7228] 00 <- i8042 (interrupt, 1, 12)
[   32.098004] [      C1] i8042: [7231] 00 <- i8042 (interrupt, 1, 12)
[   32.108628] [      C1] i8042: [7233] 00 <- i8042 (interrupt, 1, 12)
[   32.119316] [      C1] i8042: [7236] 00 <- i8042 (interrupt, 1, 12)
[   32.129981] [      C1] i8042: [7239] 00 <- i8042 (interrupt, 1, 12)
[   32.140617] [      C1] i8042: [7241] 00 <- i8042 (interrupt, 1, 12)
[   32.151263] [      C1] i8042: [7244] 00 <- i8042 (interrupt, 1, 12)
[   32.161914] [      C1] i8042: [7246] 00 <- i8042 (interrupt, 1, 12)
[   32.173091] [      C1] i8042: [7249] 00 <- i8042 (interrupt, 1, 12)
[   32.183347] [      C1] i8042: [7252] 00 <- i8042 (interrupt, 1, 12)
[   32.193903] [      C1] i8042: [7254] 00 <- i8042 (interrupt, 1, 12)
[   32.204562] [      C1] i8042: [7257] 00 <- i8042 (interrupt, 1, 12)
[   32.215218] [      C1] i8042: [7260] 00 <- i8042 (interrupt, 1, 12)
[   32.225898] [      C1] i8042: [7262] 00 <- i8042 (interrupt, 1, 12)
[   32.236554] [      C1] i8042: [7265] 00 <- i8042 (interrupt, 1, 12)
[   32.247126] [      C1] i8042: [7268] 00 <- i8042 (interrupt, 1, 12)
[   32.257908] [      C1] i8042: [7270] 00 <- i8042 (interrupt, 1, 12)
[   32.268529] [      C1] i8042: [7273] 00 <- i8042 (interrupt, 1, 12)
[   32.279184] [      C1] i8042: [7276] 00 <- i8042 (interrupt, 1, 12)
[   32.290674] [      C1] i8042: [7279] 00 <- i8042 (interrupt, 1, 12)
[   32.300516] [      C1] i8042: [7281] 00 <- i8042 (interrupt, 1, 12)
[   32.311185] [      C1] i8042: [7284] 00 <- i8042 (interrupt, 1, 12)
[   32.321919] [      C1] i8042: [7286] 00 <- i8042 (interrupt, 1, 12)
[   32.332492] [      C1] i8042: [7289] 00 <- i8042 (interrupt, 1, 12)
[   32.343225] [      C1] i8042: [7292] 00 <- i8042 (interrupt, 1, 12)
[   32.353825] [      C1] i8042: [7294] 00 <- i8042 (interrupt, 1, 12)
[   32.364473] [      C1] i8042: [7297] 00 <- i8042 (interrupt, 1, 12)
[   32.375691] [      C1] i8042: [7300] 00 <- i8042 (interrupt, 1, 12)
[   32.385943] [      C1] i8042: [7302] 00 <- i8042 (interrupt, 1, 12)
[   32.396464] [      C1] i8042: [7305] 00 <- i8042 (interrupt, 1, 12)
[   32.407143] [      C1] i8042: [7308] 00 <- i8042 (interrupt, 1, 12)
[   32.417785] [      C1] i8042: [7310] 00 <- i8042 (interrupt, 1, 12)
[   32.428404] [      C1] i8042: [7313] 00 <- i8042 (interrupt, 1, 12)
[   32.439082] [      C1] i8042: [7316] 00 <- i8042 (interrupt, 1, 12)
[   32.449739] [      C1] i8042: [7318] 00 <- i8042 (interrupt, 1, 12)
[   32.461434] [      C1] i8042: [7321] 00 <- i8042 (interrupt, 1, 12)
[   32.471111] [      C1] i8042: [7324] 00 <- i8042 (interrupt, 1, 12)
[   32.481715] [      C1] i8042: [7326] 00 <- i8042 (interrupt, 1, 12)
[   32.492470] [      C1] i8042: [7329] 00 <- i8042 (interrupt, 1, 12)
[   32.503058] [      C1] i8042: [7332] 00 <- i8042 (interrupt, 1, 12)
[   32.513713] [      C1] i8042: [7334] 00 <- i8042 (interrupt, 1, 12)
[   32.524395] [      C1] i8042: [7337] 00 <- i8042 (interrupt, 1, 12)
[   32.535051] [      C1] i8042: [7340] 00 <- i8042 (interrupt, 1, 12)
[   32.545713] [      C1] i8042: [7342] 00 <- i8042 (interrupt, 1, 12)
[   32.556380] [      C1] i8042: [7345] 00 <- i8042 (interrupt, 1, 12)
[   32.567125] [      C1] i8042: [7348] 00 <- i8042 (interrupt, 1, 12)
[   32.577713] [      C1] i8042: [7350] 00 <- i8042 (interrupt, 1, 12)
[   32.588472] [      C1] i8042: [7353] 00 <- i8042 (interrupt, 1, 12)
[   32.599109] [      C1] i8042: [7356] 00 <- i8042 (interrupt, 1, 12)
[   32.609841] [      C1] i8042: [7358] 00 <- i8042 (interrupt, 1, 12)
[   32.620450] [      C1] i8042: [7361] 00 <- i8042 (interrupt, 1, 12)
[   32.631100] [      C1] i8042: [7364] 00 <- i8042 (interrupt, 1, 12)
[   32.641757] [      C1] i8042: [7366] 00 <- i8042 (interrupt, 1, 12)
[   32.652400] [      C1] i8042: [7369] 00 <- i8042 (interrupt, 1, 12)
[   32.663049] [      C1] i8042: [7372] 00 <- i8042 (interrupt, 1, 12)
[   32.673729] [      C1] i8042: [7374] 00 <- i8042 (interrupt, 1, 12)
[   32.684370] [      C1] i8042: [7377] 00 <- i8042 (interrupt, 1, 12)
[   32.695781] [      C1] i8042: [7380] 00 <- i8042 (interrupt, 1, 12)
[   32.705692] [      C1] i8042: [7382] 00 <- i8042 (interrupt, 1, 12)
[   32.716410] [      C1] i8042: [7385] 00 <- i8042 (interrupt, 1, 12)
[   32.734186] [      C1] i8042: [7390] 00 <- i8042 (interrupt, 1, 12)
[   32.737690] [      C1] i8042: [7390] 00 <- i8042 (interrupt, 1, 12)
[   32.748783] [      C1] i8042: [7393] 00 <- i8042 (interrupt, 1, 12)
[   32.759035] [      C1] i8042: [7396] 00 <- i8042 (interrupt, 1, 12)
[   32.769642] [      C1] i8042: [7398] 00 <- i8042 (interrupt, 1, 12)
[   32.780402] [      C1] i8042: [7401] 00 <- i8042 (interrupt, 1, 12)
[   32.790978] [      C1] i8042: [7404] 00 <- i8042 (interrupt, 1, 12)
[   32.801629] [      C1] i8042: [7406] 00 <- i8042 (interrupt, 1, 12)
[   32.812321] [      C1] i8042: [7409] 00 <- i8042 (interrupt, 1, 12)
[   32.822926] [      C1] i8042: [7412] 00 <- i8042 (interrupt, 1, 12)
[   32.833875] [      C1] i8042: [7414] 00 <- i8042 (interrupt, 1, 12)
[   32.844399] [      C1] i8042: [7417] 00 <- i8042 (interrupt, 1, 12)
[   32.854866] [      C1] i8042: [7420] 00 <- i8042 (interrupt, 1, 12)
[   32.865616] [      C1] i8042: [7422] 00 <- i8042 (interrupt, 1, 12)
[   32.876192] [      C1] i8042: [7425] 00 <- i8042 (interrupt, 1, 12)
[   32.886814] [      C1] i8042: [7428] 00 <- i8042 (interrupt, 1, 12)
[   32.897532] [      C1] i8042: [7430] 00 <- i8042 (interrupt, 1, 12)
[   32.908133] [      C1] i8042: [7433] 00 <- i8042 (interrupt, 1, 12)
[   32.919195] [      C1] i8042: [7436] 00 <- i8042 (interrupt, 1, 12)
[   32.929525] [      C1] i8042: [7438] 00 <- i8042 (interrupt, 1, 12)
[   32.940116] [      C1] i8042: [7441] 00 <- i8042 (interrupt, 1, 12)
[   32.950850] [      C1] i8042: [7444] 00 <- i8042 (interrupt, 1, 12)
[   32.961434] [      C1] i8042: [7446] 00 <- i8042 (interrupt, 1, 12)
[   32.972057] [      C1] i8042: [7449] 00 <- i8042 (interrupt, 1, 12)
[   32.982760] [      C1] i8042: [7452] 00 <- i8042 (interrupt, 1, 12)
[   32.993371] [      C1] i8042: [7454] 00 <- i8042 (interrupt, 1, 12)
[   33.004014] [      C1] i8042: [7457] 00 <- i8042 (interrupt, 1, 12)
[   33.014662] [      C1] i8042: [7460] 00 <- i8042 (interrupt, 1, 12)
[   33.025455] [      C1] i8042: [7462] 00 <- i8042 (interrupt, 1, 12)
[   33.037627] [      C1] i8042: [7465] 00 <- i8042 (interrupt, 1, 12)
[   33.046565] [      C1] i8042: [7468] 00 <- i8042 (interrupt, 1, 12)
[   33.057811] [      C1] i8042: [7470] 00 <- i8042 (interrupt, 1, 12)
[   33.067971] [      C1] i8042: [7473] 00 <- i8042 (interrupt, 1, 12)
[   33.079102] [      C1] i8042: [7476] 00 <- i8042 (interrupt, 1, 12)
[   33.079326] [      C2] i8042: [7476] ** <- i8042 (interrupt, 0, 1)
[   33.089357] [      C1] i8042: [7478] 00 <- i8042 (interrupt, 1, 12)

[-- Attachment #3: dmesg.cypress.new.txt --]
[-- Type: text/plain, Size: 240955 bytes --]

[    0.000000] [      T0] Linux version 6.11-pingu (root@S50T) (gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #2 SMP PREEMPT_DYNAMIC Wed Aug 28 21:50:51 EDT 2024
[    0.000000] [      T0] Command line: i8042.debug=1 quiet net.ifnames=0 loop.max_part=7 root=/dev/sda5 resume=swap:/dev/sda6 mitigations=off log_buf_len=128M
[    0.000000] [      T0] Disabled fast string operations
[    0.000000] [      T0] reserving inaccessible SNB gfx pages
[    0.000000] [      T0] BIOS-provided physical RAM map:
[    0.000000] [      T0] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
[    0.000000] [      T0] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x0000000000100000-0x00000000b5a27fff] usable
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000b5a28000-0x00000000b6e28fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000b6e29000-0x00000000b8860fff] usable
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000b8861000-0x00000000b8aa9fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000b8aaa000-0x00000000bac8efff] usable
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000bac8f000-0x00000000baca7fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000baca8000-0x00000000bacb6fff] ACPI NVS
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000bacb7000-0x00000000badfafff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000badfb000-0x00000000badfcfff] ACPI NVS
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000badfd000-0x00000000badfefff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000badff000-0x00000000bae01fff] ACPI NVS
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000bae02000-0x00000000bae09fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000bae0a000-0x00000000bae1afff] ACPI NVS
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000bae1b000-0x00000000baf17fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000baf18000-0x00000000baf1bfff] ACPI NVS
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000baf1c000-0x00000000baf1efff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000baf1f000-0x00000000baf9efff] ACPI NVS
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000baf9f000-0x00000000baffefff] ACPI data
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000bafff000-0x00000000baffffff] usable
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000ffd80000-0x00000000ffffffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x0000000100000000-0x000000023fdfffff] usable
[    0.000000] [      T0] NX (Execute Disable) protection: active
[    0.000000] [      T0] APIC: Static calls initialized
[    0.000000] [      T0] SMBIOS 2.6 present.
[    0.000000] [      T0] DMI: Dell Inc.          Dell System XPS 15Z/, BIOS A09 01/13/2012
[    0.000000] [      T0] DMI: Memory slots populated: 2/2
[    0.000000] [      T0] tsc: Fast TSC calibration using PIT
[    0.000000] [      T0] tsc: Detected 2294.740 MHz processor
[    0.000788] [      T0] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000791] [      T0] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000807] [      T0] last_pfn = 0x23fe00 max_arch_pfn = 0x400000000
[    0.000815] [      T0] MTRR map: 8 entries (3 fixed + 5 variable; max 23), built from 10 variable MTRRs
[    0.000817] [      T0] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.001481] [      T0] last_pfn = 0xbb000 max_arch_pfn = 0x400000000
[    0.001498] [      T0] Kernel/User page tables isolation: disabled on command line.
[    0.150469] [      T0] printk: log_buf_len: 134217728 bytes
[    0.150473] [      T0] printk: early log buf free: 127592(97%)
[    0.150474] [      T0] RAMDISK: [mem 0x7fbc5000-0x7fffefff]
[    0.150482] [      T0] ACPI: Early table checksum verification disabled
[    0.150487] [      T0] ACPI: RSDP 0x00000000000F00E0 000024 (v02 DELL  )
[    0.150492] [      T0] ACPI: XSDT 0x00000000BAFFE120 00008C (v01 DELL   QA09     00000002 LOHR 00000002)
[    0.150498] [      T0] ACPI: FACP 0x00000000BAFF0000 0000F4 (v03 DELL   QA09     00000002 PTL  00000002)
[    0.150504] [      T0] ACPI: DSDT 0x00000000BAFF3000 008A57 (v02 DELL   SNB-CPT  00000000 INTL 20061109)
[    0.150508] [      T0] ACPI: FACS 0x00000000BAF40000 000040
[    0.150511] [      T0] ACPI: FACS 0x00000000BAF40000 000040
[    0.150514] [      T0] ACPI: SLIC 0x00000000BAFFD000 000176 (v01 DELL   QA09     00000002 LOHR 00000001)
[    0.150517] [      T0] ACPI: SSDT 0x00000000BAFFC000 000166 (v01 DELL   PtidDevc 00001000 INTL 20061109)
[    0.150521] [      T0] ACPI: ASF! 0x00000000BAFF2000 0000A5 (v32 DELL   QA09     00000002 PTL  00000002)
[    0.150525] [      T0] ACPI: HPET 0x00000000BAFEF000 000038 (v01 DELL   QA09     00000002 PTL  00000002)
[    0.150528] [      T0] ACPI: APIC 0x00000000BAFEE000 000098 (v01 DELL   QA09     00000002 PTL  00000002)
[    0.150532] [      T0] ACPI: MCFG 0x00000000BAFED000 00003C (v01 DELL   QA09     00000002 PTL  00000002)
[    0.150535] [      T0] ACPI: SSDT 0x00000000BAFEC000 000B3B (v01 NvORef NvOptTbl 00001000 INTL 20061109)
[    0.150539] [      T0] ACPI: SSDT 0x00000000BAFEB000 000780 (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
[    0.150542] [      T0] ACPI: SSDT 0x00000000BAFEA000 000996 (v01 PmRef  CpuPm    00003000 INTL 20061109)
[    0.150546] [      T0] ACPI: UEFI 0x00000000BAFE9000 00003E (v01 DELL   QA09     00000002 PTL  00000002)
[    0.150549] [      T0] ACPI: UEFI 0x00000000BAFE8000 000042 (v01 PTL    COMBUF   00000001 PTL  00000001)
[    0.150553] [      T0] ACPI: UEFI 0x00000000BAFE7000 00026A (v01 DELL   QA09     00000002 PTL  00000002)
[    0.150556] [      T0] ACPI: Reserving FACP table memory at [mem 0xbaff0000-0xbaff00f3]
[    0.150558] [      T0] ACPI: Reserving DSDT table memory at [mem 0xbaff3000-0xbaffba56]
[    0.150559] [      T0] ACPI: Reserving FACS table memory at [mem 0xbaf40000-0xbaf4003f]
[    0.150560] [      T0] ACPI: Reserving FACS table memory at [mem 0xbaf40000-0xbaf4003f]
[    0.150561] [      T0] ACPI: Reserving SLIC table memory at [mem 0xbaffd000-0xbaffd175]
[    0.150562] [      T0] ACPI: Reserving SSDT table memory at [mem 0xbaffc000-0xbaffc165]
[    0.150563] [      T0] ACPI: Reserving ASF! table memory at [mem 0xbaff2000-0xbaff20a4]
[    0.150564] [      T0] ACPI: Reserving HPET table memory at [mem 0xbafef000-0xbafef037]
[    0.150566] [      T0] ACPI: Reserving APIC table memory at [mem 0xbafee000-0xbafee097]
[    0.150567] [      T0] ACPI: Reserving MCFG table memory at [mem 0xbafed000-0xbafed03b]
[    0.150568] [      T0] ACPI: Reserving SSDT table memory at [mem 0xbafec000-0xbafecb3a]
[    0.150569] [      T0] ACPI: Reserving SSDT table memory at [mem 0xbafeb000-0xbafeb77f]
[    0.150570] [      T0] ACPI: Reserving SSDT table memory at [mem 0xbafea000-0xbafea995]
[    0.150571] [      T0] ACPI: Reserving UEFI table memory at [mem 0xbafe9000-0xbafe903d]
[    0.150572] [      T0] ACPI: Reserving UEFI table memory at [mem 0xbafe8000-0xbafe8041]
[    0.150573] [      T0] ACPI: Reserving UEFI table memory at [mem 0xbafe7000-0xbafe7269]
[    0.150638] [      T0] No NUMA configuration found
[    0.150639] [      T0] Faking a node at [mem 0x0000000000000000-0x000000023fdfffff]
[    0.150643] [      T0] NODE_DATA(0) allocated [mem 0x21bdf7000-0x21bdfafff]
[    0.150665] [      T0] Zone ranges:
[    0.150666] [      T0]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.150668] [      T0]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.150670] [      T0]   Normal   [mem 0x0000000100000000-0x000000023fdfffff]
[    0.150672] [      T0] Movable zone start for each node
[    0.150672] [      T0] Early memory node ranges
[    0.150673] [      T0]   node   0: [mem 0x0000000000001000-0x000000000009cfff]
[    0.150675] [      T0]   node   0: [mem 0x0000000000100000-0x00000000b5a27fff]
[    0.150676] [      T0]   node   0: [mem 0x00000000b6e29000-0x00000000b8860fff]
[    0.150678] [      T0]   node   0: [mem 0x00000000b8aaa000-0x00000000bac8efff]
[    0.150679] [      T0]   node   0: [mem 0x00000000bafff000-0x00000000baffffff]
[    0.150680] [      T0]   node   0: [mem 0x0000000100000000-0x000000023fdfffff]
[    0.150682] [      T0] Initmem setup node 0 [mem 0x0000000000001000-0x000000023fdfffff]
[    0.150688] [      T0] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.150724] [      T0] On node 0, zone DMA: 99 pages in unavailable ranges
[    0.157340] [      T0] On node 0, zone DMA32: 5121 pages in unavailable ranges
[    0.157428] [      T0] On node 0, zone DMA32: 585 pages in unavailable ranges
[    0.157438] [      T0] On node 0, zone DMA32: 880 pages in unavailable ranges
[    0.169157] [      T0] On node 0, zone Normal: 20480 pages in unavailable ranges
[    0.169169] [      T0] On node 0, zone Normal: 512 pages in unavailable ranges
[    0.169190] [      T0] Reserving Intel graphics memory at [mem 0xbba00000-0xbf9fffff]
[    0.169369] [      T0] ACPI: PM-Timer IO Port: 0x408
[    0.169377] [      T0] CPU topo: Ignoring hot-pluggable APIC ID 0 in present package.
[    0.169381] [      T0] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.169383] [      T0] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.169393] [      T0] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.169397] [      T0] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.169399] [      T0] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.169404] [      T0] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.169405] [      T0] ACPI: HPET id: 0x8086a301 base: 0xfed00000
[    0.169410] [      T0] TSC deadline timer available
[    0.169417] [      T0] CPU topo: Max. logical packages:   1
[    0.169418] [      T0] CPU topo: Max. logical dies:       1
[    0.169419] [      T0] CPU topo: Max. dies per package:   1
[    0.169425] [      T0] CPU topo: Max. threads per core:   2
[    0.169427] [      T0] CPU topo: Num. cores per package:     2
[    0.169427] [      T0] CPU topo: Num. threads per package:   4
[    0.169428] [      T0] CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
[    0.169429] [      T0] CPU topo: Rejected CPUs 4
[    0.169458] [      T0] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.169461] [      T0] PM: hibernation: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
[    0.169462] [      T0] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[    0.169463] [      T0] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.169464] [      T0] PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.169466] [      T0] PM: hibernation: Registered nosave memory: [mem 0xb5a28000-0xb6e28fff]
[    0.169468] [      T0] PM: hibernation: Registered nosave memory: [mem 0xb8861000-0xb8aa9fff]
[    0.169470] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbac8f000-0xbaca7fff]
[    0.169471] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbaca8000-0xbacb6fff]
[    0.169472] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbacb7000-0xbadfafff]
[    0.169473] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbadfb000-0xbadfcfff]
[    0.169474] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbadfd000-0xbadfefff]
[    0.169475] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbadff000-0xbae01fff]
[    0.169476] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbae02000-0xbae09fff]
[    0.169477] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbae0a000-0xbae1afff]
[    0.169478] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbae1b000-0xbaf17fff]
[    0.169479] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbaf18000-0xbaf1bfff]
[    0.169480] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbaf1c000-0xbaf1efff]
[    0.169481] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbaf1f000-0xbaf9efff]
[    0.169482] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbaf9f000-0xbaffefff]
[    0.169484] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbb000000-0xbf9fffff]
[    0.169485] [      T0] PM: hibernation: Registered nosave memory: [mem 0xbfa00000-0xf7ffffff]
[    0.169486] [      T0] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.169487] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[    0.169488] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.169489] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfed07fff]
[    0.169490] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
[    0.169491] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfed09000-0xfed0ffff]
[    0.169492] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
[    0.169493] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
[    0.169494] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.169495] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[    0.169496] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.169497] [      T0] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffd7ffff]
[    0.169498] [      T0] PM: hibernation: Registered nosave memory: [mem 0xffd80000-0xffffffff]
[    0.169500] [      T0] [mem 0xbfa00000-0xf7ffffff] available for PCI devices
[    0.169501] [      T0] Booting paravirtualized kernel on bare hardware
[    0.169504] [      T0] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.176405] [      T0] setup_percpu: NR_CPUS:8 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.176731] [      T0] percpu: Embedded 48 pages/cpu s157528 r8192 d30888 u524288
[    0.176743] [      T0] pcpu-alloc: s157528 r8192 d30888 u524288 alloc=1*2097152
[    0.176746] [      T0] pcpu-alloc: [0] 0 1 2 3 
[    0.176769] [      T0] Kernel command line: i8042.debug=1 quiet net.ifnames=0 loop.max_part=7 root=/dev/sda5 resume=swap:/dev/sda6 mitigations=off log_buf_len=128M
[    0.178018] [      T0] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.178607] [      T0] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.178693] [      T0] Fallback order for Node 0: 0 
[    0.178697] [      T0] Built 1 zonelists, mobility grouping on.  Total pages: 2069474
[    0.178698] [      T0] Policy zone: Normal
[    0.178700] [      T0] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.178703] [      T0] software IO TLB: area num 4.
[    0.221764] [      T0] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.222348] [      T0] Dynamic Preempt: voluntary
[    0.222389] [      T0] rcu: Preemptible hierarchical RCU implementation.
[    0.222390] [      T0] rcu: 	RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.
[    0.222393] [      T0] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.222394] [      T0] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.222402] [      T0] NR_IRQS: 4352, nr_irqs: 456, preallocated irqs: 16
[    0.222600] [      T0] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.224397] [      T0] Console: colour VGA+ 80x25
[    0.224400] [      T0] printk: legacy console [tty0] enabled
[    0.224440] [      T0] ACPI: Core revision 20240322
[    0.224542] [      T0] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.224559] [      T0] APIC: Switch to symmetric I/O mode setup
[    0.224630] [      T0] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.225078] [      T0] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.244560] [      T0] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2113cc59d1b, max_idle_ns: 440795302214 ns
[    0.244566] [      T0] Calibrating delay loop (skipped), value calculated using timer frequency.. 4589.48 BogoMIPS (lpj=9178960)
[    0.244581] [      T0] Disabled fast string operations
[    0.244613] [      T0] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.244615] [      T0] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.244619] [      T0] process: using mwait in idle threads
[    0.244622] [      T0] Spectre V2 : User space: Vulnerable
[    0.244623] [      T0] Speculative Store Bypass: Vulnerable
[    0.244630] [      T0] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.244631] [      T0] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.244633] [      T0] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.244634] [      T0] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.244636] [      T0] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.264737] [      T0] Freeing SMP alternatives memory: 44K
[    0.264745] [      T0] pid_max: default: 32768 minimum: 301
[    0.264809] [      T0] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.264826] [      T0] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.268625] [      T1] smpboot: CPU0: Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz (family: 0x6, model: 0x2a, stepping: 0x7)
[    0.268810] [      T1] Performance Events: PEBS fmt1+, SandyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.268828] [      T1] ... version:                3
[    0.268829] [      T1] ... bit width:              48
[    0.268830] [      T1] ... generic registers:      4
[    0.268831] [      T1] ... value mask:             0000ffffffffffff
[    0.268833] [      T1] ... max period:             00007fffffffffff
[    0.268834] [      T1] ... fixed-purpose events:   3
[    0.268834] [      T1] ... event mask:             000000070000000f
[    0.268953] [      T1] signal: max sigframe size: 1776
[    0.268968] [      T1] Estimated ratio of average max frequency by base frequency (times 1024): 1202
[    0.269017] [      T1] rcu: Hierarchical SRCU implementation.
[    0.269018] [      T1] rcu: 	Max phase no-delay instances is 1000.
[    0.269071] [      T1] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[    0.269239] [      T1] smp: Bringing up secondary CPUs ...
[    0.269348] [      T1] smpboot: x86: Booting SMP configuration:
[    0.269350] [      T1] .... node  #0, CPUs:      #2
[    0.005930] [      T0] Disabled fast string operations
[    0.270566] [      T1]  #1 #3
[    0.005930] [      T0] Disabled fast string operations
[    0.005930] [      T0] Disabled fast string operations
[    0.276579] [      T1] smp: Brought up 1 node, 4 CPUs
[    0.276581] [      T1] smpboot: Total of 4 processors activated (18357.92 BogoMIPS)
[    0.279658] [      T1] Memory: 7440612K/8277896K available (14336K kernel code, 1105K rwdata, 4660K rodata, 2272K init, 556K bss, 834024K reserved, 0K cma-reserved)
[    0.279658] [      T1] devtmpfs: initialized
[    0.279658] [      T1] ACPI: PM: Registering ACPI NVS region [mem 0xbaca8000-0xbacb6fff] (61440 bytes)
[    0.279658] [      T1] ACPI: PM: Registering ACPI NVS region [mem 0xbadfb000-0xbadfcfff] (8192 bytes)
[    0.279658] [      T1] ACPI: PM: Registering ACPI NVS region [mem 0xbadff000-0xbae01fff] (12288 bytes)
[    0.279658] [      T1] ACPI: PM: Registering ACPI NVS region [mem 0xbae0a000-0xbae1afff] (69632 bytes)
[    0.279658] [      T1] ACPI: PM: Registering ACPI NVS region [mem 0xbaf18000-0xbaf1bfff] (16384 bytes)
[    0.279658] [      T1] ACPI: PM: Registering ACPI NVS region [mem 0xbaf1f000-0xbaf9efff] (524288 bytes)
[    0.279658] [      T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.279658] [      T1] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.279658] [      T1] pinctrl core: initialized pinctrl subsystem
[    0.280689] [      T1] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.280889] [      T1] thermal_sys: Registered thermal governor 'fair_share'
[    0.280891] [      T1] thermal_sys: Registered thermal governor 'bang_bang'
[    0.280893] [      T1] thermal_sys: Registered thermal governor 'step_wise'
[    0.280894] [      T1] thermal_sys: Registered thermal governor 'user_space'
[    0.280907] [      T1] cpuidle: using governor ladder
[    0.280912] [      T1] cpuidle: using governor menu
[    0.280974] [      T1] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.281030] [      T1] PCI: ECAM [mem 0xf8000000-0xfbffffff] (base 0xf8000000) for domain 0000 [bus 00-3f]
[    0.281036] [      T1] PCI: ECAM [mem 0xf8000000-0xfbffffff] reserved as E820 entry
[    0.281046] [      T1] PCI: Using configuration type 1 for base access
[    0.281125] [      T1] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.348566] [      T1] raid6: sse2x4   gen() 10774 MB/s
[    0.416565] [      T1] raid6: sse2x2   gen() 11221 MB/s
[    0.484566] [      T1] raid6: sse2x1   gen()  8973 MB/s
[    0.484568] [      T1] raid6: using algorithm sse2x2 gen() 11221 MB/s
[    0.552564] [      T1] raid6: .... xor() 6143 MB/s, rmw enabled
[    0.552566] [      T1] raid6: using ssse3x2 recovery algorithm
[    0.552611] [      T1] ACPI: Added _OSI(Module Device)
[    0.552613] [      T1] ACPI: Added _OSI(Processor Device)
[    0.552614] [      T1] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.552615] [      T1] ACPI: Added _OSI(Processor Aggregator Device)
[    0.557230] [      T1] ACPI: 5 ACPI AML tables successfully acquired and loaded
[    0.557633] [      T1] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.557633] [      T1] ACPI: Dynamic OEM Table Load:
[    0.557633] [      T1] ACPI: SSDT 0xFFFFA221C089B000 00067C (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
[    0.557633] [      T1] ACPI: Dynamic OEM Table Load:
[    0.557633] [      T1] ACPI: SSDT 0xFFFFA221C015B000 000303 (v01 PmRef  ApIst    00003000 INTL 20061109)
[    0.557633] [      T1] ACPI: Dynamic OEM Table Load:
[    0.557633] [      T1] ACPI: SSDT 0xFFFFA221C018C600 000119 (v01 PmRef  ApCst    00003000 INTL 20061109)
[    0.558160] [      T1] ACPI: EC: EC started
[    0.558162] [      T1] ACPI: EC: interrupt blocked
[    0.561715] [      T1] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.561719] [      T1] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions
[    0.561721] [      T1] ACPI: Interpreter enabled
[    0.561739] [      T1] ACPI: PM: (supports S0 S3 S4 S5)
[    0.561740] [      T1] ACPI: Using IOAPIC for interrupt routing
[    0.562129] [      T1] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.562131] [      T1] PCI: Using E820 reservations for host bridge windows
[    0.562274] [      T1] ACPI: Enabled 7 GPEs in block 00 to 3F
[    0.567750] [      T1] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.567758] [      T1] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.567790] [      T1] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability LTR]
[    0.567793] [      T1] acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME AER PCIeCapability LTR]
[    0.567794] [      T1] acpi PNP0A08:00: _OSC: platform retains control of PCIe features (AE_ERROR)
[    0.568142] [      T1] PCI host bridge to bus 0000:00
[    0.568146] [      T1] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.568149] [      T1] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.568152] [      T1] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.568154] [      T1] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff window]
[    0.568156] [      T1] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[    0.568158] [      T1] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.568172] [      T1] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000 conventional PCI endpoint
[    0.568244] [      T1] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400 PCIe Root Port
[    0.568257] [      T1] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.568260] [      T1] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.568263] [      T1] pci 0000:00:01.0:   bridge window [mem 0xf0000000-0xf10fffff]
[    0.568268] [      T1] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.568293] [      T1] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.568371] [      T1] pci 0000:00:02.0: [8086:0116] type 00 class 0x030000 conventional PCI endpoint
[    0.568380] [      T1] pci 0000:00:02.0: BAR 0 [mem 0xf1400000-0xf17fffff 64bit]
[    0.568386] [      T1] pci 0000:00:02.0: BAR 2 [mem 0xe0000000-0xefffffff 64bit pref]
[    0.568390] [      T1] pci 0000:00:02.0: BAR 4 [io  0x4000-0x403f]
[    0.568402] [      T1] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.568764] [      T1] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000 conventional PCI endpoint
[    0.568786] [      T1] pci 0000:00:16.0: BAR 0 [mem 0xf1c05000-0xf1c0500f 64bit]
[    0.568862] [      T1] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.568931] [      T1] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320 conventional PCI endpoint
[    0.568948] [      T1] pci 0000:00:1a.0: BAR 0 [mem 0xf1c0a000-0xf1c0a3ff]
[    0.569033] [      T1] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.569119] [      T1] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300 PCIe Root Complex Integrated Endpoint
[    0.569138] [      T1] pci 0000:00:1b.0: BAR 0 [mem 0xf1c00000-0xf1c03fff 64bit]
[    0.569219] [      T1] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.569319] [      T1] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400 PCIe Root Port
[    0.569360] [      T1] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.569484] [      T1] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.569601] [      T1] pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400 PCIe Root Port
[    0.569653] [      T1] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.569664] [      T1] pci 0000:00:1c.1:   bridge window [mem 0xf1b00000-0xf1bfffff]
[    0.569776] [      T1] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.569894] [      T1] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400 PCIe Root Port
[    0.569945] [      T1] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.569955] [      T1] pci 0000:00:1c.3:   bridge window [mem 0xf1a00000-0xf1afffff]
[    0.570069] [      T1] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.570178] [      T1] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400 PCIe Root Port
[    0.570209] [      T1] pci 0000:00:1c.4: PCI bridge to [bus 05]
[    0.570215] [      T1] pci 0000:00:1c.4:   bridge window [mem 0xf1900000-0xf19fffff]
[    0.570246] [      T1] pci 0000:00:1c.4: broken device, retraining non-functional downstream link at 2.5GT/s
[    1.576572] [      T1] pci 0000:00:1c.4: retraining failed
[    1.576669] [      T1] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    1.576772] [      T1] pci 0000:00:1c.5: [8086:1c1a] type 01 class 0x060400 PCIe Root Port
[    1.576803] [      T1] pci 0000:00:1c.5: PCI bridge to [bus 06]
[    1.576809] [      T1] pci 0000:00:1c.5:   bridge window [io  0x2000-0x2fff]
[    1.576813] [      T1] pci 0000:00:1c.5:   bridge window [mem 0xf1800000-0xf18fffff]
[    1.576882] [      T1] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    1.576977] [      T1] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320 conventional PCI endpoint
[    1.576995] [      T1] pci 0000:00:1d.0: BAR 0 [mem 0xf1c09000-0xf1c093ff]
[    1.577079] [      T1] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    1.577168] [      T1] pci 0000:00:1f.0: [8086:1c4b] type 00 class 0x060100 conventional PCI endpoint
[    1.577349] [      T1] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601 conventional PCI endpoint
[    1.577363] [      T1] pci 0000:00:1f.2: BAR 0 [io  0x4088-0x408f]
[    1.577371] [      T1] pci 0000:00:1f.2: BAR 1 [io  0x4094-0x4097]
[    1.577379] [      T1] pci 0000:00:1f.2: BAR 2 [io  0x4080-0x4087]
[    1.577387] [      T1] pci 0000:00:1f.2: BAR 3 [io  0x4090-0x4093]
[    1.577395] [      T1] pci 0000:00:1f.2: BAR 4 [io  0x4060-0x407f]
[    1.577403] [      T1] pci 0000:00:1f.2: BAR 5 [mem 0xf1c08000-0xf1c087ff]
[    1.577445] [      T1] pci 0000:00:1f.2: PME# supported from D3hot
[    1.577515] [      T1] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500 conventional PCI endpoint
[    1.577533] [      T1] pci 0000:00:1f.3: BAR 0 [mem 0xf1c04000-0xf1c040ff 64bit]
[    1.577554] [      T1] pci 0000:00:1f.3: BAR 4 [io  0xefa0-0xefbf]
[    1.577667] [      T1] pci 0000:01:00.0: [10de:0df5] type 00 class 0x030000 PCIe Endpoint
[    1.577678] [      T1] pci 0000:01:00.0: BAR 0 [mem 0xf0000000-0xf0ffffff]
[    1.577687] [      T1] pci 0000:01:00.0: BAR 1 [mem 0xc0000000-0xcfffffff 64bit pref]
[    1.577695] [      T1] pci 0000:01:00.0: BAR 3 [mem 0xd0000000-0xd1ffffff 64bit pref]
[    1.577701] [      T1] pci 0000:01:00.0: BAR 5 [io  0x3000-0x307f]
[    1.577707] [      T1] pci 0000:01:00.0: ROM [mem 0xfff80000-0xffffffff pref]
[    1.577712] [      T1] pci 0000:01:00.0: enabling Extended Tags
[    1.577723] [      T1] pci 0000:01:00.0: Enabling HDA controller
[    1.577920] [      T1] pci 0000:01:00.1: [10de:0bea] type 00 class 0x040300 PCIe Endpoint
[    1.577930] [      T1] pci 0000:01:00.1: BAR 0 [mem 0xf1000000-0xf1003fff]
[    1.577960] [      T1] pci 0000:01:00.1: enabling Extended Tags
[    1.578044] [      T1] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.578114] [      T1] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    1.578377] [      T1] pci 0000:03:00.0: [8086:0091] type 00 class 0x028000 PCIe Endpoint
[    1.578555] [      T1] pci 0000:03:00.0: BAR 0 [mem 0xf1b00000-0xf1b01fff 64bit]
[    1.579295] [      T1] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    1.579858] [      T1] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    1.580013] [      T1] pci 0000:04:00.0: [1033:0194] type 00 class 0x0c0330 PCIe Endpoint
[    1.580045] [      T1] pci 0000:04:00.0: BAR 0 [mem 0xf1a00000-0xf1a01fff 64bit]
[    1.580207] [      T1] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[    1.580373] [      T1] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    1.580447] [      T1] pci 0000:00:1c.4: PCI bridge to [bus 05]
[    1.580529] [      T1] pci 0000:06:00.0: [1969:1083] type 00 class 0x020000 PCIe Endpoint
[    1.580563] [      T1] pci 0000:06:00.0: BAR 0 [mem 0xf1800000-0xf183ffff 64bit]
[    1.580580] [      T1] pci 0000:06:00.0: BAR 2 [io  0x2000-0x207f]
[    1.580653] [      T1] pci 0000:06:00.0: [Firmware Bug]: disabling VPD access (can't determine size of non-standard VPD format)
[    1.580727] [      T1] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.580858] [      T1] pci 0000:00:1c.5: PCI bridge to [bus 06]
[    1.581468] [      T1] ACPI: PCI: Interrupt link LNKA configured for IRQ 11
[    1.581513] [      T1] ACPI: PCI: Interrupt link LNKB configured for IRQ 9
[    1.581556] [      T1] ACPI: PCI: Interrupt link LNKC configured for IRQ 9
[    1.581598] [      T1] ACPI: PCI: Interrupt link LNKD configured for IRQ 10
[    1.581641] [      T1] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    1.581642] [      T1] ACPI: PCI: Interrupt link LNKE disabled
[    1.581683] [      T1] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    1.581684] [      T1] ACPI: PCI: Interrupt link LNKF disabled
[    1.581725] [      T1] ACPI: PCI: Interrupt link LNKG configured for IRQ 10
[    1.581766] [      T1] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[    1.582025] [      T1] ACPI: EC: interrupt unblocked
[    1.582027] [      T1] ACPI: EC: event unblocked
[    1.582033] [      T1] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    1.582035] [      T1] ACPI: EC: GPE=0x17
[    1.582037] [      T1] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC initialization complete
[    1.582039] [      T1] ACPI: \_SB_.PCI0.LPCB.EC0_: EC: Used to handle transactions and events
[    1.582086] [      T1] iommu: Default domain type: Translated
[    1.582088] [      T1] iommu: DMA domain TLB invalidation policy: lazy mode
[    1.582154] [      T1] SCSI subsystem initialized
[    1.582162] [      T1] libata version 3.00 loaded.
[    1.582162] [      T1] PCI: Using ACPI for IRQ routing
[    1.582298] [      T1] PCI: pci_cache_line_size set to 64 bytes
[    1.582451] [      T1] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[    1.582453] [      T1] e820: reserve RAM buffer [mem 0xb5a28000-0xb7ffffff]
[    1.582455] [      T1] e820: reserve RAM buffer [mem 0xb8861000-0xbbffffff]
[    1.582458] [      T1] e820: reserve RAM buffer [mem 0xbac8f000-0xbbffffff]
[    1.582460] [      T1] e820: reserve RAM buffer [mem 0xbb000000-0xbbffffff]
[    1.582461] [      T1] e820: reserve RAM buffer [mem 0x23fe00000-0x23fffffff]
[    1.582477] [      T1] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    1.582477] [      T1] pci 0000:00:02.0: vgaarb: bridge control possible
[    1.582477] [      T1] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    1.582477] [      T1] pci 0000:01:00.0: vgaarb: bridge control possible
[    1.582477] [      T1] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    1.582477] [      T1] vgaarb: loaded
[    1.582477] [      T1] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[    1.582477] [      T1] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    1.582477] [      T1] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    1.585595] [      T1] clocksource: Switched to clocksource tsc-early
[    1.585681] [      T1] pnp: PnP ACPI init
[    1.585774] [      T1] system 00:00: [io  0x0680-0x069f] has been reserved
[    1.585778] [      T1] system 00:00: [io  0x1000-0x1003] has been reserved
[    1.585780] [      T1] system 00:00: [io  0x1004-0x1013] has been reserved
[    1.585782] [      T1] system 00:00: [io  0xffff] has been reserved
[    1.585784] [      T1] system 00:00: [io  0x0400-0x0453] has been reserved
[    1.585786] [      T1] system 00:00: [io  0x0458-0x047f] has been reserved
[    1.585788] [      T1] system 00:00: [io  0x0500-0x057f] has been reserved
[    1.585790] [      T1] system 00:00: [io  0x164e-0x164f] has been reserved
[    1.585865] [      T1] system 00:02: [io  0x0454-0x0457] has been reserved
[    1.586030] [      T1] pnp 00:05: disabling [mem 0xfffff000-0xffffffff] because it overlaps 0000:01:00.0 BAR 6 [mem 0xfff80000-0xffffffff pref]
[    1.586055] [      T1] system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    1.586058] [      T1] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[    1.586060] [      T1] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[    1.586061] [      T1] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[    1.586063] [      T1] system 00:05: [mem 0xf8000000-0xfbffffff] has been reserved
[    1.586065] [      T1] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[    1.586067] [      T1] system 00:05: [mem 0xfed90000-0xfed93fff] has been reserved
[    1.586069] [      T1] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
[    1.586071] [      T1] system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
[    1.586073] [      T1] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[    1.586220] [      T1] pnp: PnP ACPI: found 6 devices
[    1.591302] [      T1] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    1.591367] [      T1] NET: Registered PF_INET protocol family
[    1.591532] [      T1] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    1.593910] [      T1] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    1.593926] [      T1] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    1.593948] [      T1] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    1.594030] [      T1] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    1.594422] [      T1] TCP: Hash tables configured (established 65536 bind 65536)
[    1.594470] [      T1] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    1.594493] [      T1] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    1.594555] [      T1] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    1.594566] [      T1] pci 0000:01:00.0: ROM [mem 0xfff80000-0xffffffff pref]: can't claim; no compatible bridge window
[    1.594584] [      T1] pci 0000:01:00.0: ROM [mem 0xf1080000-0xf10fffff pref]: assigned
[    1.594587] [      T1] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.594590] [      T1] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    1.594594] [      T1] pci 0000:00:01.0:   bridge window [mem 0xf0000000-0xf10fffff]
[    1.594596] [      T1] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    1.594601] [      T1] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    1.594618] [      T1] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    1.594625] [      T1] pci 0000:00:1c.1:   bridge window [mem 0xf1b00000-0xf1bfffff]
[    1.594637] [      T1] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    1.594643] [      T1] pci 0000:00:1c.3:   bridge window [mem 0xf1a00000-0xf1afffff]
[    1.594655] [      T1] pci 0000:00:1c.4: PCI bridge to [bus 05]
[    1.594660] [      T1] pci 0000:00:1c.4:   bridge window [mem 0xf1900000-0xf19fffff]
[    1.594669] [      T1] pci 0000:00:1c.5: PCI bridge to [bus 06]
[    1.594672] [      T1] pci 0000:00:1c.5:   bridge window [io  0x2000-0x2fff]
[    1.594677] [      T1] pci 0000:00:1c.5:   bridge window [mem 0xf1800000-0xf18fffff]
[    1.594686] [      T1] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    1.594688] [      T1] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    1.594690] [      T1] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    1.594692] [      T1] pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfeafffff window]
[    1.594694] [      T1] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff window]
[    1.594696] [      T1] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    1.594697] [      T1] pci_bus 0000:01: resource 1 [mem 0xf0000000-0xf10fffff]
[    1.594699] [      T1] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
[    1.594701] [      T1] pci_bus 0000:03: resource 1 [mem 0xf1b00000-0xf1bfffff]
[    1.594703] [      T1] pci_bus 0000:04: resource 1 [mem 0xf1a00000-0xf1afffff]
[    1.594704] [      T1] pci_bus 0000:05: resource 1 [mem 0xf1900000-0xf19fffff]
[    1.594706] [      T1] pci_bus 0000:06: resource 0 [io  0x2000-0x2fff]
[    1.594707] [      T1] pci_bus 0000:06: resource 1 [mem 0xf1800000-0xf18fffff]
[    1.595061] [      T1] pci 0000:01:00.1: extending delay after power-on from D3hot to 20 msec
[    1.595095] [      T1] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
[    1.596454] [      T1] PCI: CLS 64 bytes, default 64
[    1.596470] [      T1] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.596472] [      T1] software IO TLB: mapped [mem 0x00000000b1a28000-0x00000000b5a28000] (64MB)
[    1.596535] [     T40] Trying to unpack rootfs image as initramfs...
[    1.597031] [      T1] Initialise system trusted keyrings
[    1.597079] [      T1] workingset: timestamp_bits=40 max_order=21 bucket_order=0
[    1.597091] [      T1] zbud: loaded
[    1.597255] [      T1] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.625397] [      T1] xor: automatically using best checksumming function   avx       
[    1.625401] [      T1] async_tx: api initialized (async)
[    1.625404] [      T1] Key type asymmetric registered
[    1.625406] [      T1] Asymmetric key parser 'x509' registered
[    1.625408] [      T1] Asymmetric key parser 'pkcs8' registered
[    1.625433] [      T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    1.738052] [      T1] ACPI: AC: AC Adapter [ADP0] (on-line)
[    1.738170] [      T1] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    1.738215] [      T1] ACPI: button: Power Button [PWRB]
[    1.738264] [      T1] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[    1.738294] [      T1] ACPI: button: Sleep Button [SLPB]
[    1.738343] [      T1] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
[    1.738439] [      T1] ACPI: button: Lid Switch [LID0]
[    1.738491] [      T1] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    1.738551] [      T1] ACPI: button: Power Button [PWRF]
[    1.753232] [     T68] ACPI: battery: Slot [BAT0] (battery present)
[    1.755766] [      T1] Linux agpgart interface v0.103
[    1.755878] [      T1] ACPI: bus type drm_connector registered
[    1.756038] [      T1] i915 0000:00:02.0: [drm] Found SANDYBRIDGE (device ID 0116) display version 6.00
[    1.756396] [      T1] i915 0000:00:02.0: vgaarb: deactivate vga console
[    1.756786] [      T1] Console: switching to colour dummy device 80x25
[    1.764893] [      T1] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=io+mem
[    2.041409] [      T1] i915 0000:00:02.0: [drm] Skipping intel_backlight registration
[    2.041594] [      T1] [drm] Initialized i915 1.6.0 for 0000:00:02.0 on minor 0
[    2.041793] [      T1] ACPI: video: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[    2.041823] [      T1] ACPI: video: Video Device [PEGP] (multi-head: yes  rom: yes  post: no)
[    2.041876] [      T1] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:2c/LNXVIDEO:00/input/input4
[    2.042259] [      T1] ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    2.042349] [      T1] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input5
[    2.042623] [      T1] acpi device:31: registered as cooling_device4
[    2.174658] [      T1] fbcon: i915drmfb (fb0) is primary device
[    2.277370] [     T40] Freeing initrd memory: 4328K
[    2.622051] [     T49] tsc: Refined TSC clocksource calibration: 2294.786 MHz
[    2.622063] [     T49] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2113f7e44a7, max_idle_ns: 440795281465 ns
[    2.622106] [     T49] clocksource: Switched to clocksource tsc
[    3.100993] [      T1] Console: switching to colour frame buffer device 170x48
[    3.118888] [      T1] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[    3.121257] [      T1] brd: module loaded
[    3.122632] [      T1] loop: module loaded
[    3.122884] [      T1] ahci 0000:00:1f.2: version 3.0
[    3.123079] [      T1] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[    3.133167] [      T1] ahci 0000:00:1f.2: AHCI vers 0001.0300, 32 command slots, 6 Gbps, SATA mode
[    3.133171] [      T1] ahci 0000:00:1f.2: 3/6 ports implemented (port mask 0x13)
[    3.133174] [      T1] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems sxs apst 
[    3.154611] [      T1] scsi host0: ahci
[    3.154734] [      T1] scsi host1: ahci
[    3.154840] [      T1] scsi host2: ahci
[    3.154944] [      T1] scsi host3: ahci
[    3.155050] [      T1] scsi host4: ahci
[    3.155148] [      T1] scsi host5: ahci
[    3.155187] [      T1] ata1: SATA max UDMA/133 abar m2048@0xf1c08000 port 0xf1c08100 irq 26 lpm-pol 0
[    3.155192] [      T1] ata2: SATA max UDMA/133 abar m2048@0xf1c08000 port 0xf1c08180 irq 26 lpm-pol 0
[    3.155194] [      T1] ata3: DUMMY
[    3.155195] [      T1] ata4: DUMMY
[    3.155197] [      T1] ata5: SATA max UDMA/133 abar m2048@0xf1c08000 port 0xf1c08300 irq 26 lpm-pol 0
[    3.155198] [      T1] ata6: DUMMY
[    3.155425] [      T1] tun: Universal TUN/TAP device driver, 1.6
[    3.155556] [      T1] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    3.155601] [      T1] i8042: [0] 20 -> i8042 (command)
[    3.155820] [      T1] i8042: [0] 67 <- i8042 (return)
[    3.155874] [      T1] i8042: [0] 20 -> i8042 (command)
[    3.156089] [      T1] i8042: [0] 67 <- i8042 (return)
[    3.156095] [      T1] i8042: [0] 60 -> i8042 (command)
[    3.156310] [      T1] i8042: [0] 76 -> i8042 (parameter)
[    3.156530] [      T1] i8042: [0] d3 -> i8042 (command)
[    3.156692] [      T1] i8042: [0] 5a -> i8042 (parameter)
[    3.156963] [      T1] i8042: [0] 5a <- i8042 (return)
[    3.156968] [      T1] i8042: [0] a7 -> i8042 (command)
[    3.157076] [      T1] i8042: [0] 20 -> i8042 (command)
[    3.157344] [      T1] i8042: [0] 76 <- i8042 (return)
[    3.157347] [      T1] i8042: [0] a8 -> i8042 (command)
[    3.157507] [      T1] i8042: [0] 20 -> i8042 (command)
[    3.157775] [      T1] i8042: [0] 56 <- i8042 (return)
[    3.157779] [      T1] i8042: [0] 60 -> i8042 (command)
[    3.157941] [      T1] i8042: [1] 74 -> i8042 (parameter)
[    3.158168] [      T1] i8042: [1] d3 -> i8042 (command)
[    3.158383] [      T1] i8042: [1] f0 -> i8042 (parameter)
[    3.158601] [      T1] i8042: [1] f0 <- i8042 (return)
[    3.158605] [      T1] i8042: [1] d3 -> i8042 (command)
[    3.158715] [      T1] i8042: [1] 56 -> i8042 (parameter)
[    3.158934] [      T1] i8042: [1] 56 <- i8042 (return)
[    3.158937] [      T1] i8042: [1] d3 -> i8042 (command)
[    3.159046] [      T1] i8042: [1] a4 -> i8042 (parameter)
[    3.159266] [      T1] i8042: [1] a4 <- i8042 (return)
[    3.159286] [      T1] i8042: [1] 60 -> i8042 (command)
[    3.159396] [      T1] i8042: [1] 56 -> i8042 (parameter)
[    3.159619] [      T1] i8042: [1] 60 -> i8042 (command)
[    3.159833] [      T1] i8042: [1] 47 -> i8042 (parameter)
[    3.159836] [      T1] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.159842] [      T1] serio: i8042 AUX port at 0x60,0x64 irq 12
[    3.159958] [      T1] mousedev: PS/2 mouse device common for all mice
[    3.160157] [      T1] rtc_cmos 00:01: RTC can wake from S4
[    3.160372] [     T10] i8042: [1] f5 -> i8042 (kbd-data)
[    3.160456] [      T1] rtc_cmos 00:01: registered as rtc0
[    3.160495] [      T1] rtc_cmos 00:01: setting system clock to 2024-08-28T21:51:23 UTC (1724881883)
[    3.160537] [      T1] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    3.160614] [      T1] intel_pstate: Intel P-state driver initializing
[    3.160753] [      T1] hid: raw HID events driver (C) Jiri Kosina
[    3.160890] [      C2] i8042: [1] fa <- i8042 (interrupt, 0, 1)
[    3.160940] [     T10] i8042: [1] ed -> i8042 (kbd-data)
[    3.161075] [      T1] NET: Registered PF_PACKET protocol family
[    3.161188] [      C2] i8042: [1] fa <- i8042 (interrupt, 0, 1)
[    3.161197] [      T1] Key type dns_resolver registered
[    3.161201] [     T10] i8042: [1] 00 -> i8042 (kbd-data)
[    3.161488] [      C2] i8042: [1] fa <- i8042 (interrupt, 0, 1)
[    3.161508] [     T10] i8042: [1] f3 -> i8042 (kbd-data)
[    3.161594] [     T19] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    3.161649] [      T1] microcode: Current revision: 0x0000002f
[    3.161653] [      T1] microcode: Updated early from: 0x00000025
[    3.161782] [      T1] IPI shorthand broadcast: enabled
[    3.161803] [      C2] i8042: [1] fa <- i8042 (interrupt, 0, 1)
[    3.161813] [     T10] i8042: [1] 00 -> i8042 (kbd-data)
[    3.162092] [      C2] i8042: [2] fa <- i8042 (interrupt, 0, 1)
[    3.162121] [     T10] i8042: [2] f4 -> i8042 (kbd-data)
[    3.162534] [      C2] i8042: [2] fa <- i8042 (interrupt, 0, 1)
[    3.162671] [     T10] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input6
[    3.162814] [     T10] i8042: [2] d4 -> i8042 (command)
[    3.163033] [     T10] i8042: [2] f2 -> i8042 (parameter)
[    3.165620] [      C1] i8042: [2] fa <- i8042 (interrupt, 1, 12)
[    3.166474] [      C1] i8042: [3] 00 <- i8042 (interrupt, 1, 12)
[    3.166527] [     T10] i8042: [3] 60 -> i8042 (command)
[    3.166694] [     T10] i8042: [3] 45 -> i8042 (parameter)
[    3.166909] [      T1] sched_clock: Marking stable (3164005095, 1930521)->(3216296047, -50360431)
[    3.166911] [     T10] i8042: [3] 60 -> i8042 (command)
[    3.167129] [     T10] i8042: [3] 47 -> i8042 (parameter)
[    3.167244] [      T1] registered taskstats version 1
[    3.167248] [      T1] Loading compiled-in X.509 certificates
[    3.167330] [     T10] i8042: [3] d4 -> i8042 (command)
[    3.167546] [     T10] i8042: [3] f2 -> i8042 (parameter)
[    3.169323] [      T1] Demotion targets for Node 0: null
[    3.169360] [      T1] Key type .fscrypt registered
[    3.169362] [      T1] Key type fscrypt-provisioning registered
[    3.169737] [      T1] Btrfs loaded, zoned=no, fsverity=no
[    3.170196] [      T1] Key type encrypted registered
[    3.170582] [      C1] i8042: [4] fa <- i8042 (interrupt, 1, 12)
[    3.171485] [      C1] i8042: [4] 00 <- i8042 (interrupt, 1, 12)
[    3.171494] [     T10] i8042: [4] d4 -> i8042 (command)
[    3.171761] [     T10] i8042: [4] f6 -> i8042 (parameter)
[    3.174886] [      C1] i8042: [5] fa <- i8042 (interrupt, 1, 12)
[    3.174900] [     T10] i8042: [5] d4 -> i8042 (command)
[    3.175221] [     T10] i8042: [5] f3 -> i8042 (parameter)
[    3.177612] [      C1] i8042: [5] fa <- i8042 (interrupt, 1, 12)
[    3.177620] [     T10] i8042: [5] d4 -> i8042 (command)
[    3.177732] [     T10] i8042: [5] 0a -> i8042 (parameter)
[    3.180113] [      C1] i8042: [6] fa <- i8042 (interrupt, 1, 12)
[    3.180133] [     T10] i8042: [6] d4 -> i8042 (command)
[    3.180715] [     T10] i8042: [6] e8 -> i8042 (parameter)
[    3.183123] [      C1] i8042: [7] fa <- i8042 (interrupt, 1, 12)
[    3.183141] [     T10] i8042: [7] d4 -> i8042 (command)
[    3.183358] [     T10] i8042: [7] 00 -> i8042 (parameter)
[    3.185942] [      C1] i8042: [8] fa <- i8042 (interrupt, 1, 12)
[    3.186175] [     T10] i8042: [8] d4 -> i8042 (command)
[    3.186341] [     T10] i8042: [8] f3 -> i8042 (parameter)
[    3.188806] [      C1] i8042: [8] fa <- i8042 (interrupt, 1, 12)
[    3.188823] [     T10] i8042: [8] d4 -> i8042 (command)
[    3.188989] [     T10] i8042: [8] 14 -> i8042 (parameter)
[    3.192355] [      C1] i8042: [9] fa <- i8042 (interrupt, 1, 12)
[    3.192372] [     T10] i8042: [9] d4 -> i8042 (command)
[    3.192641] [     T10] i8042: [9] f3 -> i8042 (parameter)
[    3.195168] [      C1] i8042: [10] fa <- i8042 (interrupt, 1, 12)
[    3.195182] [     T10] i8042: [10] d4 -> i8042 (command)
[    3.196025] [     T10] i8042: [10] 3c -> i8042 (parameter)
[    3.198379] [      C1] i8042: [11] fa <- i8042 (interrupt, 1, 12)
[    3.198394] [     T10] i8042: [11] d4 -> i8042 (command)
[    3.198663] [     T10] i8042: [11] f3 -> i8042 (parameter)
[    3.201774] [      C1] i8042: [11] fa <- i8042 (interrupt, 1, 12)
[    3.201789] [     T10] i8042: [11] d4 -> i8042 (command)
[    3.201953] [     T10] i8042: [12] 28 -> i8042 (parameter)
[    3.204395] [      C1] i8042: [12] fa <- i8042 (interrupt, 1, 12)
[    3.204410] [     T10] i8042: [12] d4 -> i8042 (command)
[    3.204678] [     T10] i8042: [12] f3 -> i8042 (parameter)
[    3.207643] [      C1] i8042: [13] fa <- i8042 (interrupt, 1, 12)
[    3.207657] [     T10] i8042: [13] d4 -> i8042 (command)
[    3.207822] [     T10] i8042: [13] 14 -> i8042 (parameter)
[    3.210096] [      C1] i8042: [14] fa <- i8042 (interrupt, 1, 12)
[    3.210110] [     T10] i8042: [14] d4 -> i8042 (command)
[    3.211318] [     T10] i8042: [14] f3 -> i8042 (parameter)
[    3.213768] [      C1] i8042: [14] fa <- i8042 (interrupt, 1, 12)
[    3.213783] [     T10] i8042: [14] d4 -> i8042 (command)
[    3.213948] [     T10] i8042: [15] 14 -> i8042 (parameter)
[    3.216246] [      C1] i8042: [15] fa <- i8042 (interrupt, 1, 12)
[    3.216260] [     T10] i8042: [15] d4 -> i8042 (command)
[    3.217103] [     T10] i8042: [15] f3 -> i8042 (parameter)
[    3.219615] [      C1] i8042: [16] fa <- i8042 (interrupt, 1, 12)
[    3.219633] [     T10] i8042: [16] d4 -> i8042 (command)
[    3.219797] [     T10] i8042: [16] 3c -> i8042 (parameter)
[    3.222736] [      C1] i8042: [17] fa <- i8042 (interrupt, 1, 12)
[    3.222752] [     T10] i8042: [17] d4 -> i8042 (command)
[    3.222916] [     T10] i8042: [17] f3 -> i8042 (parameter)
[    3.225471] [      C1] i8042: [17] fa <- i8042 (interrupt, 1, 12)
[    3.225488] [     T10] i8042: [17] d4 -> i8042 (command)
[    3.225757] [     T10] i8042: [17] 28 -> i8042 (parameter)
[    3.228642] [      C1] i8042: [18] fa <- i8042 (interrupt, 1, 12)
[    3.228659] [     T10] i8042: [18] d4 -> i8042 (command)
[    3.228822] [     T10] i8042: [18] f3 -> i8042 (parameter)
[    3.231304] [      C1] i8042: [19] fa <- i8042 (interrupt, 1, 12)
[    3.231351] [     T10] i8042: [19] d4 -> i8042 (command)
[    3.231891] [     T10] i8042: [19] 14 -> i8042 (parameter)
[    3.234241] [      C1] i8042: [20] fa <- i8042 (interrupt, 1, 12)
[    3.234276] [     T10] i8042: [20] d4 -> i8042 (command)
[    3.234454] [     T10] i8042: [20] f3 -> i8042 (parameter)
[    3.237220] [      C1] i8042: [20] fa <- i8042 (interrupt, 1, 12)
[    3.237268] [     T10] i8042: [20] d4 -> i8042 (command)
[    3.237493] [     T10] i8042: [20] 14 -> i8042 (parameter)
[    3.239793] [      C1] i8042: [21] fa <- i8042 (interrupt, 1, 12)
[    3.239811] [     T10] i8042: [21] d4 -> i8042 (command)
[    3.239975] [     T10] i8042: [21] f2 -> i8042 (parameter)
[    3.242942] [      C1] i8042: [22] fa <- i8042 (interrupt, 1, 12)
[    3.243815] [      C1] i8042: [22] 00 <- i8042 (interrupt, 1, 12)
[    3.243833] [     T10] i8042: [22] d4 -> i8042 (command)
[    3.243998] [     T10] i8042: [22] e8 -> i8042 (parameter)
[    3.246383] [      C1] i8042: [23] fa <- i8042 (interrupt, 1, 12)
[    3.246399] [     T10] i8042: [23] d4 -> i8042 (command)
[    3.247244] [     T10] i8042: [23] 00 -> i8042 (parameter)
[    3.249592] [      C1] i8042: [23] fa <- i8042 (interrupt, 1, 12)
[    3.249610] [     T10] i8042: [23] d4 -> i8042 (command)
[    3.249879] [     T10] i8042: [23] e8 -> i8042 (parameter)
[    3.253086] [      C1] i8042: [24] fa <- i8042 (interrupt, 1, 12)
[    3.253139] [     T10] i8042: [24] d4 -> i8042 (command)
[    3.253310] [     T10] i8042: [24] 00 -> i8042 (parameter)
[    3.255667] [      C1] i8042: [25] fa <- i8042 (interrupt, 1, 12)
[    3.255749] [     T10] i8042: [25] d4 -> i8042 (command)
[    3.255975] [     T10] i8042: [25] e8 -> i8042 (parameter)
[    3.258559] [      C1] i8042: [26] fa <- i8042 (interrupt, 1, 12)
[    3.258625] [     T10] i8042: [26] d4 -> i8042 (command)
[    3.258903] [     T10] i8042: [26] 00 -> i8042 (parameter)
[    3.261191] [      C1] i8042: [26] fa <- i8042 (interrupt, 1, 12)
[    3.261259] [     T10] i8042: [26] d4 -> i8042 (command)
[    3.261433] [     T10] i8042: [26] e8 -> i8042 (parameter)
[    3.264394] [      C1] i8042: [27] fa <- i8042 (interrupt, 1, 12)
[    3.264471] [     T10] i8042: [27] d4 -> i8042 (command)
[    3.264646] [     T10] i8042: [27] 00 -> i8042 (parameter)
[    3.266978] [      C1] i8042: [28] fa <- i8042 (interrupt, 1, 12)
[    3.267045] [     T10] i8042: [28] d4 -> i8042 (command)
[    3.267167] [     T10] i8042: [28] e9 -> i8042 (parameter)
[    3.269754] [      C1] i8042: [28] fa <- i8042 (interrupt, 1, 12)
[    3.270636] [      C1] i8042: [29] 33 <- i8042 (interrupt, 1, 12)
[    3.271517] [      C1] i8042: [29] cc <- i8042 (interrupt, 1, 12)
[    3.272395] [      C1] i8042: [29] a2 <- i8042 (interrupt, 1, 12)
[    3.272476] [     T10] i8042: [29] d4 -> i8042 (command)
[    3.273490] [     T10] i8042: [29] e8 -> i8042 (parameter)
[    3.275949] [      C1] i8042: [30] fa <- i8042 (interrupt, 1, 12)
[    3.276009] [     T10] i8042: [30] d4 -> i8042 (command)
[    3.276129] [     T10] i8042: [30] 00 -> i8042 (parameter)
[    3.279091] [      C1] i8042: [31] fa <- i8042 (interrupt, 1, 12)
[    3.279171] [     T10] i8042: [31] d4 -> i8042 (command)
[    3.279398] [     T10] i8042: [31] e8 -> i8042 (parameter)
[    3.281869] [      C1] i8042: [31] fa <- i8042 (interrupt, 1, 12)
[    3.281987] [     T10] i8042: [32] d4 -> i8042 (command)
[    3.282178] [     T10] i8042: [32] 00 -> i8042 (parameter)
[    3.284540] [      C1] i8042: [32] fa <- i8042 (interrupt, 1, 12)
[    3.284614] [     T10] i8042: [32] d4 -> i8042 (command)
[    3.284788] [     T10] i8042: [32] e8 -> i8042 (parameter)
[    3.287154] [      C1] i8042: [33] fa <- i8042 (interrupt, 1, 12)
[    3.287220] [     T10] i8042: [33] d4 -> i8042 (command)
[    3.287341] [     T10] i8042: [33] 00 -> i8042 (parameter)
[    3.289906] [      C1] i8042: [33] fa <- i8042 (interrupt, 1, 12)
[    3.289988] [     T10] i8042: [34] d4 -> i8042 (command)
[    3.290268] [     T10] i8042: [34] e8 -> i8042 (parameter)
[    3.292699] [      C1] i8042: [34] fa <- i8042 (interrupt, 1, 12)
[    3.292768] [     T10] i8042: [34] d4 -> i8042 (command)
[    3.293257] [     T10] i8042: [34] 00 -> i8042 (parameter)
[    3.295593] [      C1] i8042: [35] fa <- i8042 (interrupt, 1, 12)
[    3.295652] [     T10] i8042: [35] d4 -> i8042 (command)
[    3.295825] [     T10] i8042: [35] e9 -> i8042 (parameter)
[    3.298585] [      C1] i8042: [36] fa <- i8042 (interrupt, 1, 12)
[    3.299469] [      C1] i8042: [36] 33 <- i8042 (interrupt, 1, 12)
[    3.300357] [      C1] i8042: [36] cc <- i8042 (interrupt, 1, 12)
[    3.301238] [      C1] i8042: [36] a2 <- i8042 (interrupt, 1, 12)
[    3.301309] [     T10] i8042: [36] d4 -> i8042 (command)
[    3.301430] [     T10] i8042: [36] ff -> i8042 (parameter)
[    3.304181] [      C1] i8042: [37] fa <- i8042 (interrupt, 1, 12)
[    3.469499] [    T779] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.472976] [    T779] ata1.00: ACPI cmd 00/00:00:00:00:00:a0(NOP) rejected by device (Stat=0x51 Err=0x04)
[    3.474619] [    T779] ata1.00: ATA-10: KINGSTON SA400S37240G, S1Z40102, max UDMA/133
[    3.477535] [    T779] ata1.00: 468862128 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    3.485127] [    T779] ata1.00: ACPI cmd 00/00:00:00:00:00:a0(NOP) rejected by device (Stat=0x51 Err=0x04)
[    3.489660] [    T779] ata1.00: configured for UDMA/133
[    3.490157] [     T68] scsi 0:0:0:0: Direct-Access     ATA      KINGSTON SA400S3 0102 PQ: 0 ANSI: 5
[    3.490911] [    T809] sd 0:0:0:0: [sda] 468862128 512-byte logical blocks: (240 GB/224 GiB)
[    3.490949] [    T809] sd 0:0:0:0: [sda] Write Protect is off
[    3.490959] [    T809] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.491022] [    T809] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.491094] [    T809] sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[    3.505932] [      C1] i8042: [87] aa <- i8042 (interrupt, 1, 12)
[    3.506810] [      C1] i8042: [88] 00 <- i8042 (interrupt, 1, 12)
[    3.506888] [     T10] i8042: [88] d4 -> i8042 (command)
[    3.507006] [     T10] i8042: [88] e8 -> i8042 (parameter)
[    3.509774] [      C1] i8042: [88] fa <- i8042 (interrupt, 1, 12)
[    3.509837] [     T10] i8042: [88] d4 -> i8042 (command)
[    3.509965] [     T10] i8042: [89] 00 -> i8042 (parameter)
[    3.510978] [    T809]  sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
[    3.512085] [    T809] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.512358] [      C1] i8042: [89] fa <- i8042 (interrupt, 1, 12)
[    3.512401] [     T10] i8042: [89] d4 -> i8042 (command)
[    3.512673] [     T10] i8042: [89] e8 -> i8042 (parameter)
[    3.515520] [      C1] i8042: [90] fa <- i8042 (interrupt, 1, 12)
[    3.515539] [     T10] i8042: [90] d4 -> i8042 (command)
[    3.515759] [     T10] i8042: [90] 00 -> i8042 (parameter)
[    3.518042] [      C1] i8042: [91] fa <- i8042 (interrupt, 1, 12)
[    3.518068] [     T10] i8042: [91] d4 -> i8042 (command)
[    3.518287] [     T10] i8042: [91] e8 -> i8042 (parameter)
[    3.521209] [      C1] i8042: [91] fa <- i8042 (interrupt, 1, 12)
[    3.521258] [     T10] i8042: [91] d4 -> i8042 (command)
[    3.521541] [     T10] i8042: [91] 00 -> i8042 (parameter)
[    3.523898] [      C1] i8042: [92] fa <- i8042 (interrupt, 1, 12)
[    3.523972] [     T10] i8042: [92] d4 -> i8042 (command)
[    3.524088] [     T10] i8042: [92] e8 -> i8042 (parameter)
[    3.526712] [      C1] i8042: [93] fa <- i8042 (interrupt, 1, 12)
[    3.526775] [     T10] i8042: [93] d4 -> i8042 (command)
[    3.526900] [     T10] i8042: [93] 00 -> i8042 (parameter)
[    3.529242] [      C1] i8042: [93] fa <- i8042 (interrupt, 1, 12)
[    3.529317] [     T10] i8042: [93] d4 -> i8042 (command)
[    3.530169] [     T10] i8042: [94] e9 -> i8042 (parameter)
[    3.532571] [      C1] i8042: [94] fa <- i8042 (interrupt, 1, 12)
[    3.533452] [      C1] i8042: [94] 33 <- i8042 (interrupt, 1, 12)
[    3.534330] [      C1] i8042: [95] cc <- i8042 (interrupt, 1, 12)
[    3.535530] [      C1] i8042: [95] a2 <- i8042 (interrupt, 1, 12)
[    3.535596] [     T10] i8042: [95] d4 -> i8042 (command)
[    3.535870] [     T10] i8042: [95] e8 -> i8042 (parameter)
[    3.538231] [      C1] i8042: [96] fa <- i8042 (interrupt, 1, 12)
[    3.538293] [     T10] i8042: [96] d4 -> i8042 (command)
[    3.538470] [     T10] i8042: [96] 01 -> i8042 (parameter)
[    3.540897] [      C1] i8042: [96] fa <- i8042 (interrupt, 1, 12)
[    3.540972] [     T10] i8042: [96] d4 -> i8042 (command)
[    3.541088] [     T10] i8042: [96] e8 -> i8042 (parameter)
[    3.543660] [      C1] i8042: [97] fa <- i8042 (interrupt, 1, 12)
[    3.543733] [     T10] i8042: [97] d4 -> i8042 (command)
[    3.543851] [     T10] i8042: [97] 00 -> i8042 (parameter)
[    3.546666] [      C1] i8042: [98] fa <- i8042 (interrupt, 1, 12)
[    3.546740] [     T10] i8042: [98] d4 -> i8042 (command)
[    3.546857] [     T10] i8042: [98] e8 -> i8042 (parameter)
[    3.549275] [      C1] i8042: [98] fa <- i8042 (interrupt, 1, 12)
[    3.549338] [     T10] i8042: [98] d4 -> i8042 (command)
[    3.550101] [     T10] i8042: [99] 01 -> i8042 (parameter)
[    3.552489] [      C1] i8042: [99] fa <- i8042 (interrupt, 1, 12)
[    3.552564] [     T10] i8042: [99] d4 -> i8042 (command)
[    3.552785] [     T10] i8042: [99] e8 -> i8042 (parameter)
[    3.555568] [      C1] i8042: [100] fa <- i8042 (interrupt, 1, 12)
[    3.555642] [     T10] i8042: [100] d4 -> i8042 (command)
[    3.555863] [     T10] i8042: [100] 00 -> i8042 (parameter)
[    3.558152] [      C1] i8042: [101] fa <- i8042 (interrupt, 1, 12)
[    3.558211] [     T10] i8042: [101] d4 -> i8042 (command)
[    3.558389] [     T10] i8042: [101] e9 -> i8042 (parameter)
[    3.561110] [      C1] i8042: [101] fa <- i8042 (interrupt, 1, 12)
[    3.561954] [      C1] i8042: [102] 01 <- i8042 (interrupt, 1, 12)
[    3.562880] [      C1] i8042: [102] 00 <- i8042 (interrupt, 1, 12)
[    3.563883] [      C1] i8042: [102] 64 <- i8042 (interrupt, 1, 12)
[    3.563978] [     T10] i8042: [102] d4 -> i8042 (command)
[    3.564097] [     T10] i8042: [102] f3 -> i8042 (parameter)
[    3.566895] [      C1] i8042: [103] fa <- i8042 (interrupt, 1, 12)
[    3.566972] [     T10] i8042: [103] d4 -> i8042 (command)
[    3.567093] [     T10] i8042: [103] 64 -> i8042 (parameter)
[    3.569547] [      C1] i8042: [103] fa <- i8042 (interrupt, 1, 12)
[    3.569629] [     T10] i8042: [103] d4 -> i8042 (command)
[    3.570696] [     T10] i8042: [104] e8 -> i8042 (parameter)
[    3.573046] [      C1] i8042: [104] fa <- i8042 (interrupt, 1, 12)
[    3.573124] [     T10] i8042: [104] d4 -> i8042 (command)
[    3.573245] [     T10] i8042: [104] 03 -> i8042 (parameter)
[    3.576388] [      C1] i8042: [105] fa <- i8042 (interrupt, 1, 12)
[    3.576470] [     T10] i8042: [105] d4 -> i8042 (command)
[    3.576590] [     T10] i8042: [105] e6 -> i8042 (parameter)
[    3.578983] [      C1] i8042: [106] fa <- i8042 (interrupt, 1, 12)
[    3.579205] [     T10] input: CyPS/2 Cypress Trackpad as /devices/platform/i8042/serio1/input/input8
[    3.579712] [     T10] i8042: [106] d4 -> i8042 (command)
[    3.579841] [     T10] i8042: [106] f4 -> i8042 (parameter)
[    3.582786] [      C1] i8042: [107] fa <- i8042 (interrupt, 1, 12)
[    3.805866] [    T784] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    3.810454] [    T784] ata2.00: ATAPI: HL-DT-ST DVD+/-RW GS30N, A101, max UDMA/133
[    3.815561] [    T784] ata2.00: configured for UDMA/133
[    3.821303] [    T423] scsi 1:0:0:0: CD-ROM            HL-DT-ST DVD+-RW GS30N    A101 PQ: 0 ANSI: 5
[    4.157907] [    T799] ata5: SATA link down (SStatus 0 SControl 300)
[    4.158112] [      T1] clk: Disabling unused clocks
[    4.158126] [      T1] PM: genpd: Disabling unused power domains
[    4.159670] [      T1] Freeing unused kernel image (initmem) memory: 2272K
[    4.159703] [      T1] Write protecting the kernel read-only data: 20480k
[    4.161458] [      T1] Freeing unused kernel image (rodata/data gap) memory: 1484K
[    4.161479] [      T1] Run /init as init process
[    4.161483] [      T1]   with arguments:
[    4.161487] [      T1]     /init
[    4.161491] [      T1]   with environment:
[    4.161494] [      T1]     HOME=/
[    4.161497] [      T1]     TERM=linux
[    4.163886] [      T1] pingu: init start
[    4.169810] [      T1] pingu: detection done
[    4.172441] [   T1245] PM: Image not found (code -22)
[    4.173349] [   T1246] EXT4-fs (sda5): mounting ext3 file system using the ext4 subsystem
[    4.183812] [   T1246] EXT4-fs (sda5): mounted filesystem f7516a55-bcdf-4a62-9d42-f9558b037929 r/w with ordered data mode. Quota mode: disabled.
[    4.183907] [      T1] pingu: user mounted
[    4.291320] [      T1] systemd[1]: RTC configured in localtime, applying delta of -240 minutes to system time.
[    4.306664] [      T1] systemd[1]: Inserted module 'autofs4'
[    4.322586] [      T1] systemd[1]: systemd 256.5-1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT +LIBARCHIVE)
[    4.322593] [      T1] systemd[1]: Detected architecture x86-64.
[    4.325205] [      T1] systemd[1]: Hostname set to <DellXPS15Z>.
[    4.365305] [      T1] systemd[1]: bpf-restrict-fs: BPF LSM hook not enabled in the kernel, BPF LSM not supported.
[    4.503890] [      T1] systemd[1]: Queued start job for default target graphical.target.
[    4.555595] [      T1] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[    4.556081] [      T1] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[    4.556348] [      T1] systemd[1]: Created slice user.slice - User and Session Slice.
[    4.556430] [      T1] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[    4.556485] [      T1] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[    4.556699] [      T1] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[    4.556734] [      T1] systemd[1]: Expecting device dev-disk-by\x2dlabel-SWAP.device - /dev/disk/by-label/SWAP...
[    4.556794] [      T1] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[    4.556820] [      T1] systemd[1]: Reached target slices.target - Slice Units.
[    4.558366] [      T1] systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
[    4.558473] [      T1] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[    4.558591] [      T1] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[    4.558710] [      T1] systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
[    4.558753] [      T1] systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    4.558779] [      T1] systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    4.558892] [      T1] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[    4.558975] [      T1] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[    4.559142] [      T1] systemd[1]: dev-hugepages.mount - Huge Pages File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/mm/hugepages).
[    4.560494] [      T1] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[    4.561307] [      T1] systemd[1]: Mounting run-lock.mount - Legacy Locks Directory /run/lock...
[    4.562405] [      T1] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[    4.562550] [      T1] systemd[1]: sys-kernel-tracing.mount - Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
[    4.567609] [      T1] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[    4.570114] [      T1] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[    4.571972] [      T1] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[    4.576567] [      T1] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[    4.579190] [      T1] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[    4.582828] [      T1] systemd[1]: Starting modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics...
[    4.582960] [      T1] systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
[    4.583322] [      T1] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
[    4.583328] [      T1] systemd[1]: systemd-journald.service: (This warning is only shown for the first unit using IP firewalling.)
[    4.584551] [      T1] systemd[1]: Starting systemd-journald.service - Journal Service...
[    4.591564] [      T1] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[    4.591605] [      T1] systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    4.595707] [      T1] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[    4.595793] [      T1] systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    4.597257] [      T1] systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
[    4.601055] [   T1282] fuse: init (API version 7.40)
[    4.602168] [      T1] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[    4.609221] [      T1] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[    4.609372] [      T1] systemd[1]: Mounted run-lock.mount - Legacy Locks Directory /run/lock.
[    4.609509] [      T1] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[    4.609845] [      T1] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[    4.613308] [      T1] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[    4.613607] [      T1] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[    4.614092] [      T1] systemd[1]: modprobe@drm.service: Deactivated successfully.
[    4.614344] [      T1] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[    4.614734] [      T1] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[    4.614974] [      T1] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[    4.615830] [      T1] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[    4.616013] [      T1] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[    4.616273] [      T1] systemd[1]: modprobe@nvme_fabrics.service: Deactivated successfully.
[    4.616426] [      T1] systemd[1]: Finished modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics.
[    4.616676] [      T1] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[    4.616893] [      T1] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[    4.617877] [      T1] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[    4.620124] [      T1] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[    4.620549] [      T1] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[    4.620650] [      T1] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[    4.626121] [      T1] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[    4.627631] [   T1284] systemd-journald[1284]: /etc/systemd/journald.conf:32: Failed to parse size value, ignoring: 
[    4.628358] [   T1284] systemd-journald[1284]: Collecting audit messages is disabled.
[    4.630136] [      T1] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[    4.634147] [      T1] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[    4.634188] [      T1] systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    4.635554] [      T1] systemd[1]: Finished systemd-udev-load-credentials.service - Load udev Rules from Credentials.
[    4.635743] [      T1] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[    4.635883] [      T1] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[    4.664060] [      T1] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
[    4.668433] [      T1] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[    4.668611] [      T1] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
[    4.670153] [      T1] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[    4.680059] [      T1] systemd[1]: Started systemd-journald.service - Journal Service.
[    4.721250] [   T1284] systemd-journald[1284]: Received client request to flush runtime journal.
[    4.860876] [   T1751] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    4.860952] [   T1751] scsi 1:0:0:0: Attached scsi generic sg1 type 5
[    5.028163] [   T2361] thermal LNXTHERM:00: registered as thermal_zone0
[    5.028170] [   T2361] ACPI: thermal: Thermal Zone [TZ00] (65 C)
[    5.028485] [   T2361] thermal LNXTHERM:01: registered as thermal_zone1
[    5.028489] [   T2361] ACPI: thermal: Thermal Zone [TZ01] (65 C)
[    5.053735] [   T2168] ACPI: bus type USB registered
[    5.053795] [   T2168] usbcore: registered new interface driver usbfs
[    5.053824] [   T2168] usbcore: registered new interface driver hub
[    5.053844] [   T2168] usbcore: registered new device driver usb
[    5.067353] [     T11] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    5.067371] [     T11] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    5.067390] [     T11] ehci-pci 0000:00:1a.0: debug port 2
[    5.072870] [     T53] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    5.073101] [     T11] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf1c0a000
[    5.073334] [     T53] i2c i2c-7: Successfully instantiated SPD at 0x50
[    5.089961] [     T11] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    5.090084] [     T11] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.11
[    5.090089] [     T11] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.090092] [     T11] usb usb1: Product: EHCI Host Controller
[    5.090095] [     T11] usb usb1: Manufacturer: Linux 6.11-pingu ehci_hcd
[    5.090097] [     T11] usb usb1: SerialNumber: 0000:00:1a.0
[    5.090295] [     T11] hub 1-0:1.0: USB hub found
[    5.090306] [     T11] hub 1-0:1.0: 2 ports detected
[    5.092257] [   T1752] xhci_hcd 0000:04:00.0: xHCI Host Controller
[    5.092272] [   T1752] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 2
[    5.092403] [   T1752] xhci_hcd 0000:04:00.0: hcc params 0x014042cb hci version 0x96 quirks 0x0000000000000084
[    5.092737] [   T1752] xhci_hcd 0000:04:00.0: xHCI Host Controller
[    5.092742] [   T1752] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 3
[    5.092746] [   T1752] xhci_hcd 0000:04:00.0: Host supports USB 3.0 SuperSpeed
[    5.093255] [     T40] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    5.093267] [     T40] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
[    5.093292] [     T40] ehci-pci 0000:00:1d.0: debug port 2
[    5.097221] [     T40] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf1c09000
[    5.102683] [   T1752] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.11
[    5.102691] [   T1752] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.102695] [   T1752] usb usb2: Product: xHCI Host Controller
[    5.102697] [   T1752] usb usb2: Manufacturer: Linux 6.11-pingu xhci-hcd
[    5.102700] [   T1752] usb usb2: SerialNumber: 0000:04:00.0
[    5.105202] [   T1752] hub 2-0:1.0: USB hub found
[    5.105217] [   T1752] hub 2-0:1.0: 2 ports detected
[    5.105351] [   T1752] usb usb3: We don't know the algorithms for LPM for this host, disabling LPM.
[    5.105378] [   T1752] usb usb3: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.11
[    5.105382] [   T1752] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.105385] [   T1752] usb usb3: Product: xHCI Host Controller
[    5.105387] [   T1752] usb usb3: Manufacturer: Linux 6.11-pingu xhci-hcd
[    5.105389] [   T1752] usb usb3: SerialNumber: 0000:04:00.0
[    5.106142] [   T1752] hub 3-0:1.0: USB hub found
[    5.106157] [   T1752] hub 3-0:1.0: 2 ports detected
[    5.116147] [   T1753] ACPI Warning: \_SB.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20240322/nsarguments-61)
[    5.116736] [   T1753] pci 0000:01:00.0: optimus capabilities: enabled, status dynamic power, hda bios codec supported
[    5.116744] [   T1753] VGA switcheroo: detected Optimus DSM method \_SB_.PCI0.PEG0.PEGP handle
[    5.116772] [   T1753] nouveau 0000:01:00.0: enabling device (0006 -> 0007)
[    5.116947] [   T1753] nouveau 0000:01:00.0: NVIDIA GF108 (0c1a80a1)
[    5.120906] [     T40] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    5.120965] [     T40] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.11
[    5.120970] [     T40] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.120973] [     T40] usb usb4: Product: EHCI Host Controller
[    5.120976] [     T40] usb usb4: Manufacturer: Linux 6.11-pingu ehci_hcd
[    5.120978] [     T40] usb usb4: SerialNumber: 0000:00:1d.0
[    5.125292] [     T40] hub 4-0:1.0: USB hub found
[    5.125400] [     T40] hub 4-0:1.0: 2 ports detected
[    5.127252] [   T1983] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.4)
[    5.135349] [   T1718] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda caddy
[    5.135357] [   T1718] cdrom: Uniform CD-ROM driver Revision: 3.20
[    5.145735] [   T1983] input: Dell WMI hotkeys as /devices/platform/PNP0C14:00/wmi_bus/wmi_bus-PNP0C14:00/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input9
[    5.168247] [   T1753] nouveau 0000:01:00.0: bios: version 70.08.53.00.07
[    5.180078] [   T2360] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    5.203157] [   T2163] snd_hda_intel 0000:00:1b.0: bound 0000:00:02.0 (ops 0xffffffffb70bb020)
[    5.203269] [   T2163] snd_hda_intel 0000:01:00.1: Disabling MSI
[    5.203277] [   T2163] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[    5.209340] [   T2360] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    5.209680] [   T2360] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[    5.210109] [    T691] platform regulatory.0: Requesting firmware: regulatory.db
[    5.211777] [   T2002] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[    5.211782] [   T2002] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[    5.211784] [   T2002] RAPL PMU: hw unit of domain package 2^-16 Joules
[    5.211786] [   T2002] RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
[    5.213101] [   T1718] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    5.215352] [    T691] platform regulatory.0: Requesting firmware: regulatory.db.p7s
[    5.219592] [   T2002] cryptd: max_cpu_qlen set to 1000
[    5.231560] [   T2360] Intel(R) Wireless WiFi driver for Linux
[    5.231810] [   T2360] iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
[    5.243843] [   T2360] iwlwifi 0000:03:00.0: Detected crf-id 0xa5a5a5a1, cnv-id 0xa5a5a5a1 wfpm id 0xa5a5a5a1
[    5.243907] [   T2360] iwlwifi 0000:03:00.0: PCI dev 0091/5221, rev=0xb0, rfid=0xd55555d5
[    5.243913] [   T2360] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Advanced-N 6230 AGN
[    5.250764] [     T48] iwlwifi 0000:03:00.0: Requesting firmware: iwlwifi-6000g2b-6.ucode
[    5.254515] [   T1194] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input10
[    5.254637] [   T1194] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11
[    5.254740] [   T1194] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input12
[    5.254840] [   T1194] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input13
[    5.263915] [   T2002] AES CTR mode by8 optimization enabled
[    5.303943] [     T48] iwlwifi 0000:03:00.0: loaded firmware version 18.168.6.1 6000g2b-6.ucode op_mode iwldvm
[    5.307629] [   T1749] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC269VB: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    5.307638] [   T1749] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    5.307642] [   T1749] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    5.307646] [   T1749] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    5.307648] [   T1749] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    5.307650] [   T1749] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x18
[    5.307653] [   T1749] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[    5.318723] [   T1753] nouveau 0000:01:00.0: fb: 1024 MiB DDR3
[    5.341788] [   T2742] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG disabled
[    5.341795] [   T2742] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
[    5.341798] [   T2742] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled
[    5.341800] [   T2742] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Advanced-N 6230 AGN, REV=0xB0
[    5.376920] [     T19] intel_rapl_common: Found RAPL domain package
[    5.376926] [     T19] intel_rapl_common: Found RAPL domain core
[    5.376928] [     T19] intel_rapl_common: Found RAPL domain uncore
[    5.381982] [      T8] usb 4-1: new high-speed USB device number 2 using ehci-pci
[    5.384688] [   T2673] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    5.385215] [   T1753] vga_switcheroo: enabled
[    5.385272] [   T1753] nouveau 0000:01:00.0: DRM: VRAM: 1024 MiB
[    5.385276] [   T1753] nouveau 0000:01:00.0: DRM: GART: 1048576 MiB
[    5.385281] [   T1753] nouveau 0000:01:00.0: DRM: TMDS table version 2.0
[    5.385729] [     T10] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[    5.385884] [     T10] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
[    5.390218] [   T1753] nouveau 0000:01:00.0: DRM: MM: using COPY0 for buffer copies
[    5.391339] [   T1753] [drm] Initialized nouveau 1.4.0 for 0000:01:00.0 on minor 1
[    5.391458] [   T1753] nouveau 0000:01:00.0: [drm] Cannot find any crtc or sizes
[    5.392619] [     T10] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input16
[    5.392738] [     T10] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input17
[    5.392759] [    T691] nouveau 0000:01:00.0: [drm] Cannot find any crtc or sizes
[    5.392770] [    T691] nouveau 0000:01:00.0: [drm] Cannot find any crtc or sizes
[    5.414068] [   T2742] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[    5.539504] [   T2673] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    5.539513] [   T2673] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    5.540646] [      T8] usb 4-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    5.540655] [      T8] usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    5.540991] [      T8] hub 4-1:1.0: USB hub found
[    5.541833] [      T8] hub 4-1:1.0: 8 ports detected
[    5.544285] [   T2673] hub 1-1:1.0: USB hub found
[    5.544426] [   T2673] hub 1-1:1.0: 6 ports detected
[    5.544940] [   T2824] Adding 538140k swap on /dev/sda6.  Priority:-2 extents:1 across:538140k SS
[    5.577945] [      C2] random: crng init done
[    5.837954] [     T10] usb 4-1.5: new full-speed USB device number 3 using ehci-pci
[    5.845954] [    T604] usb 1-1.4: new high-speed USB device number 3 using ehci-pci
[    5.950906] [     T10] usb 4-1.5: New USB device found, idVendor=8086, idProduct=0189, bcdDevice=69.19
[    5.950916] [     T10] usb 4-1.5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    5.974077] [   T2359] Bluetooth: Core ver 2.22
[    5.974117] [   T2359] NET: Registered PF_BLUETOOTH protocol family
[    5.974120] [   T2359] Bluetooth: HCI device and connection manager initialized
[    5.974126] [   T2359] Bluetooth: HCI socket layer initialized
[    5.974129] [   T2359] Bluetooth: L2CAP socket layer initialized
[    5.974135] [   T2359] Bluetooth: SCO socket layer initialized
[    5.981947] [   T2359] usbcore: registered new interface driver btusb
[    6.013640] [    T604] usb 1-1.4: New USB device found, idVendor=0c45, idProduct=642a, bcdDevice=13.03
[    6.013649] [    T604] usb 1-1.4: New USB device strings: Mfr=2, Product=1, SerialNumber=0
[    6.013652] [    T604] usb 1-1.4: Product: Laptop_Integrated_Webcam_2HDM
[    6.013655] [    T604] usb 1-1.4: Manufacturer: CN0XRCWG7248717CS49ZA00
[    6.026746] [   T2161] mc: Linux media interface: v0.10
[    6.036847] [   T2161] videodev: Linux video capture interface: v2.00
[    6.048333] [   T2161] usb 1-1.4: Found UVC 1.00 device Laptop_Integrated_Webcam_2HDM (0c45:642a)
[    6.089848] [   T2161] usbcore: registered new interface driver uvcvideo
[    6.112670] [   T2917] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[    6.415927] [   T2917] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[    6.553755] [   T2917] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[    6.865310] [   T2917] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[   10.189000] [   T2917] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[   10.492711] [   T2917] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[   10.628378] [   T2919] wlan0: authenticate with 6c:19:8f:cc:87:1c (local address=88:53:2e:22:b4:a6)
[   10.628399] [   T2919] wlan0: send auth to 6c:19:8f:cc:87:1c (try 1/3)
[   10.630825] [     T53] wlan0: authenticated
[   10.633970] [     T53] wlan0: associate with 6c:19:8f:cc:87:1c (try 1/3)
[   10.638189] [     T53] wlan0: RX AssocResp from 6c:19:8f:cc:87:1c (capab=0x431 status=0 aid=1)
[   10.668872] [     T53] wlan0: associated
[   10.870476] [   T3180] warning: `eeeweather' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[   11.192911] [      C1] i8042: [2009] 40 <- i8042 (interrupt, 1, 12)
[   11.194887] [      C1] i8042: [2010] 21 <- i8042 (interrupt, 1, 12)
[   11.196569] [      C1] i8042: [2010] b9 <- i8042 (interrupt, 1, 12)
[   11.198403] [      C1] i8042: [2011] 7c <- i8042 (interrupt, 1, 12)
[   11.200254] [      C1] i8042: [2011] 0d <- i8042 (interrupt, 1, 12)
[   11.205028] [      C1] i8042: [2012] 40 <- i8042 (interrupt, 1, 12)
[   11.206867] [      C1] i8042: [2013] 21 <- i8042 (interrupt, 1, 12)
[   11.208692] [      C1] i8042: [2013] b2 <- i8042 (interrupt, 1, 12)
[   11.210531] [      C1] i8042: [2014] 75 <- i8042 (interrupt, 1, 12)
[   11.212369] [      C1] i8042: [2014] 2d <- i8042 (interrupt, 1, 12)
[   11.217332] [      C1] i8042: [2015] 40 <- i8042 (interrupt, 1, 12)
[   11.219049] [      C1] i8042: [2016] 21 <- i8042 (interrupt, 1, 12)
[   11.220854] [      C1] i8042: [2016] a8 <- i8042 (interrupt, 1, 12)
[   11.222712] [      C1] i8042: [2017] 6e <- i8042 (interrupt, 1, 12)
[   11.224861] [      C1] i8042: [2017] 53 <- i8042 (interrupt, 1, 12)
[   11.230193] [      C1] i8042: [2019] 40 <- i8042 (interrupt, 1, 12)
[   11.231208] [      C1] i8042: [2019] 21 <- i8042 (interrupt, 1, 12)
[   11.233006] [      C1] i8042: [2019] 96 <- i8042 (interrupt, 1, 12)
[   11.234898] [      C1] i8042: [2020] 65 <- i8042 (interrupt, 1, 12)
[   11.236682] [      C1] i8042: [2020] 6f <- i8042 (interrupt, 1, 12)
[   11.241484] [      C1] i8042: [2021] 40 <- i8042 (interrupt, 1, 12)
[   11.243407] [      C1] i8042: [2022] 21 <- i8042 (interrupt, 1, 12)
[   11.245176] [      C1] i8042: [2022] 7f <- i8042 (interrupt, 1, 12)
[   11.246991] [      C1] i8042: [2023] 5e <- i8042 (interrupt, 1, 12)
[   11.248817] [      C1] i8042: [2023] 84 <- i8042 (interrupt, 1, 12)
[   11.253595] [      C1] i8042: [2024] 40 <- i8042 (interrupt, 1, 12)
[   11.255493] [      C1] i8042: [2025] 21 <- i8042 (interrupt, 1, 12)
[   11.257434] [      C1] i8042: [2025] 68 <- i8042 (interrupt, 1, 12)
[   11.259154] [      C1] i8042: [2026] 58 <- i8042 (interrupt, 1, 12)
[   11.260968] [      C1] i8042: [2026] 91 <- i8042 (interrupt, 1, 12)
[   11.265792] [      C1] i8042: [2027] 40 <- i8042 (interrupt, 1, 12)
[   11.267620] [      C1] i8042: [2028] 21 <- i8042 (interrupt, 1, 12)
[   11.271077] [      C1] i8042: [2029] 4a <- i8042 (interrupt, 1, 12)
[   11.272489] [      C1] i8042: [2029] 54 <- i8042 (interrupt, 1, 12)
[   11.274258] [      C1] i8042: [2030] 97 <- i8042 (interrupt, 1, 12)
[   11.278016] [      C1] i8042: [2031] 40 <- i8042 (interrupt, 1, 12)
[   11.279814] [      C1] i8042: [2031] 21 <- i8042 (interrupt, 1, 12)
[   11.281678] [      C1] i8042: [2031] 2d <- i8042 (interrupt, 1, 12)
[   11.283518] [      C1] i8042: [2032] 54 <- i8042 (interrupt, 1, 12)
[   11.286017] [      C1] i8042: [2033] 99 <- i8042 (interrupt, 1, 12)
[   11.290067] [      C1] i8042: [2034] 40 <- i8042 (interrupt, 1, 12)
[   11.291968] [      C1] i8042: [2034] 21 <- i8042 (interrupt, 1, 12)
[   11.293811] [      C1] i8042: [2034] 09 <- i8042 (interrupt, 1, 12)
[   11.295645] [      C1] i8042: [2035] 54 <- i8042 (interrupt, 1, 12)
[   11.297561] [      C1] i8042: [2035] 95 <- i8042 (interrupt, 1, 12)
[   11.302293] [      C1] i8042: [2037] 40 <- i8042 (interrupt, 1, 12)
[   11.304110] [      C1] i8042: [2037] 11 <- i8042 (interrupt, 1, 12)
[   11.306003] [      C1] i8042: [2038] e9 <- i8042 (interrupt, 1, 12)
[   11.307793] [      C1] i8042: [2038] 5b <- i8042 (interrupt, 1, 12)
[   11.309691] [      C1] i8042: [2038] 99 <- i8042 (interrupt, 1, 12)
[   11.314438] [      C1] i8042: [2040] 40 <- i8042 (interrupt, 1, 12)
[   11.316293] [      C1] i8042: [2040] 11 <- i8042 (interrupt, 1, 12)
[   11.318050] [      C1] i8042: [2041] c6 <- i8042 (interrupt, 1, 12)
[   11.319977] [      C1] i8042: [2041] 64 <- i8042 (interrupt, 1, 12)
[   11.322021] [      C1] i8042: [2042] 97 <- i8042 (interrupt, 1, 12)
[   11.327161] [      C1] i8042: [2043] 40 <- i8042 (interrupt, 1, 12)
[   11.328496] [      C1] i8042: [2043] 11 <- i8042 (interrupt, 1, 12)
[   11.330255] [      C1] i8042: [2044] a6 <- i8042 (interrupt, 1, 12)
[   11.332502] [      C1] i8042: [2044] 6f <- i8042 (interrupt, 1, 12)
[   11.334019] [      C1] i8042: [2045] 96 <- i8042 (interrupt, 1, 12)
[   11.338810] [      C1] i8042: [2046] 40 <- i8042 (interrupt, 1, 12)
[   11.340689] [      C1] i8042: [2046] 11 <- i8042 (interrupt, 1, 12)
[   11.342525] [      C1] i8042: [2047] 8d <- i8042 (interrupt, 1, 12)
[   11.344353] [      C1] i8042: [2047] 7d <- i8042 (interrupt, 1, 12)
[   11.346098] [      C1] i8042: [2048] 94 <- i8042 (interrupt, 1, 12)
[   11.350925] [      C1] i8042: [2049] 40 <- i8042 (interrupt, 1, 12)
[   11.352758] [      C1] i8042: [2049] 11 <- i8042 (interrupt, 1, 12)
[   11.354681] [      C1] i8042: [2050] 77 <- i8042 (interrupt, 1, 12)
[   11.357196] [      C1] i8042: [2050] 8a <- i8042 (interrupt, 1, 12)
[   11.358310] [      C1] i8042: [2051] 93 <- i8042 (interrupt, 1, 12)
[   11.363080] [      C1] i8042: [2052] 40 <- i8042 (interrupt, 1, 12)
[   11.364915] [      C1] i8042: [2052] 11 <- i8042 (interrupt, 1, 12)
[   11.367218] [      C1] i8042: [2053] 66 <- i8042 (interrupt, 1, 12)
[   11.368713] [      C1] i8042: [2053] 98 <- i8042 (interrupt, 1, 12)
[   11.370456] [      C1] i8042: [2054] 96 <- i8042 (interrupt, 1, 12)
[   11.375291] [      C1] i8042: [2055] 40 <- i8042 (interrupt, 1, 12)
[   11.377100] [      C1] i8042: [2055] 11 <- i8042 (interrupt, 1, 12)
[   11.378949] [      C1] i8042: [2056] 5c <- i8042 (interrupt, 1, 12)
[   11.380818] [      C1] i8042: [2056] a7 <- i8042 (interrupt, 1, 12)
[   11.383663] [      C1] i8042: [2057] 98 <- i8042 (interrupt, 1, 12)
[   11.387446] [      C1] i8042: [2058] 40 <- i8042 (interrupt, 1, 12)
[   11.389252] [      C1] i8042: [2058] 11 <- i8042 (interrupt, 1, 12)
[   11.391105] [      C1] i8042: [2059] 58 <- i8042 (interrupt, 1, 12)
[   11.393479] [      C1] i8042: [2059] b5 <- i8042 (interrupt, 1, 12)
[   11.394859] [      C1] i8042: [2060] 9c <- i8042 (interrupt, 1, 12)
[   11.399635] [      C1] i8042: [2061] 40 <- i8042 (interrupt, 1, 12)
[   11.401458] [      C1] i8042: [2061] 11 <- i8042 (interrupt, 1, 12)
[   11.403284] [      C1] i8042: [2062] 58 <- i8042 (interrupt, 1, 12)
[   11.405130] [      C1] i8042: [2062] c2 <- i8042 (interrupt, 1, 12)
[   11.406966] [      C1] i8042: [2063] 9e <- i8042 (interrupt, 1, 12)
[   11.411823] [      C1] i8042: [2064] 40 <- i8042 (interrupt, 1, 12)
[   11.413671] [      C1] i8042: [2064] 11 <- i8042 (interrupt, 1, 12)
[   11.415446] [      C1] i8042: [2065] 5e <- i8042 (interrupt, 1, 12)
[   11.417272] [      C1] i8042: [2065] ce <- i8042 (interrupt, 1, 12)
[   11.419107] [      C1] i8042: [2066] a0 <- i8042 (interrupt, 1, 12)
[   11.423934] [      C1] i8042: [2067] 40 <- i8042 (interrupt, 1, 12)
[   11.425862] [      C1] i8042: [2067] 11 <- i8042 (interrupt, 1, 12)
[   11.427605] [      C1] i8042: [2068] 69 <- i8042 (interrupt, 1, 12)
[   11.429422] [      C1] i8042: [2068] dc <- i8042 (interrupt, 1, 12)
[   11.431265] [      C1] i8042: [2069] 9e <- i8042 (interrupt, 1, 12)
[   11.436064] [      C1] i8042: [2070] 40 <- i8042 (interrupt, 1, 12)
[   11.438453] [      C1] i8042: [2071] 11 <- i8042 (interrupt, 1, 12)
[   11.439787] [      C1] i8042: [2071] 79 <- i8042 (interrupt, 1, 12)
[   11.441620] [      C1] i8042: [2071] e6 <- i8042 (interrupt, 1, 12)
[   11.443726] [      C1] i8042: [2072] 9a <- i8042 (interrupt, 1, 12)
[   11.448481] [      C1] i8042: [2073] 40 <- i8042 (interrupt, 1, 12)
[   11.450187] [      C1] i8042: [2074] 11 <- i8042 (interrupt, 1, 12)
[   11.452060] [      C1] i8042: [2074] 8e <- i8042 (interrupt, 1, 12)
[   11.453988] [      C1] i8042: [2075] f2 <- i8042 (interrupt, 1, 12)
[   11.455829] [      C1] i8042: [2075] 94 <- i8042 (interrupt, 1, 12)
[   11.460688] [      C1] i8042: [2076] 40 <- i8042 (interrupt, 1, 12)
[   11.462509] [      C1] i8042: [2077] 11 <- i8042 (interrupt, 1, 12)
[   11.464354] [      C1] i8042: [2077] a3 <- i8042 (interrupt, 1, 12)
[   11.466158] [      C1] i8042: [2078] f8 <- i8042 (interrupt, 1, 12)
[   11.468527] [      C1] i8042: [2078] 93 <- i8042 (interrupt, 1, 12)
[   11.476385] [      C1] i8042: [2080] 40 <- i8042 (interrupt, 1, 12)
[   11.478303] [      C1] i8042: [2081] 11 <- i8042 (interrupt, 1, 12)
[   11.480515] [      C1] i8042: [2081] bd <- i8042 (interrupt, 1, 12)
[   11.481437] [      C1] i8042: [2081] fc <- i8042 (interrupt, 1, 12)
[   11.482248] [      C1] i8042: [2082] 8e <- i8042 (interrupt, 1, 12)
[   11.485899] [      C1] i8042: [2082] 40 <- i8042 (interrupt, 1, 12)
[   11.487722] [      C1] i8042: [2083] 11 <- i8042 (interrupt, 1, 12)
[   11.489547] [      C1] i8042: [2083] de <- i8042 (interrupt, 1, 12)
[   11.491394] [      C1] i8042: [2084] ff <- i8042 (interrupt, 1, 12)
[   11.493224] [      C1] i8042: [2084] 8d <- i8042 (interrupt, 1, 12)
[   11.498179] [      C1] i8042: [2086] 40 <- i8042 (interrupt, 1, 12)
[   11.500619] [      C1] i8042: [2086] 11 <- i8042 (interrupt, 1, 12)
[   11.501851] [      C1] i8042: [2086] fc <- i8042 (interrupt, 1, 12)
[   11.503677] [      C1] i8042: [2087] fe <- i8042 (interrupt, 1, 12)
[   11.505641] [      C1] i8042: [2087] 8a <- i8042 (interrupt, 1, 12)
[   11.510691] [      C1] i8042: [2089] 40 <- i8042 (interrupt, 1, 12)
[   11.512287] [      C1] i8042: [2089] 21 <- i8042 (interrupt, 1, 12)
[   11.514142] [      C1] i8042: [2090] 24 <- i8042 (interrupt, 1, 12)
[   11.516050] [      C1] i8042: [2090] f9 <- i8042 (interrupt, 1, 12)
[   11.517834] [      C1] i8042: [2090] 88 <- i8042 (interrupt, 1, 12)
[   11.522639] [      C1] i8042: [2092] 40 <- i8042 (interrupt, 1, 12)
[   11.524463] [      C1] i8042: [2092] 21 <- i8042 (interrupt, 1, 12)
[   11.526255] [      C1] i8042: [2093] 47 <- i8042 (interrupt, 1, 12)
[   11.528263] [      C1] i8042: [2093] ec <- i8042 (interrupt, 1, 12)
[   11.530022] [      C1] i8042: [2094] 81 <- i8042 (interrupt, 1, 12)
[   11.534823] [      C1] i8042: [2095] 40 <- i8042 (interrupt, 1, 12)
[   11.536652] [      C1] i8042: [2095] 21 <- i8042 (interrupt, 1, 12)
[   11.538483] [      C1] i8042: [2096] 6e <- i8042 (interrupt, 1, 12)
[   11.540753] [      C1] i8042: [2096] e1 <- i8042 (interrupt, 1, 12)
[   11.542212] [      C1] i8042: [2097] 83 <- i8042 (interrupt, 1, 12)
[   11.546996] [      C1] i8042: [2098] 40 <- i8042 (interrupt, 1, 12)
[   11.548821] [      C1] i8042: [2098] 21 <- i8042 (interrupt, 1, 12)
[   11.550790] [      C1] i8042: [2099] 8c <- i8042 (interrupt, 1, 12)
[   11.552476] [      C1] i8042: [2099] d7 <- i8042 (interrupt, 1, 12)
[   11.554360] [      C1] i8042: [2100] 89 <- i8042 (interrupt, 1, 12)
[   11.559170] [      C1] i8042: [2101] 40 <- i8042 (interrupt, 1, 12)
[   11.561013] [      C1] i8042: [2101] 21 <- i8042 (interrupt, 1, 12)
[   11.562834] [      C1] i8042: [2102] aa <- i8042 (interrupt, 1, 12)
[   11.564692] [      C1] i8042: [2102] ca <- i8042 (interrupt, 1, 12)
[   11.566645] [      C1] i8042: [2103] 8c <- i8042 (interrupt, 1, 12)
[   11.571387] [      C1] i8042: [2104] 40 <- i8042 (interrupt, 1, 12)
[   11.573205] [      C1] i8042: [2104] 21 <- i8042 (interrupt, 1, 12)
[   11.575064] [      C1] i8042: [2105] c2 <- i8042 (interrupt, 1, 12)
[   11.578797] [      C1] i8042: [2106] ba <- i8042 (interrupt, 1, 12)
[   11.579883] [      C1] i8042: [2106] 91 <- i8042 (interrupt, 1, 12)
[   11.583559] [      C1] i8042: [2107] 40 <- i8042 (interrupt, 1, 12)
[   11.585407] [      C1] i8042: [2107] 21 <- i8042 (interrupt, 1, 12)
[   11.588233] [      C1] i8042: [2108] d4 <- i8042 (interrupt, 1, 12)
[   11.589122] [      C1] i8042: [2108] ab <- i8042 (interrupt, 1, 12)
[   11.590934] [      C1] i8042: [2109] 98 <- i8042 (interrupt, 1, 12)
[   11.595731] [      C1] i8042: [2110] 40 <- i8042 (interrupt, 1, 12)
[   11.598002] [      C1] i8042: [2111] 21 <- i8042 (interrupt, 1, 12)
[   11.599452] [      C1] i8042: [2111] e2 <- i8042 (interrupt, 1, 12)
[   11.601298] [      C1] i8042: [2111] 9c <- i8042 (interrupt, 1, 12)
[   11.603132] [      C1] i8042: [2112] 9e <- i8042 (interrupt, 1, 12)
[   11.607939] [      C1] i8042: [2113] 40 <- i8042 (interrupt, 1, 12)
[   11.609753] [      C1] i8042: [2113] 21 <- i8042 (interrupt, 1, 12)
[   11.611601] [      C1] i8042: [2114] ee <- i8042 (interrupt, 1, 12)
[   11.613508] [      C1] i8042: [2114] 8a <- i8042 (interrupt, 1, 12)
[   11.615327] [      C1] i8042: [2115] 9f <- i8042 (interrupt, 1, 12)
[   11.620113] [      C1] i8042: [2116] 40 <- i8042 (interrupt, 1, 12)
[   11.621938] [      C1] i8042: [2116] 21 <- i8042 (interrupt, 1, 12)
[   11.623784] [      C1] i8042: [2117] f5 <- i8042 (interrupt, 1, 12)
[   11.625622] [      C1] i8042: [2117] 76 <- i8042 (interrupt, 1, 12)
[   11.627768] [      C1] i8042: [2118] a4 <- i8042 (interrupt, 1, 12)
[   11.632264] [      C1] i8042: [2119] 40 <- i8042 (interrupt, 1, 12)
[   11.634177] [      C1] i8042: [2120] 21 <- i8042 (interrupt, 1, 12)
[   11.635962] [      C1] i8042: [2120] f7 <- i8042 (interrupt, 1, 12)
[   11.637866] [      C1] i8042: [2120] 65 <- i8042 (interrupt, 1, 12)
[   11.639708] [      C1] i8042: [2121] a5 <- i8042 (interrupt, 1, 12)
[   11.644570] [      C1] i8042: [2122] 40 <- i8042 (interrupt, 1, 12)
[   11.646278] [      C1] i8042: [2123] 21 <- i8042 (interrupt, 1, 12)
[   11.648134] [      C1] i8042: [2123] f7 <- i8042 (interrupt, 1, 12)
[   11.649969] [      C1] i8042: [2124] 53 <- i8042 (interrupt, 1, 12)
[   11.651796] [      C1] i8042: [2124] aa <- i8042 (interrupt, 1, 12)
[   11.656586] [      C1] i8042: [2125] 40 <- i8042 (interrupt, 1, 12)
[   11.658771] [      C1] i8042: [2126] 21 <- i8042 (interrupt, 1, 12)
[   11.660270] [      C1] i8042: [2126] f2 <- i8042 (interrupt, 1, 12)
[   11.662053] [      C1] i8042: [2127] 44 <- i8042 (interrupt, 1, 12)
[   11.664098] [      C1] i8042: [2127] b1 <- i8042 (interrupt, 1, 12)
[   11.669033] [      C1] i8042: [2128] 40 <- i8042 (interrupt, 1, 12)
[   11.670601] [      C1] i8042: [2129] 21 <- i8042 (interrupt, 1, 12)
[   11.672447] [      C1] i8042: [2129] e9 <- i8042 (interrupt, 1, 12)
[   11.674376] [      C1] i8042: [2130] 31 <- i8042 (interrupt, 1, 12)
[   11.676122] [      C1] i8042: [2130] b1 <- i8042 (interrupt, 1, 12)
[   11.680937] [      C1] i8042: [2131] 40 <- i8042 (interrupt, 1, 12)
[   11.682775] [      C1] i8042: [2132] 21 <- i8042 (interrupt, 1, 12)
[   11.684656] [      C1] i8042: [2132] db <- i8042 (interrupt, 1, 12)
[   11.686478] [      C1] i8042: [2133] 21 <- i8042 (interrupt, 1, 12)
[   11.688336] [      C1] i8042: [2133] b3 <- i8042 (interrupt, 1, 12)
[   11.693140] [      C1] i8042: [2134] 40 <- i8042 (interrupt, 1, 12)
[   11.694978] [      C1] i8042: [2135] 21 <- i8042 (interrupt, 1, 12)
[   11.696825] [      C1] i8042: [2135] cb <- i8042 (interrupt, 1, 12)
[   11.699332] [      C1] i8042: [2136] 0e <- i8042 (interrupt, 1, 12)
[   11.700514] [      C1] i8042: [2136] b5 <- i8042 (interrupt, 1, 12)
[   11.705357] [      C1] i8042: [2137] 40 <- i8042 (interrupt, 1, 12)
[   11.707180] [      C1] i8042: [2138] 21 <- i8042 (interrupt, 1, 12)
[   11.709095] [      C1] i8042: [2138] bd <- i8042 (interrupt, 1, 12)
[   11.710867] [      C1] i8042: [2139] 02 <- i8042 (interrupt, 1, 12)
[   11.712775] [      C1] i8042: [2139] b7 <- i8042 (interrupt, 1, 12)
[   11.717549] [      C1] i8042: [2140] 40 <- i8042 (interrupt, 1, 12)
[   11.719385] [      C1] i8042: [2141] 20 <- i8042 (interrupt, 1, 12)
[   11.721214] [      C1] i8042: [2141] ab <- i8042 (interrupt, 1, 12)
[   11.723056] [      C1] i8042: [2142] f4 <- i8042 (interrupt, 1, 12)
[   11.724900] [      C1] i8042: [2142] b3 <- i8042 (interrupt, 1, 12)
[   11.729736] [      C1] i8042: [2143] 40 <- i8042 (interrupt, 1, 12)
[   11.731578] [      C1] i8042: [2144] 20 <- i8042 (interrupt, 1, 12)
[   11.733414] [      C1] i8042: [2144] 95 <- i8042 (interrupt, 1, 12)
[   11.735243] [      C1] i8042: [2145] e7 <- i8042 (interrupt, 1, 12)
[   11.737080] [      C1] i8042: [2145] b5 <- i8042 (interrupt, 1, 12)
[   11.741903] [      C1] i8042: [2146] 40 <- i8042 (interrupt, 1, 12)
[   11.744279] [      C1] i8042: [2147] 20 <- i8042 (interrupt, 1, 12)
[   11.745614] [      C1] i8042: [2147] 7e <- i8042 (interrupt, 1, 12)
[   11.747469] [      C1] i8042: [2148] dd <- i8042 (interrupt, 1, 12)
[   11.749382] [      C1] i8042: [2148] bb <- i8042 (interrupt, 1, 12)
[   11.754256] [      C1] i8042: [2150] 40 <- i8042 (interrupt, 1, 12)
[   11.755953] [      C1] i8042: [2150] 20 <- i8042 (interrupt, 1, 12)
[   11.757799] [      C1] i8042: [2150] 6b <- i8042 (interrupt, 1, 12)
[   11.759803] [      C1] i8042: [2151] d7 <- i8042 (interrupt, 1, 12)
[   11.761511] [      C1] i8042: [2151] bf <- i8042 (interrupt, 1, 12)
[   11.766312] [      C1] i8042: [2153] 40 <- i8042 (interrupt, 1, 12)
[   11.768161] [      C1] i8042: [2153] 20 <- i8042 (interrupt, 1, 12)
[   11.769987] [      C1] i8042: [2154] 55 <- i8042 (interrupt, 1, 12)
[   11.771917] [      C1] i8042: [2154] d0 <- i8042 (interrupt, 1, 12)
[   11.774355] [      C1] i8042: [2155] c2 <- i8042 (interrupt, 1, 12)
[   11.778564] [      C1] i8042: [2156] 40 <- i8042 (interrupt, 1, 12)
[   11.781034] [      C1] i8042: [2156] 20 <- i8042 (interrupt, 1, 12)
[   11.782185] [      C1] i8042: [2157] 43 <- i8042 (interrupt, 1, 12)
[   11.784080] [      C1] i8042: [2157] cd <- i8042 (interrupt, 1, 12)
[   11.785985] [      C1] i8042: [2158] c7 <- i8042 (interrupt, 1, 12)
[   11.790841] [      C1] i8042: [2159] 40 <- i8042 (interrupt, 1, 12)
[   11.792610] [      C1] i8042: [2159] 20 <- i8042 (interrupt, 1, 12)
[   11.794435] [      C1] i8042: [2160] 34 <- i8042 (interrupt, 1, 12)
[   11.796278] [      C1] i8042: [2160] cb <- i8042 (interrupt, 1, 12)
[   11.798075] [      C1] i8042: [2161] cd <- i8042 (interrupt, 1, 12)
[   11.802946] [      C1] i8042: [2162] 40 <- i8042 (interrupt, 1, 12)
[   11.805461] [      C1] i8042: [2162] 20 <- i8042 (interrupt, 1, 12)
[   11.806630] [      C1] i8042: [2163] 2a <- i8042 (interrupt, 1, 12)
[   11.808450] [      C1] i8042: [2163] cb <- i8042 (interrupt, 1, 12)
[   11.810360] [      C1] i8042: [2164] d1 <- i8042 (interrupt, 1, 12)
[   11.815484] [      C1] i8042: [2165] 40 <- i8042 (interrupt, 1, 12)
[   11.816994] [      C1] i8042: [2165] 20 <- i8042 (interrupt, 1, 12)
[   11.818833] [      C1] i8042: [2166] 25 <- i8042 (interrupt, 1, 12)
[   11.821091] [      C1] i8042: [2166] cb <- i8042 (interrupt, 1, 12)
[   11.822495] [      C1] i8042: [2167] d3 <- i8042 (interrupt, 1, 12)
[   11.827336] [      C1] i8042: [2168] 40 <- i8042 (interrupt, 1, 12)
[   11.829180] [      C1] i8042: [2168] 20 <- i8042 (interrupt, 1, 12)
[   11.831045] [      C1] i8042: [2169] 20 <- i8042 (interrupt, 1, 12)
[   11.832897] [      C1] i8042: [2169] cf <- i8042 (interrupt, 1, 12)
[   11.834714] [      C1] i8042: [2170] d2 <- i8042 (interrupt, 1, 12)
[   11.839547] [      C1] i8042: [2171] 40 <- i8042 (interrupt, 1, 12)
[   11.841389] [      C1] i8042: [2171] 20 <- i8042 (interrupt, 1, 12)
[   11.843225] [      C1] i8042: [2172] 1c <- i8042 (interrupt, 1, 12)
[   11.845598] [      C1] i8042: [2172] d5 <- i8042 (interrupt, 1, 12)
[   11.846928] [      C1] i8042: [2173] cd <- i8042 (interrupt, 1, 12)
[   11.851669] [      C1] i8042: [2174] 40 <- i8042 (interrupt, 1, 12)
[   11.853517] [      C1] i8042: [2174] 20 <- i8042 (interrupt, 1, 12)
[   11.855593] [      C1] i8042: [2175] 1a <- i8042 (interrupt, 1, 12)
[   11.857182] [      C1] i8042: [2175] de <- i8042 (interrupt, 1, 12)
[   11.859124] [      C1] i8042: [2176] c5 <- i8042 (interrupt, 1, 12)
[   11.863888] [      C1] i8042: [2177] 40 <- i8042 (interrupt, 1, 12)
[   11.865825] [      C1] i8042: [2177] 20 <- i8042 (interrupt, 1, 12)
[   11.867575] [      C1] i8042: [2178] 1a <- i8042 (interrupt, 1, 12)
[   11.869428] [      C1] i8042: [2178] e8 <- i8042 (interrupt, 1, 12)
[   11.871254] [      C1] i8042: [2179] b5 <- i8042 (interrupt, 1, 12)
[   11.876199] [      C1] i8042: [2180] 40 <- i8042 (interrupt, 1, 12)
[   11.877909] [      C1] i8042: [2180] 20 <- i8042 (interrupt, 1, 12)
[   11.879754] [      C1] i8042: [2181] 1b <- i8042 (interrupt, 1, 12)
[   11.883239] [      C1] i8042: [2182] f4 <- i8042 (interrupt, 1, 12)
[   11.884606] [      C1] i8042: [2182] 91 <- i8042 (interrupt, 1, 12)
[   11.888284] [      C1] i8042: [2183] 40 <- i8042 (interrupt, 1, 12)
[   11.890125] [      C1] i8042: [2184] 20 <- i8042 (interrupt, 1, 12)
[   11.891946] [      C1] i8042: [2184] 1f <- i8042 (interrupt, 1, 12)
[   11.893805] [      C1] i8042: [2184] fe <- i8042 (interrupt, 1, 12)
[   11.895631] [      C1] i8042: [2185] 5a <- i8042 (interrupt, 1, 12)
[   11.900372] [      C1] i8042: [2186] 40 <- i8042 (interrupt, 1, 12)
[   11.902877] [      C1] i8042: [2187] 20 <- i8042 (interrupt, 1, 12)
[   11.904121] [      C1] i8042: [2187] 1d <- i8042 (interrupt, 1, 12)
[   11.905919] [      C1] i8042: [2187] fe <- i8042 (interrupt, 1, 12)
[   11.907810] [      C1] i8042: [2188] 2e <- i8042 (interrupt, 1, 12)
[   11.911305] [      C1] i8042: [2189] 00 <- i8042 (interrupt, 1, 12)
[   11.921332] [      C1] i8042: [2191] 00 <- i8042 (interrupt, 1, 12)
[   11.931344] [      C1] i8042: [2194] 00 <- i8042 (interrupt, 1, 12)
[   11.941367] [      C1] i8042: [2196] 00 <- i8042 (interrupt, 1, 12)
[   11.951878] [      C1] i8042: [2199] 00 <- i8042 (interrupt, 1, 12)
[   11.962608] [      C1] i8042: [2202] 00 <- i8042 (interrupt, 1, 12)
[   11.973227] [      C1] i8042: [2204] 00 <- i8042 (interrupt, 1, 12)
[   11.986490] [      C1] i8042: [2208] 00 <- i8042 (interrupt, 1, 12)
[   11.994540] [      C1] i8042: [2210] 00 <- i8042 (interrupt, 1, 12)
[   12.005210] [      C1] i8042: [2212] 00 <- i8042 (interrupt, 1, 12)
[   12.015850] [      C1] i8042: [2215] 00 <- i8042 (interrupt, 1, 12)
[   12.026563] [      C1] i8042: [2218] 00 <- i8042 (interrupt, 1, 12)
[   12.037059] [      C1] i8042: [2220] 00 <- i8042 (interrupt, 1, 12)
[   12.048192] [      C1] i8042: [2223] 40 <- i8042 (interrupt, 1, 12)
[   12.049978] [      C1] i8042: [2224] 31 <- i8042 (interrupt, 1, 12)
[   12.051815] [      C1] i8042: [2224] 1e <- i8042 (interrupt, 1, 12)
[   12.053661] [      C1] i8042: [2224] ae <- i8042 (interrupt, 1, 12)
[   12.056226] [      C1] i8042: [2225] 0d <- i8042 (interrupt, 1, 12)
[   12.060342] [      C1] i8042: [2226] 40 <- i8042 (interrupt, 1, 12)
[   12.062134] [      C1] i8042: [2227] 31 <- i8042 (interrupt, 1, 12)
[   12.063964] [      C1] i8042: [2227] 20 <- i8042 (interrupt, 1, 12)
[   12.065851] [      C1] i8042: [2227] a8 <- i8042 (interrupt, 1, 12)
[   12.067696] [      C1] i8042: [2228] 29 <- i8042 (interrupt, 1, 12)
[   12.072515] [      C1] i8042: [2229] 40 <- i8042 (interrupt, 1, 12)
[   12.074337] [      C1] i8042: [2230] 31 <- i8042 (interrupt, 1, 12)
[   12.076941] [      C1] i8042: [2230] 20 <- i8042 (interrupt, 1, 12)
[   12.077973] [      C1] i8042: [2231] 9c <- i8042 (interrupt, 1, 12)
[   12.079848] [      C1] i8042: [2231] 49 <- i8042 (interrupt, 1, 12)
[   12.084706] [      C1] i8042: [2232] 40 <- i8042 (interrupt, 1, 12)
[   12.086519] [      C1] i8042: [2233] 31 <- i8042 (interrupt, 1, 12)
[   12.088342] [      C1] i8042: [2233] 1a <- i8042 (interrupt, 1, 12)
[   12.090111] [      C1] i8042: [2234] 8b <- i8042 (interrupt, 1, 12)
[   12.092006] [      C1] i8042: [2234] 62 <- i8042 (interrupt, 1, 12)
[   12.096822] [      C1] i8042: [2235] 40 <- i8042 (interrupt, 1, 12)
[   12.098743] [      C1] i8042: [2236] 31 <- i8042 (interrupt, 1, 12)
[   12.100488] [      C1] i8042: [2236] 0e <- i8042 (interrupt, 1, 12)
[   12.102360] [      C1] i8042: [2237] 77 <- i8042 (interrupt, 1, 12)
[   12.104175] [      C1] i8042: [2237] 7a <- i8042 (interrupt, 1, 12)
[   12.108995] [      C1] i8042: [2238] 40 <- i8042 (interrupt, 1, 12)
[   12.111265] [      C1] i8042: [2239] 21 <- i8042 (interrupt, 1, 12)
[   12.112776] [      C1] i8042: [2239] fc <- i8042 (interrupt, 1, 12)
[   12.114521] [      C1] i8042: [2240] 61 <- i8042 (interrupt, 1, 12)
[   12.116386] [      C1] i8042: [2240] 86 <- i8042 (interrupt, 1, 12)
[   12.121350] [      C1] i8042: [2241] 40 <- i8042 (interrupt, 1, 12)
[   12.123044] [      C1] i8042: [2242] 21 <- i8042 (interrupt, 1, 12)
[   12.124915] [      C1] i8042: [2242] de <- i8042 (interrupt, 1, 12)
[   12.126832] [      C1] i8042: [2243] 4c <- i8042 (interrupt, 1, 12)
[   12.128588] [      C1] i8042: [2243] 8f <- i8042 (interrupt, 1, 12)
[   12.133406] [      C1] i8042: [2244] 40 <- i8042 (interrupt, 1, 12)
[   12.135219] [      C1] i8042: [2245] 21 <- i8042 (interrupt, 1, 12)
[   12.137090] [      C1] i8042: [2245] bb <- i8042 (interrupt, 1, 12)
[   12.138947] [      C1] i8042: [2246] 3e <- i8042 (interrupt, 1, 12)
[   12.141392] [      C1] i8042: [2246] 9a <- i8042 (interrupt, 1, 12)
[   12.145584] [      C1] i8042: [2247] 40 <- i8042 (interrupt, 1, 12)
[   12.147392] [      C1] i8042: [2248] 21 <- i8042 (interrupt, 1, 12)
[   12.149247] [      C1] i8042: [2248] 8f <- i8042 (interrupt, 1, 12)
[   12.151410] [      C1] i8042: [2249] 32 <- i8042 (interrupt, 1, 12)
[   12.152905] [      C1] i8042: [2249] 9f <- i8042 (interrupt, 1, 12)
[   12.157925] [      C1] i8042: [2250] 40 <- i8042 (interrupt, 1, 12)
[   12.159622] [      C1] i8042: [2251] 21 <- i8042 (interrupt, 1, 12)
[   12.161557] [      C1] i8042: [2251] 5e <- i8042 (interrupt, 1, 12)
[   12.163293] [      C1] i8042: [2252] 32 <- i8042 (interrupt, 1, 12)
[   12.165060] [      C1] i8042: [2252] 9e <- i8042 (interrupt, 1, 12)
[   12.170001] [      C1] i8042: [2254] 40 <- i8042 (interrupt, 1, 12)
[   12.171815] [      C1] i8042: [2254] 21 <- i8042 (interrupt, 1, 12)
[   12.173664] [      C1] i8042: [2254] 28 <- i8042 (interrupt, 1, 12)
[   12.175483] [      C1] i8042: [2255] 3c <- i8042 (interrupt, 1, 12)
[   12.177328] [      C1] i8042: [2255] 99 <- i8042 (interrupt, 1, 12)
[   12.182102] [      C1] i8042: [2257] 40 <- i8042 (interrupt, 1, 12)
[   12.183989] [      C1] i8042: [2257] 11 <- i8042 (interrupt, 1, 12)
[   12.186280] [      C1] i8042: [2258] f6 <- i8042 (interrupt, 1, 12)
[   12.187678] [      C1] i8042: [2258] 4d <- i8042 (interrupt, 1, 12)
[   12.189506] [      C1] i8042: [2258] 98 <- i8042 (interrupt, 1, 12)
[   12.194302] [      C1] i8042: [2260] 40 <- i8042 (interrupt, 1, 12)
[   12.196854] [      C1] i8042: [2260] 11 <- i8042 (interrupt, 1, 12)
[   12.198015] [      C1] i8042: [2261] cd <- i8042 (interrupt, 1, 12)
[   12.200020] [      C1] i8042: [2261] 63 <- i8042 (interrupt, 1, 12)
[   12.201794] [      C1] i8042: [2261] 9a <- i8042 (interrupt, 1, 12)
[   12.206733] [      C1] i8042: [2263] 40 <- i8042 (interrupt, 1, 12)
[   12.208372] [      C1] i8042: [2263] 11 <- i8042 (interrupt, 1, 12)
[   12.210220] [      C1] i8042: [2264] af <- i8042 (interrupt, 1, 12)
[   12.212077] [      C1] i8042: [2264] 78 <- i8042 (interrupt, 1, 12)
[   12.214022] [      C1] i8042: [2265] a6 <- i8042 (interrupt, 1, 12)
[   12.218745] [      C1] i8042: [2266] 40 <- i8042 (interrupt, 1, 12)
[   12.220560] [      C1] i8042: [2266] 11 <- i8042 (interrupt, 1, 12)
[   12.222371] [      C1] i8042: [2267] 9c <- i8042 (interrupt, 1, 12)
[   12.224266] [      C1] i8042: [2267] 8d <- i8042 (interrupt, 1, 12)
[   12.226284] [      C1] i8042: [2268] ae <- i8042 (interrupt, 1, 12)
[   12.231610] [      C1] i8042: [2269] 40 <- i8042 (interrupt, 1, 12)
[   12.232791] [      C1] i8042: [2269] 11 <- i8042 (interrupt, 1, 12)
[   12.234603] [      C1] i8042: [2270] 90 <- i8042 (interrupt, 1, 12)
[   12.236522] [      C1] i8042: [2270] a1 <- i8042 (interrupt, 1, 12)
[   12.238268] [      C1] i8042: [2271] b0 <- i8042 (interrupt, 1, 12)
[   12.243205] [      C1] i8042: [2272] 40 <- i8042 (interrupt, 1, 12)
[   12.244962] [      C1] i8042: [2272] 11 <- i8042 (interrupt, 1, 12)
[   12.246939] [      C1] i8042: [2273] 8d <- i8042 (interrupt, 1, 12)
[   12.248659] [      C1] i8042: [2273] b6 <- i8042 (interrupt, 1, 12)
[   12.250505] [      C1] i8042: [2274] af <- i8042 (interrupt, 1, 12)
[   12.255226] [      C1] i8042: [2275] 40 <- i8042 (interrupt, 1, 12)
[   12.257135] [      C1] i8042: [2275] 11 <- i8042 (interrupt, 1, 12)
[   12.258969] [      C1] i8042: [2276] 91 <- i8042 (interrupt, 1, 12)
[   12.260832] [      C1] i8042: [2276] ca <- i8042 (interrupt, 1, 12)
[   12.262662] [      C1] i8042: [2277] a7 <- i8042 (interrupt, 1, 12)
[   12.267465] [      C1] i8042: [2278] 40 <- i8042 (interrupt, 1, 12)
[   12.269305] [      C1] i8042: [2278] 11 <- i8042 (interrupt, 1, 12)
[   12.271656] [      C1] i8042: [2279] 9f <- i8042 (interrupt, 1, 12)
[   12.273006] [      C1] i8042: [2279] e0 <- i8042 (interrupt, 1, 12)
[   12.274867] [      C1] i8042: [2280] 9b <- i8042 (interrupt, 1, 12)
[   12.279785] [      C1] i8042: [2281] 40 <- i8042 (interrupt, 1, 12)
[   12.281698] [      C1] i8042: [2281] 11 <- i8042 (interrupt, 1, 12)
[   12.283454] [      C1] i8042: [2282] b8 <- i8042 (interrupt, 1, 12)
[   12.285299] [      C1] i8042: [2282] f8 <- i8042 (interrupt, 1, 12)
[   12.287807] [      C1] i8042: [2283] 8b <- i8042 (interrupt, 1, 12)
[   12.292719] [      C1] i8042: [2284] 40 <- i8042 (interrupt, 1, 12)
[   12.293936] [      C1] i8042: [2284] 12 <- i8042 (interrupt, 1, 12)
[   12.295783] [      C1] i8042: [2285] de <- i8042 (interrupt, 1, 12)
[   12.298085] [      C1] i8042: [2286] 09 <- i8042 (interrupt, 1, 12)
[   12.299457] [      C1] i8042: [2286] 7f <- i8042 (interrupt, 1, 12)
[   12.304389] [      C1] i8042: [2287] 40 <- i8042 (interrupt, 1, 12)
[   12.306266] [      C1] i8042: [2288] 22 <- i8042 (interrupt, 1, 12)
[   12.308133] [      C1] i8042: [2288] 07 <- i8042 (interrupt, 1, 12)
[   12.309933] [      C1] i8042: [2288] 17 <- i8042 (interrupt, 1, 12)
[   12.311763] [      C1] i8042: [2289] 6b <- i8042 (interrupt, 1, 12)
[   12.316995] [      C1] i8042: [2290] 40 <- i8042 (interrupt, 1, 12)
[   12.318817] [      C1] i8042: [2291] 22 <- i8042 (interrupt, 1, 12)
[   12.320673] [      C1] i8042: [2291] 35 <- i8042 (interrupt, 1, 12)
[   12.322824] [      C1] i8042: [2292] 20 <- i8042 (interrupt, 1, 12)
[   12.324396] [      C1] i8042: [2292] 61 <- i8042 (interrupt, 1, 12)
[   12.329569] [      C1] i8042: [2293] 60 <- i8042 (interrupt, 1, 12)
[   12.332027] [      C1] i8042: [2294] a2 <- i8042 (interrupt, 1, 12)
[   12.333374] [      C1] i8042: [2294] 6e <- i8042 (interrupt, 1, 12)
[   12.335182] [      C1] i8042: [2295] 23 <- i8042 (interrupt, 1, 12)
[   12.336972] [      C1] i8042: [2295] 5c <- i8042 (interrupt, 1, 12)
[   12.342867] [      C1] i8042: [2297] 60 <- i8042 (interrupt, 1, 12)
[   12.344021] [      C1] i8042: [2297] a2 <- i8042 (interrupt, 1, 12)
[   12.345845] [      C1] i8042: [2297] 98 <- i8042 (interrupt, 1, 12)
[   12.348185] [      C1] i8042: [2298] 2e <- i8042 (interrupt, 1, 12)
[   12.349538] [      C1] i8042: [2298] 55 <- i8042 (interrupt, 1, 12)
[   12.354422] [      C1] i8042: [2300] 60 <- i8042 (interrupt, 1, 12)
[   12.356391] [      C1] i8042: [2300] a2 <- i8042 (interrupt, 1, 12)
[   12.358165] [      C1] i8042: [2301] c9 <- i8042 (interrupt, 1, 12)
[   12.360004] [      C1] i8042: [2301] 28 <- i8042 (interrupt, 1, 12)
[   12.361837] [      C1] i8042: [2301] 58 <- i8042 (interrupt, 1, 12)
[   12.366762] [      C1] i8042: [2303] 60 <- i8042 (interrupt, 1, 12)
[   12.368599] [      C1] i8042: [2303] a2 <- i8042 (interrupt, 1, 12)
[   12.370497] [      C1] i8042: [2304] f4 <- i8042 (interrupt, 1, 12)
[   12.372936] [      C1] i8042: [2304] 20 <- i8042 (interrupt, 1, 12)
[   12.374157] [      C1] i8042: [2305] 5a <- i8042 (interrupt, 1, 12)
[   12.379095] [      C1] i8042: [2306] 60 <- i8042 (interrupt, 1, 12)
[   12.380920] [      C1] i8042: [2306] b2 <- i8042 (interrupt, 1, 12)
[   12.382990] [      C1] i8042: [2307] 15 <- i8042 (interrupt, 1, 12)
[   12.384602] [      C1] i8042: [2307] 17 <- i8042 (interrupt, 1, 12)
[   12.386547] [      C1] i8042: [2308] 64 <- i8042 (interrupt, 1, 12)
[   12.391501] [      C1] i8042: [2309] 60 <- i8042 (interrupt, 1, 12)
[   12.393243] [      C1] i8042: [2309] b2 <- i8042 (interrupt, 1, 12)
[   12.395071] [      C1] i8042: [2310] 2c <- i8042 (interrupt, 1, 12)
[   12.396917] [      C1] i8042: [2310] 0c <- i8042 (interrupt, 1, 12)
[   12.399466] [      C1] i8042: [2311] 70 <- i8042 (interrupt, 1, 12)
[   12.404078] [      C1] i8042: [2312] 60 <- i8042 (interrupt, 1, 12)
[   12.405570] [      C1] i8042: [2312] b2 <- i8042 (interrupt, 1, 12)
[   12.407416] [      C1] i8042: [2313] 3c <- i8042 (interrupt, 1, 12)
[   12.409338] [      C1] i8042: [2313] 01 <- i8042 (interrupt, 1, 12)
[   12.411044] [      C1] i8042: [2314] 7a <- i8042 (interrupt, 1, 12)
[   12.415999] [      C1] i8042: [2315] 60 <- i8042 (interrupt, 1, 12)
[   12.417868] [      C1] i8042: [2315] b1 <- i8042 (interrupt, 1, 12)
[   12.419722] [      C1] i8042: [2316] 48 <- i8042 (interrupt, 1, 12)
[   12.421643] [      C1] i8042: [2316] f3 <- i8042 (interrupt, 1, 12)
[   12.424152] [      C1] i8042: [2317] 7f <- i8042 (interrupt, 1, 12)
[   12.428252] [      C1] i8042: [2318] 60 <- i8042 (interrupt, 1, 12)
[   12.430007] [      C1] i8042: [2319] b1 <- i8042 (interrupt, 1, 12)
[   12.431915] [      C1] i8042: [2319] 4f <- i8042 (interrupt, 1, 12)
[   12.434118] [      C1] i8042: [2320] e4 <- i8042 (interrupt, 1, 12)
[   12.435660] [      C1] i8042: [2320] 86 <- i8042 (interrupt, 1, 12)
[   12.440509] [      C1] i8042: [2321] 60 <- i8042 (interrupt, 1, 12)
[   12.442249] [      C1] i8042: [2322] b1 <- i8042 (interrupt, 1, 12)
[   12.444185] [      C1] i8042: [2322] 52 <- i8042 (interrupt, 1, 12)
[   12.445983] [      C1] i8042: [2323] d2 <- i8042 (interrupt, 1, 12)
[   12.447803] [      C1] i8042: [2323] 8a <- i8042 (interrupt, 1, 12)
[   12.452610] [      C1] i8042: [2324] 60 <- i8042 (interrupt, 1, 12)
[   12.454375] [      C1] i8042: [2325] b1 <- i8042 (interrupt, 1, 12)
[   12.456292] [      C1] i8042: [2325] 50 <- i8042 (interrupt, 1, 12)
[   12.458105] [      C1] i8042: [2326] bc <- i8042 (interrupt, 1, 12)
[   12.459991] [      C1] i8042: [2326] 8f <- i8042 (interrupt, 1, 12)
[   12.464796] [      C1] i8042: [2327] 60 <- i8042 (interrupt, 1, 12)
[   12.466704] [      C1] i8042: [2328] b1 <- i8042 (interrupt, 1, 12)
[   12.468962] [      C1] i8042: [2328] 44 <- i8042 (interrupt, 1, 12)
[   12.470315] [      C1] i8042: [2329] a6 <- i8042 (interrupt, 1, 12)
[   12.472158] [      C1] i8042: [2329] 94 <- i8042 (interrupt, 1, 12)
[   12.476990] [      C1] i8042: [2330] 60 <- i8042 (interrupt, 1, 12)
[   12.479173] [      C1] i8042: [2331] b1 <- i8042 (interrupt, 1, 12)
[   12.480749] [      C1] i8042: [2331] 2a <- i8042 (interrupt, 1, 12)
[   12.482578] [      C1] i8042: [2332] 8f <- i8042 (interrupt, 1, 12)
[   12.484414] [      C1] i8042: [2332] 96 <- i8042 (interrupt, 1, 12)
[   12.492101] [      C1] i8042: [2334] 60 <- i8042 (interrupt, 1, 12)
[   12.493365] [      C1] i8042: [2334] b1 <- i8042 (interrupt, 1, 12)
[   12.495182] [      C1] i8042: [2335] 09 <- i8042 (interrupt, 1, 12)
[   12.497025] [      C1] i8042: [2335] 79 <- i8042 (interrupt, 1, 12)
[   12.497917] [      C1] i8042: [2335] 9c <- i8042 (interrupt, 1, 12)
[   12.501615] [      C1] i8042: [2336] 60 <- i8042 (interrupt, 1, 12)
[   12.503213] [      C1] i8042: [2337] a1 <- i8042 (interrupt, 1, 12)
[   12.505067] [      C1] i8042: [2337] e0 <- i8042 (interrupt, 1, 12)
[   12.506903] [      C1] i8042: [2338] 6b <- i8042 (interrupt, 1, 12)
[   12.508784] [      C1] i8042: [2338] 9a <- i8042 (interrupt, 1, 12)
[   12.513555] [      C1] i8042: [2339] 60 <- i8042 (interrupt, 1, 12)
[   12.515417] [      C1] i8042: [2340] a1 <- i8042 (interrupt, 1, 12)
[   12.517250] [      C1] i8042: [2340] b8 <- i8042 (interrupt, 1, 12)
[   12.519098] [      C1] i8042: [2341] 62 <- i8042 (interrupt, 1, 12)
[   12.521142] [      C1] i8042: [2341] 9d <- i8042 (interrupt, 1, 12)
[   12.526340] [      C1] i8042: [2343] 60 <- i8042 (interrupt, 1, 12)
[   12.527676] [      C1] i8042: [2343] a1 <- i8042 (interrupt, 1, 12)
[   12.529462] [      C1] i8042: [2343] 8e <- i8042 (interrupt, 1, 12)
[   12.531322] [      C1] i8042: [2344] 5d <- i8042 (interrupt, 1, 12)
[   12.533142] [      C1] i8042: [2344] a4 <- i8042 (interrupt, 1, 12)
[   12.537973] [      C1] i8042: [2346] 60 <- i8042 (interrupt, 1, 12)
[   12.539865] [      C1] i8042: [2346] a1 <- i8042 (interrupt, 1, 12)
[   12.541711] [      C1] i8042: [2346] 6a <- i8042 (interrupt, 1, 12)
[   12.543513] [      C1] i8042: [2347] 5d <- i8042 (interrupt, 1, 12)
[   12.545346] [      C1] i8042: [2347] ac <- i8042 (interrupt, 1, 12)
[   12.550120] [      C1] i8042: [2349] 60 <- i8042 (interrupt, 1, 12)
[   12.552066] [      C1] i8042: [2349] a1 <- i8042 (interrupt, 1, 12)
[   12.553814] [      C1] i8042: [2349] 4a <- i8042 (interrupt, 1, 12)
[   12.556373] [      C1] i8042: [2350] 64 <- i8042 (interrupt, 1, 12)
[   12.557505] [      C1] i8042: [2350] b3 <- i8042 (interrupt, 1, 12)
[   12.562304] [      C1] i8042: [2352] 60 <- i8042 (interrupt, 1, 12)
[   12.564151] [      C1] i8042: [2352] a1 <- i8042 (interrupt, 1, 12)
[   12.566399] [      C1] i8042: [2353] 32 <- i8042 (interrupt, 1, 12)
[   12.567894] [      C1] i8042: [2353] 70 <- i8042 (interrupt, 1, 12)
[   12.569738] [      C1] i8042: [2353] be <- i8042 (interrupt, 1, 12)
[   12.574537] [      C1] i8042: [2355] 60 <- i8042 (interrupt, 1, 12)
[   12.576423] [      C1] i8042: [2355] a1 <- i8042 (interrupt, 1, 12)
[   12.578213] [      C1] i8042: [2356] 1d <- i8042 (interrupt, 1, 12)
[   12.580056] [      C1] i8042: [2356] 7f <- i8042 (interrupt, 1, 12)
[   12.582191] [      C1] i8042: [2357] c1 <- i8042 (interrupt, 1, 12)
[   12.586704] [      C1] i8042: [2358] 60 <- i8042 (interrupt, 1, 12)
[   12.588569] [      C1] i8042: [2358] a1 <- i8042 (interrupt, 1, 12)
[   12.590399] [      C1] i8042: [2359] 0c <- i8042 (interrupt, 1, 12)
[   12.593795] [      C1] i8042: [2359] 93 <- i8042 (interrupt, 1, 12)
[   12.595257] [      C1] i8042: [2360] b9 <- i8042 (interrupt, 1, 12)
[   12.598994] [      C1] i8042: [2361] 60 <- i8042 (interrupt, 1, 12)
[   12.600809] [      C1] i8042: [2361] a1 <- i8042 (interrupt, 1, 12)
[   12.602645] [      C1] i8042: [2362] 03 <- i8042 (interrupt, 1, 12)
[   12.604478] [      C1] i8042: [2362] ab <- i8042 (interrupt, 1, 12)
[   12.606323] [      C1] i8042: [2363] ae <- i8042 (interrupt, 1, 12)
[   12.611118] [      C1] i8042: [2364] 60 <- i8042 (interrupt, 1, 12)
[   12.613701] [      C1] i8042: [2364] 91 <- i8042 (interrupt, 1, 12)
[   12.614842] [      C1] i8042: [2365] ff <- i8042 (interrupt, 1, 12)
[   12.616674] [      C1] i8042: [2365] c9 <- i8042 (interrupt, 1, 12)
[   12.618522] [      C1] i8042: [2366] 9f <- i8042 (interrupt, 1, 12)
[   12.623496] [      C1] i8042: [2367] 60 <- i8042 (interrupt, 1, 12)
[   12.625279] [      C1] i8042: [2367] a1 <- i8042 (interrupt, 1, 12)
[   12.627122] [      C1] i8042: [2368] 01 <- i8042 (interrupt, 1, 12)
[   12.629059] [      C1] i8042: [2368] ec <- i8042 (interrupt, 1, 12)
[   12.630876] [      C1] i8042: [2369] 93 <- i8042 (interrupt, 1, 12)
[   12.635795] [      C1] i8042: [2370] 60 <- i8042 (interrupt, 1, 12)
[   12.637561] [      C1] i8042: [2370] a2 <- i8042 (interrupt, 1, 12)
[   12.639408] [      C1] i8042: [2371] 0d <- i8042 (interrupt, 1, 12)
[   12.641255] [      C1] i8042: [2371] 04 <- i8042 (interrupt, 1, 12)
[   12.643377] [      C1] i8042: [2372] 86 <- i8042 (interrupt, 1, 12)
[   12.648644] [      C1] i8042: [2373] 60 <- i8042 (interrupt, 1, 12)
[   12.649877] [      C1] i8042: [2373] a2 <- i8042 (interrupt, 1, 12)
[   12.651739] [      C1] i8042: [2374] 21 <- i8042 (interrupt, 1, 12)
[   12.654007] [      C1] i8042: [2375] 19 <- i8042 (interrupt, 1, 12)
[   12.655379] [      C1] i8042: [2375] 70 <- i8042 (interrupt, 1, 12)
[   12.660624] [      C1] i8042: [2376] 60 <- i8042 (interrupt, 1, 12)
[   12.662470] [      C1] i8042: [2377] a2 <- i8042 (interrupt, 1, 12)
[   12.664305] [      C1] i8042: [2377] 3c <- i8042 (interrupt, 1, 12)
[   12.666131] [      C1] i8042: [2378] 2d <- i8042 (interrupt, 1, 12)
[   12.668690] [      C1] i8042: [2378] 59 <- i8042 (interrupt, 1, 12)
[   12.673406] [      C1] i8042: [2379] 60 <- i8042 (interrupt, 1, 12)
[   12.675191] [      C1] i8042: [2380] a2 <- i8042 (interrupt, 1, 12)
[   12.676910] [      C1] i8042: [2380] 5b <- i8042 (interrupt, 1, 12)
[   12.678894] [      C1] i8042: [2381] 40 <- i8042 (interrupt, 1, 12)
[   12.680582] [      C1] i8042: [2381] 43 <- i8042 (interrupt, 1, 12)
[   12.685784] [      C1] i8042: [2382] 60 <- i8042 (interrupt, 1, 12)
[   12.687611] [      C1] i8042: [2383] a2 <- i8042 (interrupt, 1, 12)
[   12.689456] [      C1] i8042: [2383] 80 <- i8042 (interrupt, 1, 12)
[   12.691323] [      C1] i8042: [2384] 4b <- i8042 (interrupt, 1, 12)
[   12.693668] [      C1] i8042: [2384] 36 <- i8042 (interrupt, 1, 12)
[   12.698771] [      C1] i8042: [2386] 60 <- i8042 (interrupt, 1, 12)
[   12.700262] [      C1] i8042: [2386] a2 <- i8042 (interrupt, 1, 12)
[   12.701984] [      C1] i8042: [2387] 98 <- i8042 (interrupt, 1, 12)
[   12.704104] [      C1] i8042: [2387] 57 <- i8042 (interrupt, 1, 12)
[   12.705699] [      C1] i8042: [2387] 2d <- i8042 (interrupt, 1, 12)
[   12.710908] [      C1] i8042: [2389] 60 <- i8042 (interrupt, 1, 12)
[   12.712724] [      C1] i8042: [2389] a2 <- i8042 (interrupt, 1, 12)
[   12.714557] [      C1] i8042: [2390] c3 <- i8042 (interrupt, 1, 12)
[   12.716417] [      C1] i8042: [2390] 54 <- i8042 (interrupt, 1, 12)
[   12.718845] [      C1] i8042: [2391] 27 <- i8042 (interrupt, 1, 12)
[   12.723590] [      C1] i8042: [2392] 60 <- i8042 (interrupt, 1, 12)
[   12.725362] [      C1] i8042: [2392] a2 <- i8042 (interrupt, 1, 12)
[   12.727204] [      C1] i8042: [2393] df <- i8042 (interrupt, 1, 12)
[   12.729054] [      C1] i8042: [2393] 54 <- i8042 (interrupt, 1, 12)
[   12.730802] [      C1] i8042: [2394] 27 <- i8042 (interrupt, 1, 12)
[   12.736042] [      C1] i8042: [2395] 60 <- i8042 (interrupt, 1, 12)
[   12.737866] [      C1] i8042: [2395] b2 <- i8042 (interrupt, 1, 12)
[   12.739703] [      C1] i8042: [2396] 07 <- i8042 (interrupt, 1, 12)
[   12.741549] [      C1] i8042: [2396] 50 <- i8042 (interrupt, 1, 12)
[   12.743644] [      C1] i8042: [2397] 28 <- i8042 (interrupt, 1, 12)
[   12.748922] [      C1] i8042: [2398] 60 <- i8042 (interrupt, 1, 12)
[   12.750487] [      C1] i8042: [2399] b2 <- i8042 (interrupt, 1, 12)
[   12.752420] [      C1] i8042: [2399] 22 <- i8042 (interrupt, 1, 12)
[   12.754154] [      C1] i8042: [2400] 4b <- i8042 (interrupt, 1, 12)
[   12.755891] [      C1] i8042: [2400] 2c <- i8042 (interrupt, 1, 12)
[   12.761210] [      C1] i8042: [2401] 60 <- i8042 (interrupt, 1, 12)
[   12.763045] [      C1] i8042: [2402] b2 <- i8042 (interrupt, 1, 12)
[   12.764848] [      C1] i8042: [2402] 43 <- i8042 (interrupt, 1, 12)
[   12.766701] [      C1] i8042: [2403] 41 <- i8042 (interrupt, 1, 12)
[   12.769025] [      C1] i8042: [2403] 35 <- i8042 (interrupt, 1, 12)
[   12.773856] [      C1] i8042: [2404] 60 <- i8042 (interrupt, 1, 12)
[   12.776234] [      C1] i8042: [2405] b2 <- i8042 (interrupt, 1, 12)
[   12.777540] [      C1] i8042: [2405] 58 <- i8042 (interrupt, 1, 12)
[   12.779292] [      C1] i8042: [2406] 34 <- i8042 (interrupt, 1, 12)
[   12.781166] [      C1] i8042: [2406] 42 <- i8042 (interrupt, 1, 12)
[   12.786385] [      C1] i8042: [2408] 60 <- i8042 (interrupt, 1, 12)
[   12.788209] [      C1] i8042: [2408] b2 <- i8042 (interrupt, 1, 12)
[   12.790002] [      C1] i8042: [2409] 69 <- i8042 (interrupt, 1, 12)
[   12.791886] [      C1] i8042: [2409] 22 <- i8042 (interrupt, 1, 12)
[   12.795242] [      C1] i8042: [2410] 51 <- i8042 (interrupt, 1, 12)
[   12.798604] [      C1] i8042: [2411] 60 <- i8042 (interrupt, 1, 12)
[   12.800613] [      C1] i8042: [2411] b2 <- i8042 (interrupt, 1, 12)
[   12.802302] [      C1] i8042: [2412] 79 <- i8042 (interrupt, 1, 12)
[   12.804191] [      C1] i8042: [2412] 15 <- i8042 (interrupt, 1, 12)
[   12.805930] [      C1] i8042: [2412] 60 <- i8042 (interrupt, 1, 12)
[   12.810914] [      C1] i8042: [2414] 60 <- i8042 (interrupt, 1, 12)
[   12.812760] [      C1] i8042: [2414] b1 <- i8042 (interrupt, 1, 12)
[   12.815288] [      C1] i8042: [2415] 83 <- i8042 (interrupt, 1, 12)
[   12.816437] [      C1] i8042: [2415] fc <- i8042 (interrupt, 1, 12)
[   12.818224] [      C1] i8042: [2416] 6c <- i8042 (interrupt, 1, 12)
[   12.823086] [      C1] i8042: [2417] 60 <- i8042 (interrupt, 1, 12)
[   12.825033] [      C1] i8042: [2417] b1 <- i8042 (interrupt, 1, 12)
[   12.826775] [      C1] i8042: [2418] 88 <- i8042 (interrupt, 1, 12)
[   12.828643] [      C1] i8042: [2418] db <- i8042 (interrupt, 1, 12)
[   12.830509] [      C1] i8042: [2419] 76 <- i8042 (interrupt, 1, 12)
[   12.835702] [      C1] i8042: [2420] 60 <- i8042 (interrupt, 1, 12)
[   12.837140] [      C1] i8042: [2420] b1 <- i8042 (interrupt, 1, 12)
[   12.838977] [      C1] i8042: [2421] 85 <- i8042 (interrupt, 1, 12)
[   12.840825] [      C1] i8042: [2421] b4 <- i8042 (interrupt, 1, 12)
[   12.842679] [      C1] i8042: [2422] 82 <- i8042 (interrupt, 1, 12)
[   12.847528] [      C1] i8042: [2423] 60 <- i8042 (interrupt, 1, 12)
[   12.849363] [      C1] i8042: [2423] b1 <- i8042 (interrupt, 1, 12)
[   12.851183] [      C1] i8042: [2424] 74 <- i8042 (interrupt, 1, 12)
[   12.853026] [      C1] i8042: [2424] 94 <- i8042 (interrupt, 1, 12)
[   12.855505] [      C1] i8042: [2425] 85 <- i8042 (interrupt, 1, 12)
[   12.860186] [      C1] i8042: [2426] 60 <- i8042 (interrupt, 1, 12)
[   12.861520] [      C1] i8042: [2426] b1 <- i8042 (interrupt, 1, 12)
[   12.863363] [      C1] i8042: [2427] 59 <- i8042 (interrupt, 1, 12)
[   12.865387] [      C1] i8042: [2427] 75 <- i8042 (interrupt, 1, 12)
[   12.867034] [      C1] i8042: [2428] 89 <- i8042 (interrupt, 1, 12)
[   12.871852] [      C1] i8042: [2429] 60 <- i8042 (interrupt, 1, 12)
[   12.873701] [      C1] i8042: [2429] b1 <- i8042 (interrupt, 1, 12)
[   12.875545] [      C1] i8042: [2430] 37 <- i8042 (interrupt, 1, 12)
[   12.877401] [      C1] i8042: [2430] 5c <- i8042 (interrupt, 1, 12)
[   12.879225] [      C1] i8042: [2431] 89 <- i8042 (interrupt, 1, 12)
[   12.884031] [      C1] i8042: [2432] 60 <- i8042 (interrupt, 1, 12)
[   12.885874] [      C1] i8042: [2432] b1 <- i8042 (interrupt, 1, 12)
[   12.887731] [      C1] i8042: [2433] 13 <- i8042 (interrupt, 1, 12)
[   12.890247] [      C1] i8042: [2434] 4c <- i8042 (interrupt, 1, 12)
[   12.891417] [      C1] i8042: [2434] 94 <- i8042 (interrupt, 1, 12)
[   12.897415] [      C1] i8042: [2435] 60 <- i8042 (interrupt, 1, 12)
[   12.899239] [      C1] i8042: [2436] a1 <- i8042 (interrupt, 1, 12)
[   12.901090] [      C1] i8042: [2436] ed <- i8042 (interrupt, 1, 12)
[   12.902933] [      C1] i8042: [2437] 43 <- i8042 (interrupt, 1, 12)
[   12.904767] [      C1] i8042: [2437] 9f <- i8042 (interrupt, 1, 12)
[   12.908456] [      C1] i8042: [2438] 60 <- i8042 (interrupt, 1, 12)
[   12.910280] [      C1] i8042: [2439] a1 <- i8042 (interrupt, 1, 12)
[   12.912296] [      C1] i8042: [2439] cb <- i8042 (interrupt, 1, 12)
[   12.913983] [      C1] i8042: [2440] 40 <- i8042 (interrupt, 1, 12)
[   12.915872] [      C1] i8042: [2440] b1 <- i8042 (interrupt, 1, 12)
[   12.920645] [      C1] i8042: [2441] 60 <- i8042 (interrupt, 1, 12)
[   12.922559] [      C1] i8042: [2442] a1 <- i8042 (interrupt, 1, 12)
[   12.924330] [      C1] i8042: [2442] ac <- i8042 (interrupt, 1, 12)
[   12.926128] [      C1] i8042: [2443] 40 <- i8042 (interrupt, 1, 12)
[   12.928012] [      C1] i8042: [2443] bb <- i8042 (interrupt, 1, 12)
[   12.932853] [      C1] i8042: [2444] 60 <- i8042 (interrupt, 1, 12)
[   12.934675] [      C1] i8042: [2445] a1 <- i8042 (interrupt, 1, 12)
[   12.936524] [      C1] i8042: [2445] 90 <- i8042 (interrupt, 1, 12)
[   12.938346] [      C1] i8042: [2446] 4a <- i8042 (interrupt, 1, 12)
[   12.940185] [      C1] i8042: [2446] c3 <- i8042 (interrupt, 1, 12)
[   12.944993] [      C1] i8042: [2447] 60 <- i8042 (interrupt, 1, 12)
[   12.947118] [      C1] i8042: [2448] a1 <- i8042 (interrupt, 1, 12)
[   12.948702] [      C1] i8042: [2448] 78 <- i8042 (interrupt, 1, 12)
[   12.950535] [      C1] i8042: [2449] 59 <- i8042 (interrupt, 1, 12)
[   12.952379] [      C1] i8042: [2449] c2 <- i8042 (interrupt, 1, 12)
[   12.957714] [      C1] i8042: [2450] 60 <- i8042 (interrupt, 1, 12)
[   12.959036] [      C1] i8042: [2451] a1 <- i8042 (interrupt, 1, 12)
[   12.960883] [      C1] i8042: [2451] 64 <- i8042 (interrupt, 1, 12)
[   12.962754] [      C1] i8042: [2452] 6e <- i8042 (interrupt, 1, 12)
[   12.964596] [      C1] i8042: [2452] bc <- i8042 (interrupt, 1, 12)
[   12.969378] [      C1] i8042: [2453] 60 <- i8042 (interrupt, 1, 12)
[   12.971177] [      C1] i8042: [2454] a1 <- i8042 (interrupt, 1, 12)
[   12.973023] [      C1] i8042: [2454] 53 <- i8042 (interrupt, 1, 12)
[   12.974900] [      C1] i8042: [2455] 87 <- i8042 (interrupt, 1, 12)
[   12.977164] [      C1] i8042: [2455] b4 <- i8042 (interrupt, 1, 12)
[   12.981550] [      C1] i8042: [2456] 60 <- i8042 (interrupt, 1, 12)
[   12.983373] [      C1] i8042: [2457] a1 <- i8042 (interrupt, 1, 12)
[   12.985272] [      C1] i8042: [2457] 49 <- i8042 (interrupt, 1, 12)
[   12.987363] [      C1] i8042: [2458] a0 <- i8042 (interrupt, 1, 12)
[   12.988910] [      C1] i8042: [2458] a9 <- i8042 (interrupt, 1, 12)
[   12.993764] [      C1] i8042: [2459] 60 <- i8042 (interrupt, 1, 12)
[   12.995594] [      C1] i8042: [2460] a1 <- i8042 (interrupt, 1, 12)
[   13.001008] [      C1] i8042: [2461] 46 <- i8042 (interrupt, 1, 12)
[   13.001956] [      C1] i8042: [2462] bc <- i8042 (interrupt, 1, 12)
[   13.002956] [      C1] i8042: [2462] 9d <- i8042 (interrupt, 1, 12)
[   13.006229] [      C1] i8042: [2463] 60 <- i8042 (interrupt, 1, 12)
[   13.008076] [      C1] i8042: [2463] a1 <- i8042 (interrupt, 1, 12)
[   13.010875] [      C1] i8042: [2464] 48 <- i8042 (interrupt, 1, 12)
[   13.011818] [      C1] i8042: [2464] d4 <- i8042 (interrupt, 1, 12)
[   13.013632] [      C1] i8042: [2464] 92 <- i8042 (interrupt, 1, 12)
[   13.018576] [      C1] i8042: [2466] 60 <- i8042 (interrupt, 1, 12)
[   13.020702] [      C1] i8042: [2466] a1 <- i8042 (interrupt, 1, 12)
[   13.022289] [      C1] i8042: [2467] 54 <- i8042 (interrupt, 1, 12)
[   13.024169] [      C1] i8042: [2467] ed <- i8042 (interrupt, 1, 12)
[   13.026050] [      C1] i8042: [2468] 88 <- i8042 (interrupt, 1, 12)
[   13.030866] [      C1] i8042: [2469] 60 <- i8042 (interrupt, 1, 12)
[   13.032716] [      C1] i8042: [2469] a1 <- i8042 (interrupt, 1, 12)
[   13.034547] [      C1] i8042: [2470] 68 <- i8042 (interrupt, 1, 12)
[   13.036384] [      C1] i8042: [2470] ff <- i8042 (interrupt, 1, 12)
[   13.038231] [      C1] i8042: [2471] 82 <- i8042 (interrupt, 1, 12)
[   13.043166] [      C1] i8042: [2472] 60 <- i8042 (interrupt, 1, 12)
[   13.045572] [      C1] i8042: [2472] a2 <- i8042 (interrupt, 1, 12)
[   13.046906] [      C1] i8042: [2473] 7d <- i8042 (interrupt, 1, 12)
[   13.048720] [      C1] i8042: [2473] 0e <- i8042 (interrupt, 1, 12)
[   13.050570] [      C1] i8042: [2474] 7c <- i8042 (interrupt, 1, 12)
[   13.055598] [      C1] i8042: [2475] 60 <- i8042 (interrupt, 1, 12)
[   13.057300] [      C1] i8042: [2475] a2 <- i8042 (interrupt, 1, 12)
[   13.059174] [      C1] i8042: [2476] 91 <- i8042 (interrupt, 1, 12)
[   13.061061] [      C1] i8042: [2476] 15 <- i8042 (interrupt, 1, 12)
[   13.062850] [      C1] i8042: [2477] 7a <- i8042 (interrupt, 1, 12)
[   13.067778] [      C1] i8042: [2478] 60 <- i8042 (interrupt, 1, 12)
[   13.069602] [      C1] i8042: [2478] a2 <- i8042 (interrupt, 1, 12)
[   13.071454] [      C1] i8042: [2479] ac <- i8042 (interrupt, 1, 12)
[   13.073297] [      C1] i8042: [2479] 19 <- i8042 (interrupt, 1, 12)
[   13.075651] [      C1] i8042: [2480] 75 <- i8042 (interrupt, 1, 12)
[   13.080368] [      C1] i8042: [2481] 60 <- i8042 (interrupt, 1, 12)
[   13.081896] [      C1] i8042: [2481] a2 <- i8042 (interrupt, 1, 12)
[   13.083766] [      C1] i8042: [2482] c8 <- i8042 (interrupt, 1, 12)
[   13.085659] [      C1] i8042: [2482] 19 <- i8042 (interrupt, 1, 12)
[   13.087438] [      C1] i8042: [2483] 75 <- i8042 (interrupt, 1, 12)
[   13.092360] [      C1] i8042: [2484] 60 <- i8042 (interrupt, 1, 12)
[   13.094283] [      C1] i8042: [2485] a2 <- i8042 (interrupt, 1, 12)
[   13.096057] [      C1] i8042: [2485] e3 <- i8042 (interrupt, 1, 12)
[   13.097914] [      C1] i8042: [2485] 17 <- i8042 (interrupt, 1, 12)
[   13.099759] [      C1] i8042: [2486] 73 <- i8042 (interrupt, 1, 12)
[   13.109611] [      C1] i8042: [2488] 60 <- i8042 (interrupt, 1, 12)
[   13.111298] [      C1] i8042: [2489] b2 <- i8042 (interrupt, 1, 12)
[   13.112300] [      C1] i8042: [2489] 02 <- i8042 (interrupt, 1, 12)
[   13.113815] [      C1] i8042: [2489] 0f <- i8042 (interrupt, 1, 12)
[   13.114713] [      C1] i8042: [2490] 76 <- i8042 (interrupt, 1, 12)
[   13.119154] [      C1] i8042: [2491] 60 <- i8042 (interrupt, 1, 12)
[   13.120160] [      C1] i8042: [2491] b2 <- i8042 (interrupt, 1, 12)
[   13.121954] [      C1] i8042: [2492] 1c <- i8042 (interrupt, 1, 12)
[   13.123841] [      C1] i8042: [2492] 08 <- i8042 (interrupt, 1, 12)
[   13.125617] [      C1] i8042: [2492] 7c <- i8042 (interrupt, 1, 12)
[   13.130545] [      C1] i8042: [2494] 60 <- i8042 (interrupt, 1, 12)
[   13.132432] [      C1] i8042: [2494] b2 <- i8042 (interrupt, 1, 12)
[   13.134378] [      C1] i8042: [2495] 32 <- i8042 (interrupt, 1, 12)
[   13.136097] [      C1] i8042: [2495] 00 <- i8042 (interrupt, 1, 12)
[   13.137947] [      C1] i8042: [2496] 81 <- i8042 (interrupt, 1, 12)
[   13.142877] [      C1] i8042: [2497] 60 <- i8042 (interrupt, 1, 12)
[   13.144725] [      C1] i8042: [2497] b1 <- i8042 (interrupt, 1, 12)
[   13.146570] [      C1] i8042: [2498] 47 <- i8042 (interrupt, 1, 12)
[   13.148617] [      C1] i8042: [2498] f3 <- i8042 (interrupt, 1, 12)
[   13.150388] [      C1] i8042: [2499] 86 <- i8042 (interrupt, 1, 12)
[   13.155089] [      C1] i8042: [2500] 60 <- i8042 (interrupt, 1, 12)
[   13.156887] [      C1] i8042: [2500] b1 <- i8042 (interrupt, 1, 12)
[   13.158863] [      C1] i8042: [2501] 58 <- i8042 (interrupt, 1, 12)
[   13.160593] [      C1] i8042: [2501] e1 <- i8042 (interrupt, 1, 12)
[   13.162416] [      C1] i8042: [2502] 8c <- i8042 (interrupt, 1, 12)
[   13.167267] [      C1] i8042: [2503] 60 <- i8042 (interrupt, 1, 12)
[   13.169318] [      C1] i8042: [2503] b1 <- i8042 (interrupt, 1, 12)
[   13.170899] [      C1] i8042: [2504] 65 <- i8042 (interrupt, 1, 12)
[   13.172736] [      C1] i8042: [2504] d1 <- i8042 (interrupt, 1, 12)
[   13.174600] [      C1] i8042: [2505] 90 <- i8042 (interrupt, 1, 12)
[   13.179419] [      C1] i8042: [2506] 60 <- i8042 (interrupt, 1, 12)
[   13.181303] [      C1] i8042: [2506] b1 <- i8042 (interrupt, 1, 12)
[   13.183090] [      C1] i8042: [2507] 70 <- i8042 (interrupt, 1, 12)
[   13.184920] [      C1] i8042: [2507] bd <- i8042 (interrupt, 1, 12)
[   13.186807] [      C1] i8042: [2508] 91 <- i8042 (interrupt, 1, 12)
[   13.191594] [      C1] i8042: [2509] 60 <- i8042 (interrupt, 1, 12)
[   13.193998] [      C1] i8042: [2510] b1 <- i8042 (interrupt, 1, 12)
[   13.195352] [      C1] i8042: [2510] 76 <- i8042 (interrupt, 1, 12)
[   13.197118] [      C1] i8042: [2510] a9 <- i8042 (interrupt, 1, 12)
[   13.198991] [      C1] i8042: [2511] 97 <- i8042 (interrupt, 1, 12)
[   13.204054] [      C1] i8042: [2512] 60 <- i8042 (interrupt, 1, 12)
[   13.205622] [      C1] i8042: [2512] b1 <- i8042 (interrupt, 1, 12)
[   13.207522] [      C1] i8042: [2513] 79 <- i8042 (interrupt, 1, 12)
[   13.209264] [      C1] i8042: [2513] 95 <- i8042 (interrupt, 1, 12)
[   13.211087] [      C1] i8042: [2514] 9a <- i8042 (interrupt, 1, 12)
[   13.215874] [      C1] i8042: [2515] 60 <- i8042 (interrupt, 1, 12)
[   13.217726] [      C1] i8042: [2515] b1 <- i8042 (interrupt, 1, 12)
[   13.219687] [      C1] i8042: [2516] 7a <- i8042 (interrupt, 1, 12)
[   13.221442] [      C1] i8042: [2516] 86 <- i8042 (interrupt, 1, 12)
[   13.223271] [      C1] i8042: [2517] a0 <- i8042 (interrupt, 1, 12)
[   13.228062] [      C1] i8042: [2518] 60 <- i8042 (interrupt, 1, 12)
[   13.229910] [      C1] i8042: [2518] b1 <- i8042 (interrupt, 1, 12)
[   13.231756] [      C1] i8042: [2519] 7a <- i8042 (interrupt, 1, 12)
[   13.234142] [      C1] i8042: [2520] 78 <- i8042 (interrupt, 1, 12)
[   13.235479] [      C1] i8042: [2520] a5 <- i8042 (interrupt, 1, 12)
[   13.240318] [      C1] i8042: [2521] 60 <- i8042 (interrupt, 1, 12)
[   13.242140] [      C1] i8042: [2522] b1 <- i8042 (interrupt, 1, 12)
[   13.244163] [      C1] i8042: [2522] 79 <- i8042 (interrupt, 1, 12)
[   13.245814] [      C1] i8042: [2522] 73 <- i8042 (interrupt, 1, 12)
[   13.247659] [      C1] i8042: [2523] a9 <- i8042 (interrupt, 1, 12)
[   13.252558] [      C1] i8042: [2524] 60 <- i8042 (interrupt, 1, 12)
[   13.254392] [      C1] i8042: [2525] b1 <- i8042 (interrupt, 1, 12)
[   13.256192] [      C1] i8042: [2525] 78 <- i8042 (interrupt, 1, 12)
[   13.257999] [      C1] i8042: [2526] 71 <- i8042 (interrupt, 1, 12)
[   13.259848] [      C1] i8042: [2526] ac <- i8042 (interrupt, 1, 12)
[   13.264645] [      C1] i8042: [2527] 60 <- i8042 (interrupt, 1, 12)
[   13.266524] [      C1] i8042: [2528] b1 <- i8042 (interrupt, 1, 12)
[   13.268348] [      C1] i8042: [2528] 78 <- i8042 (interrupt, 1, 12)
[   13.270196] [      C1] i8042: [2529] 71 <- i8042 (interrupt, 1, 12)
[   13.272041] [      C1] i8042: [2529] a8 <- i8042 (interrupt, 1, 12)
[   13.276863] [      C1] i8042: [2530] 60 <- i8042 (interrupt, 1, 12)
[   13.279567] [      C1] i8042: [2531] b1 <- i8042 (interrupt, 1, 12)
[   13.280534] [      C1] i8042: [2531] 74 <- i8042 (interrupt, 1, 12)
[   13.282361] [      C1] i8042: [2532] 77 <- i8042 (interrupt, 1, 12)
[   13.284390] [      C1] i8042: [2532] 8b <- i8042 (interrupt, 1, 12)
[   13.289207] [      C1] i8042: [2533] 60 <- i8042 (interrupt, 1, 12)
[   13.290896] [      C1] i8042: [2534] b1 <- i8042 (interrupt, 1, 12)
[   13.292741] [      C1] i8042: [2534] 70 <- i8042 (interrupt, 1, 12)
[   13.294590] [      C1] i8042: [2535] 7c <- i8042 (interrupt, 1, 12)
[   13.296355] [      C1] i8042: [2535] 59 <- i8042 (interrupt, 1, 12)
[   13.301088] [      C1] i8042: [2536] 60 <- i8042 (interrupt, 1, 12)
[   13.302995] [      C1] i8042: [2537] b1 <- i8042 (interrupt, 1, 12)
[   13.304790] [      C1] i8042: [2537] 6c <- i8042 (interrupt, 1, 12)
[   13.306639] [      C1] i8042: [2538] 7e <- i8042 (interrupt, 1, 12)
[   13.308464] [      C1] i8042: [2538] 2e <- i8042 (interrupt, 1, 12)
[   13.312035] [      C1] i8042: [2539] 00 <- i8042 (interrupt, 1, 12)
[   13.321969] [      C1] i8042: [2542] 00 <- i8042 (interrupt, 1, 12)
[   13.332034] [      C1] i8042: [2544] 00 <- i8042 (interrupt, 1, 12)
[   13.342682] [      C1] i8042: [2547] 00 <- i8042 (interrupt, 1, 12)
[   13.353340] [      C1] i8042: [2549] 00 <- i8042 (interrupt, 1, 12)
[   13.364541] [      C1] i8042: [2552] 00 <- i8042 (interrupt, 1, 12)
[   13.374782] [      C1] i8042: [2555] 00 <- i8042 (interrupt, 1, 12)
[   13.385295] [      C1] i8042: [2557] 00 <- i8042 (interrupt, 1, 12)
[   13.395980] [      C1] i8042: [2560] 00 <- i8042 (interrupt, 1, 12)
[   13.406639] [      C1] i8042: [2563] 00 <- i8042 (interrupt, 1, 12)
[   13.417307] [      C1] i8042: [2565] 00 <- i8042 (interrupt, 1, 12)
[   13.428038] [      C1] i8042: [2568] 00 <- i8042 (interrupt, 1, 12)
[   13.438596] [      C1] i8042: [2571] 00 <- i8042 (interrupt, 1, 12)
[   13.449314] [      C1] i8042: [2573] 00 <- i8042 (interrupt, 1, 12)
[   13.459911] [      C1] i8042: [2576] 00 <- i8042 (interrupt, 1, 12)
[   13.471623] [      C1] i8042: [2579] 40 <- i8042 (interrupt, 1, 12)
[   13.473465] [      C1] i8042: [2579] 11 <- i8042 (interrupt, 1, 12)
[   13.475797] [      C1] i8042: [2580] b1 <- i8042 (interrupt, 1, 12)
[   13.477294] [      C1] i8042: [2580] 9e <- i8042 (interrupt, 1, 12)
[   13.479004] [      C1] i8042: [2581] 16 <- i8042 (interrupt, 1, 12)
[   13.483768] [      C1] i8042: [2582] 40 <- i8042 (interrupt, 1, 12)
[   13.485846] [      C1] i8042: [2582] 11 <- i8042 (interrupt, 1, 12)
[   13.487463] [      C1] i8042: [2583] b0 <- i8042 (interrupt, 1, 12)
[   13.489342] [      C1] i8042: [2583] 9f <- i8042 (interrupt, 1, 12)
[   13.491179] [      C1] i8042: [2584] 47 <- i8042 (interrupt, 1, 12)
[   13.496026] [      C1] i8042: [2585] 40 <- i8042 (interrupt, 1, 12)
[   13.497787] [      C1] i8042: [2585] 11 <- i8042 (interrupt, 1, 12)
[   13.499632] [      C1] i8042: [2586] b0 <- i8042 (interrupt, 1, 12)
[   13.501478] [      C1] i8042: [2586] 9f <- i8042 (interrupt, 1, 12)
[   13.503357] [      C1] i8042: [2587] 74 <- i8042 (interrupt, 1, 12)
[   13.508116] [      C1] i8042: [2588] 40 <- i8042 (interrupt, 1, 12)
[   13.510017] [      C1] i8042: [2589] 11 <- i8042 (interrupt, 1, 12)
[   13.514131] [      C1] i8042: [2590] b7 <- i8042 (interrupt, 1, 12)
[   13.515976] [      C1] i8042: [2590] 9f <- i8042 (interrupt, 1, 12)
[   13.516865] [      C1] i8042: [2590] 95 <- i8042 (interrupt, 1, 12)
[   13.520404] [      C1] i8042: [2591] 40 <- i8042 (interrupt, 1, 12)
[   13.523240] [      C1] i8042: [2592] 11 <- i8042 (interrupt, 1, 12)
[   13.525239] [      C1] i8042: [2592] d3 <- i8042 (interrupt, 1, 12)
[   13.527017] [      C1] i8042: [2593] 9f <- i8042 (interrupt, 1, 12)
[   13.528820] [      C1] i8042: [2593] a1 <- i8042 (interrupt, 1, 12)
[   13.533128] [      C1] i8042: [2594] 40 <- i8042 (interrupt, 1, 12)
[   13.534414] [      C1] i8042: [2595] 11 <- i8042 (interrupt, 1, 12)
[   13.536274] [      C1] i8042: [2595] f6 <- i8042 (interrupt, 1, 12)
[   13.538053] [      C1] i8042: [2596] 9e <- i8042 (interrupt, 1, 12)
[   13.539878] [      C1] i8042: [2596] 9a <- i8042 (interrupt, 1, 12)
[   13.544690] [      C1] i8042: [2597] 40 <- i8042 (interrupt, 1, 12)
[   13.546525] [      C1] i8042: [2598] 21 <- i8042 (interrupt, 1, 12)
[   13.548480] [      C1] i8042: [2598] 2b <- i8042 (interrupt, 1, 12)
[   13.550119] [      C1] i8042: [2599] 9e <- i8042 (interrupt, 1, 12)
[   13.552074] [      C1] i8042: [2599] 90 <- i8042 (interrupt, 1, 12)
[   13.556888] [      C1] i8042: [2600] 40 <- i8042 (interrupt, 1, 12)
[   13.558699] [      C1] i8042: [2601] 21 <- i8042 (interrupt, 1, 12)
[   13.560568] [      C1] i8042: [2601] 6b <- i8042 (interrupt, 1, 12)
[   13.562731] [      C1] i8042: [2602] 9e <- i8042 (interrupt, 1, 12)
[   13.564321] [      C1] i8042: [2602] 85 <- i8042 (interrupt, 1, 12)
[   13.569110] [      C1] i8042: [2603] 40 <- i8042 (interrupt, 1, 12)
[   13.570925] [      C1] i8042: [2604] 21 <- i8042 (interrupt, 1, 12)
[   13.573324] [      C1] i8042: [2604] a5 <- i8042 (interrupt, 1, 12)
[   13.574621] [      C1] i8042: [2605] a1 <- i8042 (interrupt, 1, 12)
[   13.576515] [      C1] i8042: [2605] 79 <- i8042 (interrupt, 1, 12)
[   13.581273] [      C1] i8042: [2606] 40 <- i8042 (interrupt, 1, 12)
[   13.583234] [      C1] i8042: [2607] 21 <- i8042 (interrupt, 1, 12)
[   13.584958] [      C1] i8042: [2607] d2 <- i8042 (interrupt, 1, 12)
[   13.586786] [      C1] i8042: [2608] a4 <- i8042 (interrupt, 1, 12)
[   13.588628] [      C1] i8042: [2608] 77 <- i8042 (interrupt, 1, 12)
[   13.593558] [      C1] i8042: [2609] 40 <- i8042 (interrupt, 1, 12)
[   13.595396] [      C1] i8042: [2610] 21 <- i8042 (interrupt, 1, 12)
[   13.597169] [      C1] i8042: [2610] f6 <- i8042 (interrupt, 1, 12)
[   13.598994] [      C1] i8042: [2611] a4 <- i8042 (interrupt, 1, 12)
[   13.600832] [      C1] i8042: [2611] 7b <- i8042 (interrupt, 1, 12)
[   13.605658] [      C1] i8042: [2612] 40 <- i8042 (interrupt, 1, 12)
[   13.608092] [      C1] i8042: [2613] 31 <- i8042 (interrupt, 1, 12)
[   13.609424] [      C1] i8042: [2613] 0f <- i8042 (interrupt, 1, 12)
[   13.611215] [      C1] i8042: [2614] a2 <- i8042 (interrupt, 1, 12)
[   13.615406] [      C1] i8042: [2615] 87 <- i8042 (interrupt, 1, 12)
[   13.617793] [      C1] i8042: [2615] 40 <- i8042 (interrupt, 1, 12)
[   13.620113] [      C1] i8042: [2616] 31 <- i8042 (interrupt, 1, 12)
[   13.621606] [      C1] i8042: [2616] 22 <- i8042 (interrupt, 1, 12)
[   13.623451] [      C1] i8042: [2617] 9d <- i8042 (interrupt, 1, 12)
[   13.625451] [      C1] i8042: [2617] 93 <- i8042 (interrupt, 1, 12)
[   13.630069] [      C1] i8042: [2619] 40 <- i8042 (interrupt, 1, 12)
[   13.631855] [      C1] i8042: [2619] 31 <- i8042 (interrupt, 1, 12)
[   13.633701] [      C1] i8042: [2619] 32 <- i8042 (interrupt, 1, 12)
[   13.635596] [      C1] i8042: [2620] 93 <- i8042 (interrupt, 1, 12)
[   13.637379] [      C1] i8042: [2620] 9c <- i8042 (interrupt, 1, 12)
[   13.642155] [      C1] i8042: [2622] 40 <- i8042 (interrupt, 1, 12)
[   13.644026] [      C1] i8042: [2622] 31 <- i8042 (interrupt, 1, 12)
[   13.645868] [      C1] i8042: [2622] 3d <- i8042 (interrupt, 1, 12)
[   13.647744] [      C1] i8042: [2623] 87 <- i8042 (interrupt, 1, 12)
[   13.650155] [      C1] i8042: [2624] a0 <- i8042 (interrupt, 1, 12)
[   13.654361] [      C1] i8042: [2625] 40 <- i8042 (interrupt, 1, 12)
[   13.656192] [      C1] i8042: [2625] 31 <- i8042 (interrupt, 1, 12)
[   13.658007] [      C1] i8042: [2626] 43 <- i8042 (interrupt, 1, 12)
[   13.660185] [      C1] i8042: [2626] 7a <- i8042 (interrupt, 1, 12)
[   13.661770] [      C1] i8042: [2626] a5 <- i8042 (interrupt, 1, 12)
[   13.666538] [      C1] i8042: [2628] 40 <- i8042 (interrupt, 1, 12)
[   13.668388] [      C1] i8042: [2628] 31 <- i8042 (interrupt, 1, 12)
[   13.670186] [      C1] i8042: [2629] 44 <- i8042 (interrupt, 1, 12)
[   13.672069] [      C1] i8042: [2629] 6c <- i8042 (interrupt, 1, 12)
[   13.673907] [      C1] i8042: [2629] a9 <- i8042 (interrupt, 1, 12)
[   13.678686] [      C1] i8042: [2631] 40 <- i8042 (interrupt, 1, 12)
[   13.680554] [      C1] i8042: [2631] 31 <- i8042 (interrupt, 1, 12)
[   13.682384] [      C1] i8042: [2632] 3f <- i8042 (interrupt, 1, 12)
[   13.684205] [      C1] i8042: [2632] 5d <- i8042 (interrupt, 1, 12)
[   13.686007] [      C1] i8042: [2633] ac <- i8042 (interrupt, 1, 12)
[   13.690861] [      C1] i8042: [2634] 40 <- i8042 (interrupt, 1, 12)
[   13.692718] [      C1] i8042: [2634] 31 <- i8042 (interrupt, 1, 12)
[   13.694959] [      C1] i8042: [2635] 2a <- i8042 (interrupt, 1, 12)
[   13.696409] [      C1] i8042: [2635] 4f <- i8042 (interrupt, 1, 12)
[   13.698234] [      C1] i8042: [2636] ad <- i8042 (interrupt, 1, 12)
[   13.703045] [      C1] i8042: [2637] 40 <- i8042 (interrupt, 1, 12)
[   13.705180] [      C1] i8042: [2637] 31 <- i8042 (interrupt, 1, 12)
[   13.706749] [      C1] i8042: [2638] 0c <- i8042 (interrupt, 1, 12)
[   13.708592] [      C1] i8042: [2638] 46 <- i8042 (interrupt, 1, 12)
[   13.710441] [      C1] i8042: [2639] b3 <- i8042 (interrupt, 1, 12)
[   13.715346] [      C1] i8042: [2640] 40 <- i8042 (interrupt, 1, 12)
[   13.717114] [      C1] i8042: [2640] 21 <- i8042 (interrupt, 1, 12)
[   13.718954] [      C1] i8042: [2641] e4 <- i8042 (interrupt, 1, 12)
[   13.720868] [      C1] i8042: [2641] 3f <- i8042 (interrupt, 1, 12)
[   13.722769] [      C1] i8042: [2642] b4 <- i8042 (interrupt, 1, 12)
[   13.727499] [      C1] i8042: [2643] 40 <- i8042 (interrupt, 1, 12)
[   13.729277] [      C1] i8042: [2643] 21 <- i8042 (interrupt, 1, 12)
[   13.731189] [      C1] i8042: [2644] bc <- i8042 (interrupt, 1, 12)
[   13.733029] [      C1] i8042: [2644] 42 <- i8042 (interrupt, 1, 12)
[   13.735608] [      C1] i8042: [2645] b0 <- i8042 (interrupt, 1, 12)
[   13.740372] [      C1] i8042: [2646] 40 <- i8042 (interrupt, 1, 12)
[   13.741572] [      C1] i8042: [2646] 21 <- i8042 (interrupt, 1, 12)
[   13.743392] [      C1] i8042: [2647] 8d <- i8042 (interrupt, 1, 12)
[   13.745309] [      C1] i8042: [2647] 47 <- i8042 (interrupt, 1, 12)
[   13.747090] [      C1] i8042: [2648] ac <- i8042 (interrupt, 1, 12)
[   13.752000] [      C1] i8042: [2649] 40 <- i8042 (interrupt, 1, 12)
[   13.753922] [      C1] i8042: [2649] 21 <- i8042 (interrupt, 1, 12)
[   13.755634] [      C1] i8042: [2650] 60 <- i8042 (interrupt, 1, 12)
[   13.757458] [      C1] i8042: [2650] 53 <- i8042 (interrupt, 1, 12)
[   13.759299] [      C1] i8042: [2651] ab <- i8042 (interrupt, 1, 12)
[   13.764119] [      C1] i8042: [2652] 40 <- i8042 (interrupt, 1, 12)
[   13.765957] [      C1] i8042: [2653] 21 <- i8042 (interrupt, 1, 12)
[   13.767812] [      C1] i8042: [2653] 37 <- i8042 (interrupt, 1, 12)
[   13.769668] [      C1] i8042: [2653] 61 <- i8042 (interrupt, 1, 12)
[   13.771471] [      C1] i8042: [2654] b0 <- i8042 (interrupt, 1, 12)
[   13.776330] [      C1] i8042: [2655] 40 <- i8042 (interrupt, 1, 12)
[   13.778158] [      C1] i8042: [2656] 21 <- i8042 (interrupt, 1, 12)
[   13.780497] [      C1] i8042: [2656] 0f <- i8042 (interrupt, 1, 12)
[   13.781982] [      C1] i8042: [2657] 70 <- i8042 (interrupt, 1, 12)
[   13.783731] [      C1] i8042: [2657] b3 <- i8042 (interrupt, 1, 12)
[   13.788535] [      C1] i8042: [2658] 40 <- i8042 (interrupt, 1, 12)
[   13.790537] [      C1] i8042: [2659] 11 <- i8042 (interrupt, 1, 12)
[   13.792214] [      C1] i8042: [2659] f4 <- i8042 (interrupt, 1, 12)
[   13.794106] [      C1] i8042: [2660] 7c <- i8042 (interrupt, 1, 12)
[   13.796068] [      C1] i8042: [2660] ba <- i8042 (interrupt, 1, 12)
[   13.800767] [      C1] i8042: [2661] 40 <- i8042 (interrupt, 1, 12)
[   13.802580] [      C1] i8042: [2662] 11 <- i8042 (interrupt, 1, 12)
[   13.804399] [      C1] i8042: [2662] dc <- i8042 (interrupt, 1, 12)
[   13.806269] [      C1] i8042: [2663] 8b <- i8042 (interrupt, 1, 12)
[   13.808172] [      C1] i8042: [2663] bc <- i8042 (interrupt, 1, 12)
[   13.812957] [      C1] i8042: [2664] 40 <- i8042 (interrupt, 1, 12)
[   13.814770] [      C1] i8042: [2665] 11 <- i8042 (interrupt, 1, 12)
[   13.817257] [      C1] i8042: [2665] c8 <- i8042 (interrupt, 1, 12)
[   13.818446] [      C1] i8042: [2666] 97 <- i8042 (interrupt, 1, 12)
[   13.820303] [      C1] i8042: [2666] ba <- i8042 (interrupt, 1, 12)
[   13.825137] [      C1] i8042: [2667] 40 <- i8042 (interrupt, 1, 12)
[   13.826973] [      C1] i8042: [2668] 11 <- i8042 (interrupt, 1, 12)
[   13.828815] [      C1] i8042: [2668] b9 <- i8042 (interrupt, 1, 12)
[   13.830654] [      C1] i8042: [2669] a3 <- i8042 (interrupt, 1, 12)
[   13.832505] [      C1] i8042: [2669] b9 <- i8042 (interrupt, 1, 12)
[   13.837329] [      C1] i8042: [2670] 40 <- i8042 (interrupt, 1, 12)
[   13.839142] [      C1] i8042: [2671] 11 <- i8042 (interrupt, 1, 12)
[   13.841685] [      C1] i8042: [2671] b1 <- i8042 (interrupt, 1, 12)
[   13.842864] [      C1] i8042: [2672] b0 <- i8042 (interrupt, 1, 12)
[   13.844698] [      C1] i8042: [2672] b8 <- i8042 (interrupt, 1, 12)
[   13.849508] [      C1] i8042: [2673] 40 <- i8042 (interrupt, 1, 12)
[   13.851710] [      C1] i8042: [2674] 11 <- i8042 (interrupt, 1, 12)
[   13.853201] [      C1] i8042: [2674] b0 <- i8042 (interrupt, 1, 12)
[   13.855035] [      C1] i8042: [2675] ba <- i8042 (interrupt, 1, 12)
[   13.857246] [      C1] i8042: [2675] b1 <- i8042 (interrupt, 1, 12)
[   13.861733] [      C1] i8042: [2676] 40 <- i8042 (interrupt, 1, 12)
[   13.863523] [      C1] i8042: [2677] 11 <- i8042 (interrupt, 1, 12)
[   13.865366] [      C1] i8042: [2677] b3 <- i8042 (interrupt, 1, 12)
[   13.867217] [      C1] i8042: [2678] c4 <- i8042 (interrupt, 1, 12)
[   13.869071] [      C1] i8042: [2678] a3 <- i8042 (interrupt, 1, 12)
[   13.873866] [      C1] i8042: [2679] 40 <- i8042 (interrupt, 1, 12)
[   13.875691] [      C1] i8042: [2680] 11 <- i8042 (interrupt, 1, 12)
[   13.877534] [      C1] i8042: [2680] c3 <- i8042 (interrupt, 1, 12)
[   13.879371] [      C1] i8042: [2681] cb <- i8042 (interrupt, 1, 12)
[   13.881770] [      C1] i8042: [2681] 84 <- i8042 (interrupt, 1, 12)
[   13.886001] [      C1] i8042: [2683] 40 <- i8042 (interrupt, 1, 12)
[   13.887865] [      C1] i8042: [2683] 11 <- i8042 (interrupt, 1, 12)
[   13.889680] [      C1] i8042: [2683] d4 <- i8042 (interrupt, 1, 12)
[   13.891792] [      C1] i8042: [2684] d0 <- i8042 (interrupt, 1, 12)
[   13.893368] [      C1] i8042: [2684] 52 <- i8042 (interrupt, 1, 12)
[   13.898060] [      C1] i8042: [2686] 40 <- i8042 (interrupt, 1, 12)
[   13.899959] [      C1] i8042: [2686] 11 <- i8042 (interrupt, 1, 12)
[   13.901798] [      C1] i8042: [2686] e1 <- i8042 (interrupt, 1, 12)
[   13.903636] [      C1] i8042: [2687] d4 <- i8042 (interrupt, 1, 12)
[   13.905482] [      C1] i8042: [2687] 2a <- i8042 (interrupt, 1, 12)
[   13.909032] [      C1] i8042: [2688] 00 <- i8042 (interrupt, 1, 12)
[   13.919027] [      C1] i8042: [2691] 00 <- i8042 (interrupt, 1, 12)
[   13.929299] [      C1] i8042: [2693] 00 <- i8042 (interrupt, 1, 12)
[   13.939674] [      C1] i8042: [2696] 00 <- i8042 (interrupt, 1, 12)
[   13.950423] [      C1] i8042: [2699] 00 <- i8042 (interrupt, 1, 12)
[   13.961001] [      C1] i8042: [2701] 00 <- i8042 (interrupt, 1, 12)
[   13.971636] [      C1] i8042: [2704] 00 <- i8042 (interrupt, 1, 12)
[   13.982741] [      C1] i8042: [2707] 00 <- i8042 (interrupt, 1, 12)
[   13.994118] [      C1] i8042: [2710] 40 <- i8042 (interrupt, 1, 12)
[   13.995820] [      C1] i8042: [2710] 31 <- i8042 (interrupt, 1, 12)
[   13.997670] [      C1] i8042: [2710] 2f <- i8042 (interrupt, 1, 12)
[   13.999516] [      C1] i8042: [2711] e8 <- i8042 (interrupt, 1, 12)
[   14.001519] [      C1] i8042: [2711] 19 <- i8042 (interrupt, 1, 12)
[   14.006119] [      C1] i8042: [2713] 40 <- i8042 (interrupt, 1, 12)
[   14.007980] [      C1] i8042: [2713] 31 <- i8042 (interrupt, 1, 12)
[   14.009814] [      C1] i8042: [2713] 2b <- i8042 (interrupt, 1, 12)
[   14.011665] [      C1] i8042: [2714] e7 <- i8042 (interrupt, 1, 12)
[   14.014025] [      C1] i8042: [2715] 38 <- i8042 (interrupt, 1, 12)
[   14.022642] [      C1] i8042: [2717] 40 <- i8042 (interrupt, 1, 12)
[   14.024037] [      C1] i8042: [2717] 31 <- i8042 (interrupt, 1, 12)
[   14.025853] [      C1] i8042: [2717] 21 <- i8042 (interrupt, 1, 12)
[   14.027102] [      C1] i8042: [2718] de <- i8042 (interrupt, 1, 12)
[   14.027977] [      C1] i8042: [2718] 53 <- i8042 (interrupt, 1, 12)
[   14.032443] [      C1] i8042: [2719] 40 <- i8042 (interrupt, 1, 12)
[   14.033662] [      C1] i8042: [2719] 31 <- i8042 (interrupt, 1, 12)
[   14.035615] [      C1] i8042: [2720] 0f <- i8042 (interrupt, 1, 12)
[   14.037379] [      C1] i8042: [2720] d1 <- i8042 (interrupt, 1, 12)
[   14.039211] [      C1] i8042: [2721] 68 <- i8042 (interrupt, 1, 12)
[   14.044887] [      C1] i8042: [2722] 40 <- i8042 (interrupt, 1, 12)
[   14.047143] [      C1] i8042: [2723] 21 <- i8042 (interrupt, 1, 12)
[   14.048644] [      C1] i8042: [2723] f8 <- i8042 (interrupt, 1, 12)
[   14.050516] [      C1] i8042: [2724] c0 <- i8042 (interrupt, 1, 12)
[   14.052282] [      C1] i8042: [2724] 72 <- i8042 (interrupt, 1, 12)
[   14.057175] [      C1] i8042: [2725] 40 <- i8042 (interrupt, 1, 12)
[   14.058908] [      C1] i8042: [2726] 21 <- i8042 (interrupt, 1, 12)
[   14.060778] [      C1] i8042: [2726] d2 <- i8042 (interrupt, 1, 12)
[   14.062659] [      C1] i8042: [2727] af <- i8042 (interrupt, 1, 12)
[   14.064511] [      C1] i8042: [2727] 77 <- i8042 (interrupt, 1, 12)
[   14.069326] [      C1] i8042: [2728] 40 <- i8042 (interrupt, 1, 12)
[   14.071134] [      C1] i8042: [2729] 21 <- i8042 (interrupt, 1, 12)
[   14.072968] [      C1] i8042: [2729] a6 <- i8042 (interrupt, 1, 12)
[   14.074780] [      C1] i8042: [2730] 9c <- i8042 (interrupt, 1, 12)
[   14.077215] [      C1] i8042: [2730] 76 <- i8042 (interrupt, 1, 12)
[   14.082550] [      C1] i8042: [2732] 40 <- i8042 (interrupt, 1, 12)
[   14.084549] [      C1] i8042: [2732] 21 <- i8042 (interrupt, 1, 12)
[   14.086322] [      C1] i8042: [2733] 78 <- i8042 (interrupt, 1, 12)
[   14.088166] [      C1] i8042: [2733] 8d <- i8042 (interrupt, 1, 12)
[   14.089974] [      C1] i8042: [2734] 7c <- i8042 (interrupt, 1, 12)
[   14.093740] [      C1] i8042: [2734] 40 <- i8042 (interrupt, 1, 12)
[   14.095583] [      C1] i8042: [2735] 21 <- i8042 (interrupt, 1, 12)
[   14.097429] [      C1] i8042: [2735] 4c <- i8042 (interrupt, 1, 12)
[   14.099201] [      C1] i8042: [2736] 7f <- i8042 (interrupt, 1, 12)
[   14.101038] [      C1] i8042: [2736] 85 <- i8042 (interrupt, 1, 12)
[   14.105869] [      C1] i8042: [2737] 40 <- i8042 (interrupt, 1, 12)
[   14.107784] [      C1] i8042: [2738] 21 <- i8042 (interrupt, 1, 12)
[   14.109608] [      C1] i8042: [2738] 2c <- i8042 (interrupt, 1, 12)
[   14.111417] [      C1] i8042: [2739] 77 <- i8042 (interrupt, 1, 12)
[   14.113568] [      C1] i8042: [2739] 92 <- i8042 (interrupt, 1, 12)
[   14.117998] [      C1] i8042: [2741] 40 <- i8042 (interrupt, 1, 12)
[   14.119892] [      C1] i8042: [2741] 21 <- i8042 (interrupt, 1, 12)
[   14.122326] [      C1] i8042: [2742] 0e <- i8042 (interrupt, 1, 12)
[   14.123621] [      C1] i8042: [2742] 6c <- i8042 (interrupt, 1, 12)
[   14.125446] [      C1] i8042: [2742] 95 <- i8042 (interrupt, 1, 12)
[   14.130224] [      C1] i8042: [2744] 40 <- i8042 (interrupt, 1, 12)
[   14.132690] [      C1] i8042: [2744] 11 <- i8042 (interrupt, 1, 12)
[   14.133904] [      C1] i8042: [2744] f8 <- i8042 (interrupt, 1, 12)
[   14.135789] [      C1] i8042: [2745] 65 <- i8042 (interrupt, 1, 12)
[   14.137681] [      C1] i8042: [2745] 95 <- i8042 (interrupt, 1, 12)
[   14.142490] [      C1] i8042: [2747] 40 <- i8042 (interrupt, 1, 12)
[   14.144240] [      C1] i8042: [2747] 11 <- i8042 (interrupt, 1, 12)
[   14.146010] [      C1] i8042: [2748] ea <- i8042 (interrupt, 1, 12)
[   14.147945] [      C1] i8042: [2748] 60 <- i8042 (interrupt, 1, 12)
[   14.149843] [      C1] i8042: [2748] 8b <- i8042 (interrupt, 1, 12)
[   14.154578] [      C1] i8042: [2750] 40 <- i8042 (interrupt, 1, 12)
[   14.156400] [      C1] i8042: [2750] 11 <- i8042 (interrupt, 1, 12)
[   14.158230] [      C1] i8042: [2751] e2 <- i8042 (interrupt, 1, 12)
[   14.160116] [      C1] i8042: [2751] 5f <- i8042 (interrupt, 1, 12)
[   14.162071] [      C1] i8042: [2752] 6e <- i8042 (interrupt, 1, 12)
[   14.167426] [      C1] i8042: [2753] 40 <- i8042 (interrupt, 1, 12)
[   14.168578] [      C1] i8042: [2753] 11 <- i8042 (interrupt, 1, 12)
[   14.170383] [      C1] i8042: [2754] de <- i8042 (interrupt, 1, 12)
[   14.172345] [      C1] i8042: [2754] 5d <- i8042 (interrupt, 1, 12)
[   14.174038] [      C1] i8042: [2755] 46 <- i8042 (interrupt, 1, 12)
[   14.178935] [      C1] i8042: [2756] 40 <- i8042 (interrupt, 1, 12)
[   14.180678] [      C1] i8042: [2756] 11 <- i8042 (interrupt, 1, 12)
[   14.182827] [      C1] i8042: [2757] df <- i8042 (interrupt, 1, 12)
[   14.184356] [      C1] i8042: [2757] 5d <- i8042 (interrupt, 1, 12)
[   14.186166] [      C1] i8042: [2758] 24 <- i8042 (interrupt, 1, 12)
[   14.189803] [      C1] i8042: [2758] 00 <- i8042 (interrupt, 1, 12)
[   14.199719] [      C1] i8042: [2761] 00 <- i8042 (interrupt, 1, 12)
[   14.209743] [      C1] i8042: [2763] 00 <- i8042 (interrupt, 1, 12)
[   14.219735] [      C1] i8042: [2766] 00 <- i8042 (interrupt, 1, 12)
[   14.229736] [      C1] i8042: [2768] 00 <- i8042 (interrupt, 1, 12)
[   14.239741] [      C1] i8042: [2771] 00 <- i8042 (interrupt, 1, 12)
[   14.250391] [      C1] i8042: [2774] 00 <- i8042 (interrupt, 1, 12)
[   14.261150] [      C1] i8042: [2776] 00 <- i8042 (interrupt, 1, 12)
[   14.271666] [      C1] i8042: [2779] 00 <- i8042 (interrupt, 1, 12)
[   14.283017] [      C1] i8042: [2782] 40 <- i8042 (interrupt, 1, 12)
[   14.284712] [      C1] i8042: [2782] 22 <- i8042 (interrupt, 1, 12)
[   14.286570] [      C1] i8042: [2783] ca <- i8042 (interrupt, 1, 12)
[   14.288410] [      C1] i8042: [2783] 18 <- i8042 (interrupt, 1, 12)
[   14.290284] [      C1] i8042: [2784] 0c <- i8042 (interrupt, 1, 12)
[   14.295242] [      C1] i8042: [2785] 40 <- i8042 (interrupt, 1, 12)
[   14.297765] [      C1] i8042: [2785] 22 <- i8042 (interrupt, 1, 12)
[   14.298885] [      C1] i8042: [2786] ce <- i8042 (interrupt, 1, 12)
[   14.300684] [      C1] i8042: [2786] 15 <- i8042 (interrupt, 1, 12)
[   14.302533] [      C1] i8042: [2787] 24 <- i8042 (interrupt, 1, 12)
[   14.307774] [      C1] i8042: [2788] 40 <- i8042 (interrupt, 1, 12)
[   14.309360] [      C1] i8042: [2788] 22 <- i8042 (interrupt, 1, 12)
[   14.311282] [      C1] i8042: [2789] cf <- i8042 (interrupt, 1, 12)
[   14.312967] [      C1] i8042: [2789] 09 <- i8042 (interrupt, 1, 12)
[   14.314785] [      C1] i8042: [2790] 3e <- i8042 (interrupt, 1, 12)
[   14.320323] [      C1] i8042: [2791] 40 <- i8042 (interrupt, 1, 12)
[   14.323905] [      C1] i8042: [2792] 21 <- i8042 (interrupt, 1, 12)
[   14.325176] [      C1] i8042: [2792] cf <- i8042 (interrupt, 1, 12)
[   14.327026] [      C1] i8042: [2793] f4 <- i8042 (interrupt, 1, 12)
[   14.328838] [      C1] i8042: [2793] 54 <- i8042 (interrupt, 1, 12)
[   14.332927] [      C1] i8042: [2794] 40 <- i8042 (interrupt, 1, 12)
[   14.334683] [      C1] i8042: [2795] 21 <- i8042 (interrupt, 1, 12)
[   14.336583] [      C1] i8042: [2795] ca <- i8042 (interrupt, 1, 12)
[   14.338860] [      C1] i8042: [2796] d6 <- i8042 (interrupt, 1, 12)
[   14.340357] [      C1] i8042: [2796] 63 <- i8042 (interrupt, 1, 12)
[   14.345689] [      C1] i8042: [2797] 40 <- i8042 (interrupt, 1, 12)
[   14.347531] [      C1] i8042: [2798] 21 <- i8042 (interrupt, 1, 12)
[   14.349408] [      C1] i8042: [2798] be <- i8042 (interrupt, 1, 12)
[   14.351224] [      C1] i8042: [2799] b5 <- i8042 (interrupt, 1, 12)
[   14.353073] [      C1] i8042: [2799] 75 <- i8042 (interrupt, 1, 12)
[   14.357873] [      C1] i8042: [2800] 40 <- i8042 (interrupt, 1, 12)
[   14.359709] [      C1] i8042: [2801] 21 <- i8042 (interrupt, 1, 12)
[   14.361561] [      C1] i8042: [2801] ac <- i8042 (interrupt, 1, 12)
[   14.364457] [      C1] i8042: [2802] 94 <- i8042 (interrupt, 1, 12)
[   14.366394] [      C1] i8042: [2803] 85 <- i8042 (interrupt, 1, 12)
[   14.370040] [      C1] i8042: [2804] 40 <- i8042 (interrupt, 1, 12)
[   14.371929] [      C1] i8042: [2804] 21 <- i8042 (interrupt, 1, 12)
[   14.373866] [      C1] i8042: [2804] 8d <- i8042 (interrupt, 1, 12)
[   14.375616] [      C1] i8042: [2805] 74 <- i8042 (interrupt, 1, 12)
[   14.377524] [      C1] i8042: [2805] 8f <- i8042 (interrupt, 1, 12)
[   14.382288] [      C1] i8042: [2807] 40 <- i8042 (interrupt, 1, 12)
[   14.384264] [      C1] i8042: [2807] 21 <- i8042 (interrupt, 1, 12)
[   14.385907] [      C1] i8042: [2807] 6b <- i8042 (interrupt, 1, 12)
[   14.387799] [      C1] i8042: [2808] 61 <- i8042 (interrupt, 1, 12)
[   14.389649] [      C1] i8042: [2808] 97 <- i8042 (interrupt, 1, 12)
[   14.394516] [      C1] i8042: [2810] 40 <- i8042 (interrupt, 1, 12)
[   14.396320] [      C1] i8042: [2810] 21 <- i8042 (interrupt, 1, 12)
[   14.398082] [      C1] i8042: [2811] 44 <- i8042 (interrupt, 1, 12)
[   14.399936] [      C1] i8042: [2811] 54 <- i8042 (interrupt, 1, 12)
[   14.401826] [      C1] i8042: [2811] 9d <- i8042 (interrupt, 1, 12)
[   14.406671] [      C1] i8042: [2813] 40 <- i8042 (interrupt, 1, 12)
[   14.409015] [      C1] i8042: [2813] 21 <- i8042 (interrupt, 1, 12)
[   14.410498] [      C1] i8042: [2814] 1a <- i8042 (interrupt, 1, 12)
[   14.412225] [      C1] i8042: [2814] 4b <- i8042 (interrupt, 1, 12)
[   14.414079] [      C1] i8042: [2815] a1 <- i8042 (interrupt, 1, 12)
[   14.419058] [      C1] i8042: [2816] 40 <- i8042 (interrupt, 1, 12)
[   14.420718] [      C1] i8042: [2816] 11 <- i8042 (interrupt, 1, 12)
[   14.422624] [      C1] i8042: [2817] f0 <- i8042 (interrupt, 1, 12)
[   14.426057] [      C1] i8042: [2818] 47 <- i8042 (interrupt, 1, 12)
[   14.427406] [      C1] i8042: [2818] a5 <- i8042 (interrupt, 1, 12)
[   14.431048] [      C1] i8042: [2819] 40 <- i8042 (interrupt, 1, 12)
[   14.432886] [      C1] i8042: [2819] 11 <- i8042 (interrupt, 1, 12)
[   14.434692] [      C1] i8042: [2820] cf <- i8042 (interrupt, 1, 12)
[   14.436712] [      C1] i8042: [2820] 47 <- i8042 (interrupt, 1, 12)
[   14.438550] [      C1] i8042: [2821] a3 <- i8042 (interrupt, 1, 12)
[   14.443245] [      C1] i8042: [2822] 40 <- i8042 (interrupt, 1, 12)
[   14.445076] [      C1] i8042: [2822] 11 <- i8042 (interrupt, 1, 12)
[   14.446927] [      C1] i8042: [2823] b6 <- i8042 (interrupt, 1, 12)
[   14.448774] [      C1] i8042: [2823] 47 <- i8042 (interrupt, 1, 12)
[   14.451088] [      C1] i8042: [2824] 9b <- i8042 (interrupt, 1, 12)
[   14.455817] [      C1] i8042: [2825] 40 <- i8042 (interrupt, 1, 12)
[   14.457281] [      C1] i8042: [2825] 11 <- i8042 (interrupt, 1, 12)
[   14.459107] [      C1] i8042: [2826] a6 <- i8042 (interrupt, 1, 12)
[   14.461110] [      C1] i8042: [2826] 4b <- i8042 (interrupt, 1, 12)
[   14.462797] [      C1] i8042: [2827] 83 <- i8042 (interrupt, 1, 12)
[   14.467614] [      C1] i8042: [2828] 40 <- i8042 (interrupt, 1, 12)
[   14.469462] [      C1] i8042: [2828] 11 <- i8042 (interrupt, 1, 12)
[   14.471297] [      C1] i8042: [2829] 9f <- i8042 (interrupt, 1, 12)
[   14.473104] [      C1] i8042: [2829] 4e <- i8042 (interrupt, 1, 12)
[   14.474952] [      C1] i8042: [2830] 54 <- i8042 (interrupt, 1, 12)
[   14.479719] [      C1] i8042: [2831] 40 <- i8042 (interrupt, 1, 12)
[   14.481673] [      C1] i8042: [2831] 11 <- i8042 (interrupt, 1, 12)
[   14.483391] [      C1] i8042: [2832] 98 <- i8042 (interrupt, 1, 12)
[   14.485240] [      C1] i8042: [2832] 51 <- i8042 (interrupt, 1, 12)
[   14.487066] [      C1] i8042: [2833] 2d <- i8042 (interrupt, 1, 12)
[   14.491178] [      C1] i8042: [2834] 00 <- i8042 (interrupt, 1, 12)
[   14.501207] [      C1] i8042: [2836] 00 <- i8042 (interrupt, 1, 12)
[   14.511225] [      C1] i8042: [2839] 00 <- i8042 (interrupt, 1, 12)
[   14.521253] [      C1] i8042: [2841] 00 <- i8042 (interrupt, 1, 12)
[   14.530611] [      C1] i8042: [2844] 00 <- i8042 (interrupt, 1, 12)
[   14.541255] [      C1] i8042: [2846] 00 <- i8042 (interrupt, 1, 12)
[   14.551907] [      C1] i8042: [2849] 00 <- i8042 (interrupt, 1, 12)
[   14.562578] [      C1] i8042: [2852] 00 <- i8042 (interrupt, 1, 12)
[   14.573367] [      C1] i8042: [2854] 00 <- i8042 (interrupt, 1, 12)
[   14.583795] [      C1] i8042: [2857] 00 <- i8042 (interrupt, 1, 12)
[   14.594995] [      C1] i8042: [2860] 40 <- i8042 (interrupt, 1, 12)
[   14.596831] [      C1] i8042: [2860] 21 <- i8042 (interrupt, 1, 12)
[   14.598665] [      C1] i8042: [2861] 30 <- i8042 (interrupt, 1, 12)
[   14.600457] [      C1] i8042: [2861] e0 <- i8042 (interrupt, 1, 12)
[   14.602284] [      C1] i8042: [2862] 11 <- i8042 (interrupt, 1, 12)
[   14.607103] [      C1] i8042: [2863] 40 <- i8042 (interrupt, 1, 12)
[   14.609025] [      C1] i8042: [2863] 21 <- i8042 (interrupt, 1, 12)
[   14.610763] [      C1] i8042: [2864] 30 <- i8042 (interrupt, 1, 12)
[   14.612624] [      C1] i8042: [2864] dc <- i8042 (interrupt, 1, 12)
[   14.614443] [      C1] i8042: [2865] 2f <- i8042 (interrupt, 1, 12)
[   14.619686] [      C1] i8042: [2866] 40 <- i8042 (interrupt, 1, 12)
[   14.621486] [      C1] i8042: [2866] 21 <- i8042 (interrupt, 1, 12)
[   14.623573] [      C1] i8042: [2867] 2b <- i8042 (interrupt, 1, 12)
[   14.625152] [      C1] i8042: [2867] d2 <- i8042 (interrupt, 1, 12)
[   14.627072] [      C1] i8042: [2868] 4f <- i8042 (interrupt, 1, 12)
[   14.632196] [      C1] i8042: [2869] 40 <- i8042 (interrupt, 1, 12)
[   14.634049] [      C1] i8042: [2870] 21 <- i8042 (interrupt, 1, 12)
[   14.635864] [      C1] i8042: [2870] 21 <- i8042 (interrupt, 1, 12)
[   14.637725] [      C1] i8042: [2870] c5 <- i8042 (interrupt, 1, 12)
[   14.639541] [      C1] i8042: [2871] 6b <- i8042 (interrupt, 1, 12)
[   14.645637] [      C1] i8042: [2872] 40 <- i8042 (interrupt, 1, 12)
[   14.647122] [      C1] i8042: [2873] 21 <- i8042 (interrupt, 1, 12)
[   14.648868] [      C1] i8042: [2873] 16 <- i8042 (interrupt, 1, 12)
[   14.650818] [      C1] i8042: [2874] b4 <- i8042 (interrupt, 1, 12)
[   14.652550] [      C1] i8042: [2874] 81 <- i8042 (interrupt, 1, 12)
[   14.657362] [      C1] i8042: [2875] 40 <- i8042 (interrupt, 1, 12)
[   14.659226] [      C1] i8042: [2876] 21 <- i8042 (interrupt, 1, 12)
[   14.661159] [      C1] i8042: [2876] 06 <- i8042 (interrupt, 1, 12)
[   14.662894] [      C1] i8042: [2877] a5 <- i8042 (interrupt, 1, 12)
[   14.664690] [      C1] i8042: [2877] 92 <- i8042 (interrupt, 1, 12)
[   14.669487] [      C1] i8042: [2878] 40 <- i8042 (interrupt, 1, 12)
[   14.671320] [      C1] i8042: [2879] 11 <- i8042 (interrupt, 1, 12)
[   14.673234] [      C1] i8042: [2879] f7 <- i8042 (interrupt, 1, 12)
[   14.675717] [      C1] i8042: [2880] 9a <- i8042 (interrupt, 1, 12)
[   14.676854] [      C1] i8042: [2880] 9e <- i8042 (interrupt, 1, 12)
[   14.681634] [      C1] i8042: [2881] 40 <- i8042 (interrupt, 1, 12)
[   14.683473] [      C1] i8042: [2882] 11 <- i8042 (interrupt, 1, 12)
[   14.685783] [      C1] i8042: [2882] ea <- i8042 (interrupt, 1, 12)
[   14.687270] [      C1] i8042: [2883] 91 <- i8042 (interrupt, 1, 12)
[   14.689017] [      C1] i8042: [2883] a7 <- i8042 (interrupt, 1, 12)
[   14.693800] [      C1] i8042: [2884] 40 <- i8042 (interrupt, 1, 12)
[   14.695805] [      C1] i8042: [2885] 11 <- i8042 (interrupt, 1, 12)
[   14.697477] [      C1] i8042: [2885] e4 <- i8042 (interrupt, 1, 12)
[   14.699378] [      C1] i8042: [2886] 8d <- i8042 (interrupt, 1, 12)
[   14.701071] [      C1] i8042: [2886] af <- i8042 (interrupt, 1, 12)
[   14.705999] [      C1] i8042: [2888] 40 <- i8042 (interrupt, 1, 12)
[   14.707790] [      C1] i8042: [2888] 11 <- i8042 (interrupt, 1, 12)
[   14.709635] [      C1] i8042: [2888] e0 <- i8042 (interrupt, 1, 12)
[   14.711472] [      C1] i8042: [2889] 8b <- i8042 (interrupt, 1, 12)
[   14.713345] [      C1] i8042: [2889] b4 <- i8042 (interrupt, 1, 12)
[   14.718150] [      C1] i8042: [2891] 40 <- i8042 (interrupt, 1, 12)
[   14.720011] [      C1] i8042: [2891] 11 <- i8042 (interrupt, 1, 12)
[   14.721830] [      C1] i8042: [2891] df <- i8042 (interrupt, 1, 12)
[   14.723665] [      C1] i8042: [2892] 8b <- i8042 (interrupt, 1, 12)
[   14.725890] [      C1] i8042: [2892] b7 <- i8042 (interrupt, 1, 12)
[   14.730809] [      C1] i8042: [2894] 40 <- i8042 (interrupt, 1, 12)
[   14.732236] [      C1] i8042: [2894] 11 <- i8042 (interrupt, 1, 12)
[   14.733998] [      C1] i8042: [2895] df <- i8042 (interrupt, 1, 12)
[   14.735913] [      C1] i8042: [2895] 8b <- i8042 (interrupt, 1, 12)
[   14.737667] [      C1] i8042: [2895] b7 <- i8042 (interrupt, 1, 12)
[   14.742491] [      C1] i8042: [2897] 40 <- i8042 (interrupt, 1, 12)
[   14.744349] [      C1] i8042: [2897] 11 <- i8042 (interrupt, 1, 12)
[   14.746170] [      C1] i8042: [2898] df <- i8042 (interrupt, 1, 12)
[   14.748012] [      C1] i8042: [2898] 8d <- i8042 (interrupt, 1, 12)
[   14.749842] [      C1] i8042: [2898] b6 <- i8042 (interrupt, 1, 12)
[   14.754638] [      C1] i8042: [2900] 40 <- i8042 (interrupt, 1, 12)
[   14.756545] [      C1] i8042: [2900] 11 <- i8042 (interrupt, 1, 12)
[   14.758300] [      C1] i8042: [2901] e5 <- i8042 (interrupt, 1, 12)
[   14.760194] [      C1] i8042: [2901] 93 <- i8042 (interrupt, 1, 12)
[   14.761998] [      C1] i8042: [2902] b2 <- i8042 (interrupt, 1, 12)
[   14.766835] [      C1] i8042: [2903] 40 <- i8042 (interrupt, 1, 12)
[   14.768670] [      C1] i8042: [2903] 11 <- i8042 (interrupt, 1, 12)
[   14.770750] [      C1] i8042: [2904] f1 <- i8042 (interrupt, 1, 12)
[   14.772371] [      C1] i8042: [2904] 9e <- i8042 (interrupt, 1, 12)
[   14.774200] [      C1] i8042: [2905] ab <- i8042 (interrupt, 1, 12)
[   14.779016] [      C1] i8042: [2906] 40 <- i8042 (interrupt, 1, 12)
[   14.780961] [      C1] i8042: [2906] 11 <- i8042 (interrupt, 1, 12)
[   14.782699] [      C1] i8042: [2907] fe <- i8042 (interrupt, 1, 12)
[   14.784560] [      C1] i8042: [2907] ab <- i8042 (interrupt, 1, 12)
[   14.786408] [      C1] i8042: [2908] a1 <- i8042 (interrupt, 1, 12)
[   14.791399] [      C1] i8042: [2909] 40 <- i8042 (interrupt, 1, 12)
[   14.792991] [      C1] i8042: [2909] 21 <- i8042 (interrupt, 1, 12)
[   14.794866] [      C1] i8042: [2910] 10 <- i8042 (interrupt, 1, 12)
[   14.796707] [      C1] i8042: [2910] b8 <- i8042 (interrupt, 1, 12)
[   14.798591] [      C1] i8042: [2911] 97 <- i8042 (interrupt, 1, 12)
[   14.803358] [      C1] i8042: [2912] 40 <- i8042 (interrupt, 1, 12)
[   14.805211] [      C1] i8042: [2912] 21 <- i8042 (interrupt, 1, 12)
[   14.807030] [      C1] i8042: [2913] 21 <- i8042 (interrupt, 1, 12)
[   14.808882] [      C1] i8042: [2913] c4 <- i8042 (interrupt, 1, 12)
[   14.810948] [      C1] i8042: [2914] 92 <- i8042 (interrupt, 1, 12)
[   14.816165] [      C1] i8042: [2915] 40 <- i8042 (interrupt, 1, 12)
[   14.817390] [      C1] i8042: [2915] 21 <- i8042 (interrupt, 1, 12)
[   14.819230] [      C1] i8042: [2916] 30 <- i8042 (interrupt, 1, 12)
[   14.821102] [      C1] i8042: [2916] cd <- i8042 (interrupt, 1, 12)
[   14.822899] [      C1] i8042: [2917] 8f <- i8042 (interrupt, 1, 12)
[   14.827746] [      C1] i8042: [2918] 40 <- i8042 (interrupt, 1, 12)
[   14.829676] [      C1] i8042: [2918] 21 <- i8042 (interrupt, 1, 12)
[   14.832362] [      C1] i8042: [2919] 3b <- i8042 (interrupt, 1, 12)
[   14.833231] [      C1] i8042: [2919] d3 <- i8042 (interrupt, 1, 12)
[   14.835071] [      C1] i8042: [2920] 8f <- i8042 (interrupt, 1, 12)
[   14.839862] [      C1] i8042: [2921] 40 <- i8042 (interrupt, 1, 12)
[   14.842573] [      C1] i8042: [2922] 21 <- i8042 (interrupt, 1, 12)
[   14.843564] [      C1] i8042: [2922] 42 <- i8042 (interrupt, 1, 12)
[   14.845410] [      C1] i8042: [2922] d6 <- i8042 (interrupt, 1, 12)
[   14.847256] [      C1] i8042: [2923] 90 <- i8042 (interrupt, 1, 12)
[   14.852466] [      C1] i8042: [2924] 40 <- i8042 (interrupt, 1, 12)
[   14.853857] [      C1] i8042: [2924] 21 <- i8042 (interrupt, 1, 12)
[   14.855727] [      C1] i8042: [2925] 47 <- i8042 (interrupt, 1, 12)
[   14.857549] [      C1] i8042: [2925] d8 <- i8042 (interrupt, 1, 12)
[   14.859382] [      C1] i8042: [2926] 92 <- i8042 (interrupt, 1, 12)
[   14.864146] [      C1] i8042: [2927] 40 <- i8042 (interrupt, 1, 12)
[   14.865995] [      C1] i8042: [2928] 21 <- i8042 (interrupt, 1, 12)
[   14.867830] [      C1] i8042: [2928] 4a <- i8042 (interrupt, 1, 12)
[   14.869811] [      C1] i8042: [2928] d9 <- i8042 (interrupt, 1, 12)
[   14.871519] [      C1] i8042: [2929] 94 <- i8042 (interrupt, 1, 12)
[   14.876279] [      C1] i8042: [2930] 40 <- i8042 (interrupt, 1, 12)
[   14.878054] [      C1] i8042: [2931] 21 <- i8042 (interrupt, 1, 12)
[   14.879948] [      C1] i8042: [2931] 4c <- i8042 (interrupt, 1, 12)
[   14.882250] [      C1] i8042: [2932] d9 <- i8042 (interrupt, 1, 12)
[   14.883699] [      C1] i8042: [2932] 96 <- i8042 (interrupt, 1, 12)
[   14.888436] [      C1] i8042: [2933] 40 <- i8042 (interrupt, 1, 12)
[   14.890167] [      C1] i8042: [2934] 21 <- i8042 (interrupt, 1, 12)
[   14.892719] [      C1] i8042: [2934] 4c <- i8042 (interrupt, 1, 12)
[   14.893985] [      C1] i8042: [2935] da <- i8042 (interrupt, 1, 12)
[   14.895889] [      C1] i8042: [2935] 98 <- i8042 (interrupt, 1, 12)
[   14.900557] [      C1] i8042: [2936] 40 <- i8042 (interrupt, 1, 12)
[   14.902603] [      C1] i8042: [2937] 21 <- i8042 (interrupt, 1, 12)
[   14.904213] [      C1] i8042: [2937] 4d <- i8042 (interrupt, 1, 12)
[   14.905983] [      C1] i8042: [2938] da <- i8042 (interrupt, 1, 12)
[   14.907945] [      C1] i8042: [2938] 99 <- i8042 (interrupt, 1, 12)
[   14.912770] [      C1] i8042: [2939] 40 <- i8042 (interrupt, 1, 12)
[   14.914532] [      C1] i8042: [2940] 21 <- i8042 (interrupt, 1, 12)
[   14.916368] [      C1] i8042: [2940] 4d <- i8042 (interrupt, 1, 12)
[   14.918169] [      C1] i8042: [2941] da <- i8042 (interrupt, 1, 12)
[   14.920054] [      C1] i8042: [2941] 9a <- i8042 (interrupt, 1, 12)
[   14.924957] [      C1] i8042: [2942] 40 <- i8042 (interrupt, 1, 12)
[   14.926680] [      C1] i8042: [2943] 21 <- i8042 (interrupt, 1, 12)
[   14.928479] [      C1] i8042: [2943] 4d <- i8042 (interrupt, 1, 12)
[   14.930338] [      C1] i8042: [2944] da <- i8042 (interrupt, 1, 12)
[   14.934643] [      C1] i8042: [2945] 9a <- i8042 (interrupt, 1, 12)
[   14.937026] [      C1] i8042: [2945] 40 <- i8042 (interrupt, 1, 12)
[   14.939534] [      C1] i8042: [2946] 21 <- i8042 (interrupt, 1, 12)
[   14.940645] [      C1] i8042: [2946] 4d <- i8042 (interrupt, 1, 12)
[   14.942464] [      C1] i8042: [2947] da <- i8042 (interrupt, 1, 12)
[   14.944947] [      C1] i8042: [2947] 9a <- i8042 (interrupt, 1, 12)
[   14.949533] [      C1] i8042: [2948] 40 <- i8042 (interrupt, 1, 12)
[   14.951042] [      C1] i8042: [2949] 21 <- i8042 (interrupt, 1, 12)
[   14.952788] [      C1] i8042: [2949] 4d <- i8042 (interrupt, 1, 12)
[   14.954776] [      C1] i8042: [2950] da <- i8042 (interrupt, 1, 12)
[   14.956451] [      C1] i8042: [2950] 9b <- i8042 (interrupt, 1, 12)
[   14.961242] [      C1] i8042: [2951] 40 <- i8042 (interrupt, 1, 12)
[   14.963130] [      C1] i8042: [2952] 21 <- i8042 (interrupt, 1, 12)
[   14.964972] [      C1] i8042: [2952] 4d <- i8042 (interrupt, 1, 12)
[   14.966766] [      C1] i8042: [2953] da <- i8042 (interrupt, 1, 12)
[   14.968593] [      C1] i8042: [2953] 9d <- i8042 (interrupt, 1, 12)
[   14.973367] [      C1] i8042: [2954] 40 <- i8042 (interrupt, 1, 12)
[   14.975243] [      C1] i8042: [2955] 21 <- i8042 (interrupt, 1, 12)
[   14.977169] [      C1] i8042: [2955] 4d <- i8042 (interrupt, 1, 12)
[   14.978888] [      C1] i8042: [2956] d7 <- i8042 (interrupt, 1, 12)
[   14.980715] [      C1] i8042: [2956] 9f <- i8042 (interrupt, 1, 12)
[   14.985489] [      C1] i8042: [2957] 40 <- i8042 (interrupt, 1, 12)
[   14.987315] [      C1] i8042: [2958] 21 <- i8042 (interrupt, 1, 12)
[   14.989746] [      C1] i8042: [2958] 4d <- i8042 (interrupt, 1, 12)
[   14.991079] [      C1] i8042: [2959] d4 <- i8042 (interrupt, 1, 12)
[   14.992852] [      C1] i8042: [2959] a1 <- i8042 (interrupt, 1, 12)
[   14.997611] [      C1] i8042: [2960] 40 <- i8042 (interrupt, 1, 12)
[   14.999769] [      C1] i8042: [2961] 21 <- i8042 (interrupt, 1, 12)
[   15.001344] [      C1] i8042: [2961] 4d <- i8042 (interrupt, 1, 12)
[   15.003259] [      C1] i8042: [2962] d0 <- i8042 (interrupt, 1, 12)
[   15.005026] [      C1] i8042: [2962] a3 <- i8042 (interrupt, 1, 12)
[   15.009824] [      C1] i8042: [2963] 40 <- i8042 (interrupt, 1, 12)
[   15.011595] [      C1] i8042: [2964] 21 <- i8042 (interrupt, 1, 12)
[   15.013435] [      C1] i8042: [2964] 4d <- i8042 (interrupt, 1, 12)
[   15.015321] [      C1] i8042: [2965] cb <- i8042 (interrupt, 1, 12)
[   15.017169] [      C1] i8042: [2965] a5 <- i8042 (interrupt, 1, 12)
[   15.021905] [      C1] i8042: [2966] 40 <- i8042 (interrupt, 1, 12)
[   15.023736] [      C1] i8042: [2967] 21 <- i8042 (interrupt, 1, 12)
[   15.025569] [      C1] i8042: [2967] 4d <- i8042 (interrupt, 1, 12)
[   15.027431] [      C1] i8042: [2968] c6 <- i8042 (interrupt, 1, 12)
[   15.029876] [      C1] i8042: [2968] a7 <- i8042 (interrupt, 1, 12)
[   15.033988] [      C1] i8042: [2970] 40 <- i8042 (interrupt, 1, 12)
[   15.038954] [      C1] i8042: [2971] 21 <- i8042 (interrupt, 1, 12)
[   15.040005] [      C1] i8042: [2971] 4e <- i8042 (interrupt, 1, 12)
[   15.041839] [      C1] i8042: [2971] c2 <- i8042 (interrupt, 1, 12)
[   15.043021] [      C1] i8042: [2972] a7 <- i8042 (interrupt, 1, 12)
[   15.046084] [      C1] i8042: [2973] 40 <- i8042 (interrupt, 1, 12)
[   15.048395] [      C1] i8042: [2973] 21 <- i8042 (interrupt, 1, 12)
[   15.049828] [      C1] i8042: [2973] 4e <- i8042 (interrupt, 1, 12)
[   15.051648] [      C1] i8042: [2974] c1 <- i8042 (interrupt, 1, 12)
[   15.053590] [      C1] i8042: [2974] a7 <- i8042 (interrupt, 1, 12)
[   15.058405] [      C1] i8042: [2976] 40 <- i8042 (interrupt, 1, 12)
[   15.060104] [      C1] i8042: [2976] 21 <- i8042 (interrupt, 1, 12)
[   15.061938] [      C1] i8042: [2976] 4e <- i8042 (interrupt, 1, 12)
[   15.063780] [      C1] i8042: [2977] c0 <- i8042 (interrupt, 1, 12)
[   15.065690] [      C1] i8042: [2977] a6 <- i8042 (interrupt, 1, 12)
[   15.070440] [      C1] i8042: [2979] 40 <- i8042 (interrupt, 1, 12)
[   15.072247] [      C1] i8042: [2979] 21 <- i8042 (interrupt, 1, 12)
[   15.074006] [      C1] i8042: [2980] 4e <- i8042 (interrupt, 1, 12)
[   15.075923] [      C1] i8042: [2980] c0 <- i8042 (interrupt, 1, 12)
[   15.077850] [      C1] i8042: [2980] a6 <- i8042 (interrupt, 1, 12)
[   15.083164] [      C1] i8042: [2982] 40 <- i8042 (interrupt, 1, 12)
[   15.084384] [      C1] i8042: [2982] 21 <- i8042 (interrupt, 1, 12)
[   15.086188] [      C1] i8042: [2983] 4e <- i8042 (interrupt, 1, 12)
[   15.088116] [      C1] i8042: [2983] c0 <- i8042 (interrupt, 1, 12)
[   15.089889] [      C1] i8042: [2983] a6 <- i8042 (interrupt, 1, 12)
[   15.094690] [      C1] i8042: [2985] 40 <- i8042 (interrupt, 1, 12)
[   15.096560] [      C1] i8042: [2985] 21 <- i8042 (interrupt, 1, 12)
[   15.098530] [      C1] i8042: [2986] 4e <- i8042 (interrupt, 1, 12)
[   15.100147] [      C1] i8042: [2986] c0 <- i8042 (interrupt, 1, 12)
[   15.101972] [      C1] i8042: [2987] a6 <- i8042 (interrupt, 1, 12)
[   15.106758] [      C1] i8042: [2988] 40 <- i8042 (interrupt, 1, 12)
[   15.108601] [      C1] i8042: [2988] 21 <- i8042 (interrupt, 1, 12)
[   15.110439] [      C1] i8042: [2989] 4e <- i8042 (interrupt, 1, 12)
[   15.112257] [      C1] i8042: [2989] c0 <- i8042 (interrupt, 1, 12)
[   15.114033] [      C1] i8042: [2990] a6 <- i8042 (interrupt, 1, 12)
[   15.118868] [      C1] i8042: [2991] 40 <- i8042 (interrupt, 1, 12)
[   15.120771] [      C1] i8042: [2991] 21 <- i8042 (interrupt, 1, 12)
[   15.123265] [      C1] i8042: [2992] 4e <- i8042 (interrupt, 1, 12)
[   15.124414] [      C1] i8042: [2992] c0 <- i8042 (interrupt, 1, 12)
[   15.126228] [      C1] i8042: [2993] a6 <- i8042 (interrupt, 1, 12)
[   15.131010] [      C1] i8042: [2994] 40 <- i8042 (interrupt, 1, 12)
[   15.133348] [      C1] i8042: [2994] 21 <- i8042 (interrupt, 1, 12)
[   15.134811] [      C1] i8042: [2995] 4e <- i8042 (interrupt, 1, 12)
[   15.136542] [      C1] i8042: [2995] c0 <- i8042 (interrupt, 1, 12)
[   15.138438] [      C1] i8042: [2996] a5 <- i8042 (interrupt, 1, 12)
[   15.143393] [      C1] i8042: [2997] 40 <- i8042 (interrupt, 1, 12)
[   15.144979] [      C1] i8042: [2997] 21 <- i8042 (interrupt, 1, 12)
[   15.146883] [      C1] i8042: [2998] 51 <- i8042 (interrupt, 1, 12)
[   15.148719] [      C1] i8042: [2998] c0 <- i8042 (interrupt, 1, 12)
[   15.150518] [      C1] i8042: [2999] a5 <- i8042 (interrupt, 1, 12)
[   15.155264] [      C1] i8042: [3000] 40 <- i8042 (interrupt, 1, 12)
[   15.157103] [      C1] i8042: [3000] 21 <- i8042 (interrupt, 1, 12)
[   15.158943] [      C1] i8042: [3001] 54 <- i8042 (interrupt, 1, 12)
[   15.160919] [      C1] i8042: [3001] c0 <- i8042 (interrupt, 1, 12)
[   15.162650] [      C1] i8042: [3002] a5 <- i8042 (interrupt, 1, 12)
[   15.167414] [      C1] i8042: [3003] 40 <- i8042 (interrupt, 1, 12)
[   15.169253] [      C1] i8042: [3003] 21 <- i8042 (interrupt, 1, 12)
[   15.171086] [      C1] i8042: [3004] 59 <- i8042 (interrupt, 1, 12)
[   15.173494] [      C1] i8042: [3004] c3 <- i8042 (interrupt, 1, 12)
[   15.174811] [      C1] i8042: [3005] a4 <- i8042 (interrupt, 1, 12)
[   15.179586] [      C1] i8042: [3006] 40 <- i8042 (interrupt, 1, 12)
[   15.181399] [      C1] i8042: [3006] 21 <- i8042 (interrupt, 1, 12)
[   15.183516] [      C1] i8042: [3007] 5e <- i8042 (interrupt, 1, 12)
[   15.185094] [      C1] i8042: [3007] c6 <- i8042 (interrupt, 1, 12)
[   15.187014] [      C1] i8042: [3008] a2 <- i8042 (interrupt, 1, 12)
[   15.191741] [      C1] i8042: [3009] 40 <- i8042 (interrupt, 1, 12)
[   15.193563] [      C1] i8042: [3009] 21 <- i8042 (interrupt, 1, 12)
[   15.195389] [      C1] i8042: [3010] 64 <- i8042 (interrupt, 1, 12)
[   15.197224] [      C1] i8042: [3010] c8 <- i8042 (interrupt, 1, 12)
[   15.199204] [      C1] i8042: [3011] a1 <- i8042 (interrupt, 1, 12)
[   15.203935] [      C1] i8042: [3012] 40 <- i8042 (interrupt, 1, 12)
[   15.205734] [      C1] i8042: [3012] 21 <- i8042 (interrupt, 1, 12)
[   15.207552] [      C1] i8042: [3013] 68 <- i8042 (interrupt, 1, 12)
[   15.209396] [      C1] i8042: [3013] cb <- i8042 (interrupt, 1, 12)
[   15.211224] [      C1] i8042: [3014] a1 <- i8042 (interrupt, 1, 12)
[   15.216113] [      C1] i8042: [3015] 40 <- i8042 (interrupt, 1, 12)
[   15.218314] [      C1] i8042: [3016] 21 <- i8042 (interrupt, 1, 12)
[   15.219735] [      C1] i8042: [3016] 6c <- i8042 (interrupt, 1, 12)
[   15.221550] [      C1] i8042: [3016] cc <- i8042 (interrupt, 1, 12)
[   15.223635] [      C1] i8042: [3017] a2 <- i8042 (interrupt, 1, 12)
[   15.228545] [      C1] i8042: [3018] 40 <- i8042 (interrupt, 1, 12)
[   15.230064] [      C1] i8042: [3019] 21 <- i8042 (interrupt, 1, 12)
[   15.231891] [      C1] i8042: [3019] 6f <- i8042 (interrupt, 1, 12)
[   15.233717] [      C1] i8042: [3019] cd <- i8042 (interrupt, 1, 12)
[   15.235547] [      C1] i8042: [3020] a1 <- i8042 (interrupt, 1, 12)
[   15.240334] [      C1] i8042: [3021] 40 <- i8042 (interrupt, 1, 12)
[   15.242146] [      C1] i8042: [3022] 21 <- i8042 (interrupt, 1, 12)
[   15.244100] [      C1] i8042: [3022] 71 <- i8042 (interrupt, 1, 12)
[   15.245863] [      C1] i8042: [3022] cd <- i8042 (interrupt, 1, 12)
[   15.247680] [      C1] i8042: [3023] 9f <- i8042 (interrupt, 1, 12)
[   15.252479] [      C1] i8042: [3024] 40 <- i8042 (interrupt, 1, 12)
[   15.254359] [      C1] i8042: [3025] 21 <- i8042 (interrupt, 1, 12)
[   15.256188] [      C1] i8042: [3025] 72 <- i8042 (interrupt, 1, 12)
[   15.257989] [      C1] i8042: [3026] ce <- i8042 (interrupt, 1, 12)
[   15.259859] [      C1] i8042: [3026] 9e <- i8042 (interrupt, 1, 12)
[   15.264642] [      C1] i8042: [3027] 40 <- i8042 (interrupt, 1, 12)
[   15.266476] [      C1] i8042: [3028] 21 <- i8042 (interrupt, 1, 12)
[   15.268532] [      C1] i8042: [3028] 73 <- i8042 (interrupt, 1, 12)
[   15.270232] [      C1] i8042: [3029] ce <- i8042 (interrupt, 1, 12)
[   15.272036] [      C1] i8042: [3029] 9e <- i8042 (interrupt, 1, 12)
[   15.276817] [      C1] i8042: [3030] 40 <- i8042 (interrupt, 1, 12)
[   15.278693] [      C1] i8042: [3031] 21 <- i8042 (interrupt, 1, 12)
[   15.280496] [      C1] i8042: [3031] 73 <- i8042 (interrupt, 1, 12)
[   15.282287] [      C1] i8042: [3032] ce <- i8042 (interrupt, 1, 12)
[   15.284225] [      C1] i8042: [3032] 9e <- i8042 (interrupt, 1, 12)
[   15.288987] [      C1] i8042: [3033] 40 <- i8042 (interrupt, 1, 12)
[   15.290778] [      C1] i8042: [3034] 21 <- i8042 (interrupt, 1, 12)
[   15.292652] [      C1] i8042: [3034] 73 <- i8042 (interrupt, 1, 12)
[   15.294907] [      C1] i8042: [3035] ce <- i8042 (interrupt, 1, 12)
[   15.296403] [      C1] i8042: [3035] 9e <- i8042 (interrupt, 1, 12)
[   15.301128] [      C1] i8042: [3036] 40 <- i8042 (interrupt, 1, 12)
[   15.302970] [      C1] i8042: [3037] 21 <- i8042 (interrupt, 1, 12)
[   15.304980] [      C1] i8042: [3037] 73 <- i8042 (interrupt, 1, 12)
[   15.306651] [      C1] i8042: [3038] ce <- i8042 (interrupt, 1, 12)
[   15.308560] [      C1] i8042: [3038] 9e <- i8042 (interrupt, 1, 12)
[   15.313348] [      C1] i8042: [3039] 40 <- i8042 (interrupt, 1, 12)
[   15.315169] [      C1] i8042: [3040] 21 <- i8042 (interrupt, 1, 12)
[   15.316944] [      C1] i8042: [3040] 73 <- i8042 (interrupt, 1, 12)
[   15.318776] [      C1] i8042: [3041] ce <- i8042 (interrupt, 1, 12)
[   15.320645] [      C1] i8042: [3041] 9e <- i8042 (interrupt, 1, 12)
[   15.325567] [      C1] i8042: [3042] 40 <- i8042 (interrupt, 1, 12)
[   15.327281] [      C1] i8042: [3043] 21 <- i8042 (interrupt, 1, 12)
[   15.329102] [      C1] i8042: [3043] 74 <- i8042 (interrupt, 1, 12)
[   15.330929] [      C1] i8042: [3044] cf <- i8042 (interrupt, 1, 12)
[   15.332773] [      C1] i8042: [3044] 9d <- i8042 (interrupt, 1, 12)
[   15.337574] [      C1] i8042: [3045] 40 <- i8042 (interrupt, 1, 12)
[   15.341141] [      C1] i8042: [3046] 21 <- i8042 (interrupt, 1, 12)
[   15.342546] [      C1] i8042: [3047] 74 <- i8042 (interrupt, 1, 12)
[   15.344307] [      C1] i8042: [3047] d0 <- i8042 (interrupt, 1, 12)
[   15.346090] [      C1] i8042: [3048] 94 <- i8042 (interrupt, 1, 12)
[   15.349764] [      C1] i8042: [3048] 40 <- i8042 (interrupt, 1, 12)
[   15.351724] [      C1] i8042: [3049] 21 <- i8042 (interrupt, 1, 12)
[   15.353487] [      C1] i8042: [3049] 74 <- i8042 (interrupt, 1, 12)
[   15.355296] [      C1] i8042: [3050] d2 <- i8042 (interrupt, 1, 12)
[   15.357123] [      C1] i8042: [3050] 72 <- i8042 (interrupt, 1, 12)
[   15.361887] [      C1] i8042: [3051] 40 <- i8042 (interrupt, 1, 12)
[   15.363756] [      C1] i8042: [3052] 21 <- i8042 (interrupt, 1, 12)
[   15.366171] [      C1] i8042: [3053] 71 <- i8042 (interrupt, 1, 12)
[   15.367407] [      C1] i8042: [3053] d4 <- i8042 (interrupt, 1, 12)
[   15.369246] [      C1] i8042: [3053] 46 <- i8042 (interrupt, 1, 12)
[   15.373994] [      C1] i8042: [3055] 40 <- i8042 (interrupt, 1, 12)
[   15.376271] [      C1] i8042: [3055] 21 <- i8042 (interrupt, 1, 12)
[   15.377766] [      C1] i8042: [3055] 6c <- i8042 (interrupt, 1, 12)
[   15.379499] [      C1] i8042: [3056] d4 <- i8042 (interrupt, 1, 12)
[   15.381877] [      C1] i8042: [3056] 24 <- i8042 (interrupt, 1, 12)
[   15.384890] [      C1] i8042: [3057] 00 <- i8042 (interrupt, 1, 12)
[   15.395500] [      C1] i8042: [3060] 00 <- i8042 (interrupt, 1, 12)
[   15.404909] [      C1] i8042: [3062] 00 <- i8042 (interrupt, 1, 12)
[   15.414858] [      C1] i8042: [3065] 00 <- i8042 (interrupt, 1, 12)
[   15.425530] [      C1] i8042: [3067] 00 <- i8042 (interrupt, 1, 12)
[   15.436339] [      C1] i8042: [3070] 00 <- i8042 (interrupt, 1, 12)
[   15.447414] [      C1] i8042: [3073] 00 <- i8042 (interrupt, 1, 12)
[   15.457613] [      C1] i8042: [3075] 00 <- i8042 (interrupt, 1, 12)
[   15.468096] [      C1] i8042: [3078] 00 <- i8042 (interrupt, 1, 12)
[   15.478811] [      C1] i8042: [3081] 00 <- i8042 (interrupt, 1, 12)
[   15.489392] [      C1] i8042: [3083] 00 <- i8042 (interrupt, 1, 12)
[   15.500076] [      C1] i8042: [3086] 00 <- i8042 (interrupt, 1, 12)
[   15.510701] [      C1] i8042: [3089] 00 <- i8042 (interrupt, 1, 12)
[   15.521338] [      C1] i8042: [3091] 00 <- i8042 (interrupt, 1, 12)
[   15.532508] [      C1] i8042: [3094] 00 <- i8042 (interrupt, 1, 12)
[   15.545442] [      C1] i8042: [3097] 00 <- i8042 (interrupt, 1, 12)
[   15.553306] [      C1] i8042: [3099] 00 <- i8042 (interrupt, 1, 12)
[   15.564752] [      C1] i8042: [3102] 00 <- i8042 (interrupt, 1, 12)
[   15.574646] [      C1] i8042: [3105] 00 <- i8042 (interrupt, 1, 12)
[   15.585300] [      C1] i8042: [3107] 00 <- i8042 (interrupt, 1, 12)
[   15.595971] [      C1] i8042: [3110] 00 <- i8042 (interrupt, 1, 12)
[   15.606616] [      C1] i8042: [3113] 00 <- i8042 (interrupt, 1, 12)
[   15.617287] [      C1] i8042: [3115] 00 <- i8042 (interrupt, 1, 12)
[   15.627966] [      C1] i8042: [3118] 00 <- i8042 (interrupt, 1, 12)
[   15.638602] [      C1] i8042: [3121] 00 <- i8042 (interrupt, 1, 12)
[   15.649374] [      C1] i8042: [3123] 00 <- i8042 (interrupt, 1, 12)
[   15.659910] [      C1] i8042: [3126] 00 <- i8042 (interrupt, 1, 12)
[   15.670589] [      C1] i8042: [3129] 00 <- i8042 (interrupt, 1, 12)
[   15.681918] [      C1] i8042: [3131] 00 <- i8042 (interrupt, 1, 12)
[   15.691992] [      C1] i8042: [3134] 00 <- i8042 (interrupt, 1, 12)
[   15.702610] [      C1] i8042: [3137] 00 <- i8042 (interrupt, 1, 12)
[   15.713225] [      C1] i8042: [3139] 00 <- i8042 (interrupt, 1, 12)
[   15.723858] [      C1] i8042: [3142] 00 <- i8042 (interrupt, 1, 12)
[   15.734591] [      C1] i8042: [3145] 00 <- i8042 (interrupt, 1, 12)
[   15.745205] [      C1] i8042: [3147] 00 <- i8042 (interrupt, 1, 12)
[   15.755835] [      C1] i8042: [3150] 00 <- i8042 (interrupt, 1, 12)
[   15.767331] [      C1] i8042: [3153] 00 <- i8042 (interrupt, 1, 12)
[   15.777169] [      C1] i8042: [3155] 00 <- i8042 (interrupt, 1, 12)
[   15.787796] [      C1] i8042: [3158] 00 <- i8042 (interrupt, 1, 12)
[   15.798467] [      C1] i8042: [3161] 00 <- i8042 (interrupt, 1, 12)
[   15.809119] [      C1] i8042: [3163] 00 <- i8042 (interrupt, 1, 12)
[   15.819825] [      C1] i8042: [3166] 00 <- i8042 (interrupt, 1, 12)
[   15.830427] [      C1] i8042: [3169] 00 <- i8042 (interrupt, 1, 12)
[   15.841059] [      C1] i8042: [3171] 00 <- i8042 (interrupt, 1, 12)
[   15.852365] [      C1] i8042: [3174] 00 <- i8042 (interrupt, 1, 12)
[   15.862436] [      C1] i8042: [3177] 00 <- i8042 (interrupt, 1, 12)
[   15.873056] [      C1] i8042: [3179] 00 <- i8042 (interrupt, 1, 12)
[   15.883703] [      C1] i8042: [3182] 00 <- i8042 (interrupt, 1, 12)
[   15.894342] [      C1] i8042: [3185] 00 <- i8042 (interrupt, 1, 12)
[   15.905064] [      C1] i8042: [3187] 00 <- i8042 (interrupt, 1, 12)
[   15.915664] [      C1] i8042: [3190] 00 <- i8042 (interrupt, 1, 12)
[   15.926287] [      C1] i8042: [3193] 00 <- i8042 (interrupt, 1, 12)
[   15.937599] [      C1] i8042: [3195] 00 <- i8042 (interrupt, 1, 12)
[   15.949828] [      C1] i8042: [3198] 01 <- i8042 (interrupt, 1, 12)
[   15.958287] [      C1] i8042: [3201] 01 <- i8042 (interrupt, 1, 12)
[   15.968947] [      C1] i8042: [3203] 01 <- i8042 (interrupt, 1, 12)
[   15.979671] [      C1] i8042: [3206] 01 <- i8042 (interrupt, 1, 12)
[   15.990301] [      C1] i8042: [3209] 01 <- i8042 (interrupt, 1, 12)
[   16.000870] [      C1] i8042: [3211] 01 <- i8042 (interrupt, 1, 12)
[   16.011508] [      C1] i8042: [3214] 01 <- i8042 (interrupt, 1, 12)
[   16.022217] [      C1] i8042: [3217] 01 <- i8042 (interrupt, 1, 12)
[   16.032787] [      C1] i8042: [3219] 01 <- i8042 (interrupt, 1, 12)
[   16.043515] [      C1] i8042: [3222] 01 <- i8042 (interrupt, 1, 12)
[   16.054177] [      C1] i8042: [3225] 01 <- i8042 (interrupt, 1, 12)
[   16.064842] [      C1] i8042: [3227] 01 <- i8042 (interrupt, 1, 12)
[   16.075496] [      C1] i8042: [3230] 00 <- i8042 (interrupt, 1, 12)
[   16.086157] [      C1] i8042: [3233] 00 <- i8042 (interrupt, 1, 12)
[   16.096786] [      C1] i8042: [3235] 00 <- i8042 (interrupt, 1, 12)
[   16.108095] [      C1] i8042: [3238] 00 <- i8042 (interrupt, 1, 12)
[   16.118154] [      C1] i8042: [3241] 00 <- i8042 (interrupt, 1, 12)
[   16.128854] [      C1] i8042: [3243] 00 <- i8042 (interrupt, 1, 12)
[   16.139430] [      C1] i8042: [3246] 01 <- i8042 (interrupt, 1, 12)
[   16.150016] [      C1] i8042: [3249] 01 <- i8042 (interrupt, 1, 12)
[   16.160797] [      C1] i8042: [3251] 01 <- i8042 (interrupt, 1, 12)
[   16.171386] [      C1] i8042: [3254] 01 <- i8042 (interrupt, 1, 12)
[   16.181978] [      C1] i8042: [3257] 01 <- i8042 (interrupt, 1, 12)
[   16.193126] [      C1] i8042: [3259] 01 <- i8042 (interrupt, 1, 12)
[   16.203374] [      C1] i8042: [3262] 01 <- i8042 (interrupt, 1, 12)
[   16.213985] [      C1] i8042: [3265] 01 <- i8042 (interrupt, 1, 12)
[   16.224557] [      C1] i8042: [3267] 01 <- i8042 (interrupt, 1, 12)
[   16.235173] [      C1] i8042: [3270] 01 <- i8042 (interrupt, 1, 12)
[   16.245830] [      C1] i8042: [3272] 01 <- i8042 (interrupt, 1, 12)
[   16.256488] [      C1] i8042: [3275] 01 <- i8042 (interrupt, 1, 12)
[   16.267131] [      C1] i8042: [3278] 01 <- i8042 (interrupt, 1, 12)
[   16.277803] [      C1] i8042: [3280] 01 <- i8042 (interrupt, 1, 12)
[   16.288597] [      C1] i8042: [3283] 01 <- i8042 (interrupt, 1, 12)
[   16.299187] [      C1] i8042: [3286] 00 <- i8042 (interrupt, 1, 12)
[   16.309763] [      C1] i8042: [3288] 00 <- i8042 (interrupt, 1, 12)
[   16.320397] [      C1] i8042: [3291] 00 <- i8042 (interrupt, 1, 12)
[   16.331094] [      C1] i8042: [3294] 00 <- i8042 (interrupt, 1, 12)
[   16.341693] [      C1] i8042: [3296] 00 <- i8042 (interrupt, 1, 12)
[   16.352390] [      C1] i8042: [3299] 00 <- i8042 (interrupt, 1, 12)
[   16.363043] [      C1] i8042: [3302] 00 <- i8042 (interrupt, 1, 12)
[   16.373983] [      C1] i8042: [3305] 00 <- i8042 (interrupt, 1, 12)
[   16.384408] [      C1] i8042: [3307] 00 <- i8042 (interrupt, 1, 12)
[   16.395010] [      C1] i8042: [3310] 00 <- i8042 (interrupt, 1, 12)
[   16.405704] [      C1] i8042: [3312] 00 <- i8042 (interrupt, 1, 12)
[   16.416336] [      C1] i8042: [3315] 00 <- i8042 (interrupt, 1, 12)
[   16.427042] [      C1] i8042: [3318] 00 <- i8042 (interrupt, 1, 12)
[   16.437751] [      C1] i8042: [3320] 00 <- i8042 (interrupt, 1, 12)
[   16.448324] [      C1] i8042: [3323] 00 <- i8042 (interrupt, 1, 12)
[   16.459053] [      C1] i8042: [3326] 00 <- i8042 (interrupt, 1, 12)
[   16.470147] [      C1] i8042: [3329] 00 <- i8042 (interrupt, 1, 12)
[   16.480444] [      C1] i8042: [3331] 00 <- i8042 (interrupt, 1, 12)
[   16.491021] [      C1] i8042: [3334] 00 <- i8042 (interrupt, 1, 12)
[   16.501806] [      C1] i8042: [3336] 00 <- i8042 (interrupt, 1, 12)
[   16.512384] [      C1] i8042: [3339] 00 <- i8042 (interrupt, 1, 12)
[   16.523028] [      C1] i8042: [3342] 00 <- i8042 (interrupt, 1, 12)
[   16.533730] [      C1] i8042: [3344] 00 <- i8042 (interrupt, 1, 12)
[   16.544331] [      C1] i8042: [3347] 00 <- i8042 (interrupt, 1, 12)
[   16.555007] [      C1] i8042: [3350] 00 <- i8042 (interrupt, 1, 12)
[   16.565695] [      C1] i8042: [3352] 00 <- i8042 (interrupt, 1, 12)
[   16.576347] [      C1] i8042: [3355] 00 <- i8042 (interrupt, 1, 12)
[   16.587042] [      C1] i8042: [3358] 00 <- i8042 (interrupt, 1, 12)
[   16.597701] [      C1] i8042: [3360] 00 <- i8042 (interrupt, 1, 12)
[   16.608360] [      C1] i8042: [3363] 00 <- i8042 (interrupt, 1, 12)
[   16.619053] [      C1] i8042: [3366] 00 <- i8042 (interrupt, 1, 12)
[   16.629696] [      C1] i8042: [3368] 00 <- i8042 (interrupt, 1, 12)
[   16.640332] [      C1] i8042: [3371] 00 <- i8042 (interrupt, 1, 12)
[   16.651045] [      C1] i8042: [3374] 00 <- i8042 (interrupt, 1, 12)
[   16.661665] [      C1] i8042: [3376] 00 <- i8042 (interrupt, 1, 12)
[   16.672347] [      C1] i8042: [3379] 00 <- i8042 (interrupt, 1, 12)
[   16.683011] [      C1] i8042: [3382] 00 <- i8042 (interrupt, 1, 12)
[   16.693622] [      C1] i8042: [3384] 00 <- i8042 (interrupt, 1, 12)
[   16.704358] [      C1] i8042: [3387] 00 <- i8042 (interrupt, 1, 12)
[   16.714962] [      C1] i8042: [3390] 00 <- i8042 (interrupt, 1, 12)
[   16.725793] [      C1] i8042: [3392] 00 <- i8042 (interrupt, 1, 12)
[   16.736296] [      C1] i8042: [3395] 00 <- i8042 (interrupt, 1, 12)
[   16.746902] [      C1] i8042: [3398] 00 <- i8042 (interrupt, 1, 12)
[   16.757580] [      C1] i8042: [3400] 00 <- i8042 (interrupt, 1, 12)
[   16.768240] [      C1] i8042: [3403] 00 <- i8042 (interrupt, 1, 12)
[   16.778904] [      C1] i8042: [3406] 00 <- i8042 (interrupt, 1, 12)
[   16.789879] [      C1] i8042: [3408] 00 <- i8042 (interrupt, 1, 12)
[   16.800213] [      C1] i8042: [3411] 00 <- i8042 (interrupt, 1, 12)
[   16.810994] [      C1] i8042: [3414] 00 <- i8042 (interrupt, 1, 12)
[   16.821523] [      C1] i8042: [3416] 00 <- i8042 (interrupt, 1, 12)
[   16.832186] [      C1] i8042: [3419] 00 <- i8042 (interrupt, 1, 12)
[   16.842819] [      C1] i8042: [3422] 00 <- i8042 (interrupt, 1, 12)
[   16.853518] [      C1] i8042: [3424] 00 <- i8042 (interrupt, 1, 12)
[   16.864122] [      C1] i8042: [3427] 00 <- i8042 (interrupt, 1, 12)
[   16.874793] [      C1] i8042: [3430] 00 <- i8042 (interrupt, 1, 12)
[   16.885458] [      C1] i8042: [3432] 00 <- i8042 (interrupt, 1, 12)
[   16.896231] [      C1] i8042: [3435] 00 <- i8042 (interrupt, 1, 12)
[   16.906819] [      C1] i8042: [3438] 00 <- i8042 (interrupt, 1, 12)
[   16.917473] [      C1] i8042: [3440] 00 <- i8042 (interrupt, 1, 12)
[   16.928127] [      C1] i8042: [3443] 00 <- i8042 (interrupt, 1, 12)
[   16.938849] [      C1] i8042: [3446] 00 <- i8042 (interrupt, 1, 12)
[   16.949504] [      C1] i8042: [3448] 00 <- i8042 (interrupt, 1, 12)
[   16.960139] [      C1] i8042: [3451] 00 <- i8042 (interrupt, 1, 12)
[   16.970912] [      C1] i8042: [3454] 00 <- i8042 (interrupt, 1, 12)
[   16.981448] [      C1] i8042: [3456] 00 <- i8042 (interrupt, 1, 12)
[   16.992185] [      C1] i8042: [3459] 00 <- i8042 (interrupt, 1, 12)
[   17.002777] [      C1] i8042: [3462] 00 <- i8042 (interrupt, 1, 12)
[   17.013382] [      C1] i8042: [3464] 00 <- i8042 (interrupt, 1, 12)
[   17.024088] [      C1] i8042: [3467] 00 <- i8042 (interrupt, 1, 12)
[   17.034697] [      C1] i8042: [3470] 00 <- i8042 (interrupt, 1, 12)
[   17.045343] [      C1] i8042: [3472] 00 <- i8042 (interrupt, 1, 12)
[   17.056065] [      C1] i8042: [3475] 00 <- i8042 (interrupt, 1, 12)
[   17.066680] [      C1] i8042: [3478] 00 <- i8042 (interrupt, 1, 12)
[   17.077330] [      C1] i8042: [3480] 00 <- i8042 (interrupt, 1, 12)
[   17.088088] [      C1] i8042: [3483] 00 <- i8042 (interrupt, 1, 12)
[   17.098635] [      C1] i8042: [3486] 00 <- i8042 (interrupt, 1, 12)
[   17.109316] [      C1] i8042: [3488] 00 <- i8042 (interrupt, 1, 12)
[   17.120653] [      C1] i8042: [3491] 00 <- i8042 (interrupt, 1, 12)
[   17.130715] [      C1] i8042: [3494] 00 <- i8042 (interrupt, 1, 12)
[   17.141331] [      C1] i8042: [3496] 00 <- i8042 (interrupt, 1, 12)
[   17.151948] [      C1] i8042: [3499] 00 <- i8042 (interrupt, 1, 12)
[   17.162592] [      C1] i8042: [3502] 00 <- i8042 (interrupt, 1, 12)
[   17.174286] [      C1] i8042: [3505] 00 <- i8042 (interrupt, 1, 12)
[   17.184188] [      C1] i8042: [3507] 00 <- i8042 (interrupt, 1, 12)
[   17.194524] [      C1] i8042: [3510] 00 <- i8042 (interrupt, 1, 12)
[   17.205229] [      C1] i8042: [3512] 00 <- i8042 (interrupt, 1, 12)
[   17.215829] [      C1] i8042: [3515] 00 <- i8042 (interrupt, 1, 12)
[   17.226507] [      C1] i8042: [3518] 00 <- i8042 (interrupt, 1, 12)
[   17.237135] [      C1] i8042: [3520] 00 <- i8042 (interrupt, 1, 12)
[   17.247763] [      C1] i8042: [3523] 00 <- i8042 (interrupt, 1, 12)
[   17.259063] [      C1] i8042: [3526] 00 <- i8042 (interrupt, 1, 12)
[   17.260603] [      C2] i8042: [3526] ** <- i8042 (interrupt, 0, 1)
[   17.261514] [      C2] i8042: [3526] ** <- i8042 (interrupt, 0, 1)
[   17.268959] [      C1] i8042: [3528] 00 <- i8042 (interrupt, 1, 12)
[   17.279642] [      C1] i8042: [3531] 00 <- i8042 (interrupt, 1, 12)
[   17.290367] [      C1] i8042: [3534] 00 <- i8042 (interrupt, 1, 12)
[   17.300931] [      C1] i8042: [3536] 00 <- i8042 (interrupt, 1, 12)
[   17.311618] [      C1] i8042: [3539] 00 <- i8042 (interrupt, 1, 12)
[   17.322303] [      C1] i8042: [3542] 00 <- i8042 (interrupt, 1, 12)
[   17.332961] [      C1] i8042: [3544] 00 <- i8042 (interrupt, 1, 12)
[   17.343822] [      C1] i8042: [3547] 00 <- i8042 (interrupt, 1, 12)
[   17.354607] [      C1] i8042: [3550] 00 <- i8042 (interrupt, 1, 12)
[   17.365075] [      C1] i8042: [3552] 00 <- i8042 (interrupt, 1, 12)
[   17.375529] [      C1] i8042: [3555] 00 <- i8042 (interrupt, 1, 12)
[   17.386150] [      C1] i8042: [3558] 00 <- i8042 (interrupt, 1, 12)
[   17.396927] [      C1] i8042: [3560] 00 <- i8042 (interrupt, 1, 12)
[   17.407509] [      C1] i8042: [3563] 00 <- i8042 (interrupt, 1, 12)
[   17.412799] [      C2] i8042: [3564] ** <- i8042 (interrupt, 0, 1)
[   17.413905] [      C2] i8042: [3564] ** <- i8042 (interrupt, 0, 1)
[   17.418145] [      C1] i8042: [3566] 00 <- i8042 (interrupt, 1, 12)
[   17.428934] [      C1] i8042: [3568] 00 <- i8042 (interrupt, 1, 12)
[   17.439453] [      C1] i8042: [3571] 00 <- i8042 (interrupt, 1, 12)
[   17.450033] [      C1] i8042: [3574] 00 <- i8042 (interrupt, 1, 12)
[   17.460763] [      C1] i8042: [3576] 00 <- i8042 (interrupt, 1, 12)
[   17.471400] [      C1] i8042: [3579] 00 <- i8042 (interrupt, 1, 12)
[   17.482416] [      C1] i8042: [3582] 00 <- i8042 (interrupt, 1, 12)
[   17.494609] [      C1] i8042: [3585] 00 <- i8042 (interrupt, 1, 12)
[   17.503327] [      C1] i8042: [3587] 00 <- i8042 (interrupt, 1, 12)
[   17.514805] [      C1] i8042: [3590] 00 <- i8042 (interrupt, 1, 12)
[   17.524639] [      C1] i8042: [3592] 00 <- i8042 (interrupt, 1, 12)
[   17.535279] [      C1] i8042: [3595] 00 <- i8042 (interrupt, 1, 12)
[   17.545976] [      C1] i8042: [3598] 00 <- i8042 (interrupt, 1, 12)
[   17.556585] [      C1] i8042: [3600] 00 <- i8042 (interrupt, 1, 12)
[   17.567310] [      C1] i8042: [3603] 00 <- i8042 (interrupt, 1, 12)
[   17.577927] [      C1] i8042: [3605] 00 <- i8042 (interrupt, 1, 12)
[   17.588533] [      C1] i8042: [3608] 00 <- i8042 (interrupt, 1, 12)
[   17.599297] [      C1] i8042: [3611] 00 <- i8042 (interrupt, 1, 12)
[   17.609864] [      C1] i8042: [3613] 00 <- i8042 (interrupt, 1, 12)
[   17.620467] [      C1] i8042: [3616] 00 <- i8042 (interrupt, 1, 12)
[   17.631815] [      C1] i8042: [3619] 00 <- i8042 (interrupt, 1, 12)
[   17.641112] [      C1] i8042: [3621] 00 <- i8042 (interrupt, 1, 12)
[   17.651154] [      C1] i8042: [3624] 00 <- i8042 (interrupt, 1, 12)
[   17.661169] [      C1] i8042: [3626] 00 <- i8042 (interrupt, 1, 12)
[   17.671172] [      C1] i8042: [3629] 00 <- i8042 (interrupt, 1, 12)
[   17.681181] [      C1] i8042: [3631] 00 <- i8042 (interrupt, 1, 12)
[   17.691178] [      C1] i8042: [3634] 00 <- i8042 (interrupt, 1, 12)
[   17.701194] [      C1] i8042: [3636] 00 <- i8042 (interrupt, 1, 12)
[   17.711197] [      C1] i8042: [3639] 00 <- i8042 (interrupt, 1, 12)
[   17.721208] [      C1] i8042: [3641] 00 <- i8042 (interrupt, 1, 12)
[   17.731210] [      C1] i8042: [3644] 00 <- i8042 (interrupt, 1, 12)
[   17.741209] [      C1] i8042: [3646] 00 <- i8042 (interrupt, 1, 12)
[   17.751200] [      C1] i8042: [3649] 00 <- i8042 (interrupt, 1, 12)
[   17.761187] [      C1] i8042: [3651] 00 <- i8042 (interrupt, 1, 12)
[   17.771175] [      C1] i8042: [3654] 00 <- i8042 (interrupt, 1, 12)
[   17.781169] [      C1] i8042: [3656] 00 <- i8042 (interrupt, 1, 12)
[   17.791158] [      C1] i8042: [3659] 00 <- i8042 (interrupt, 1, 12)
[   17.801152] [      C1] i8042: [3661] 00 <- i8042 (interrupt, 1, 12)
[   17.811150] [      C1] i8042: [3664] 00 <- i8042 (interrupt, 1, 12)
[   17.821140] [      C1] i8042: [3666] 00 <- i8042 (interrupt, 1, 12)
[   17.831155] [      C1] i8042: [3669] 00 <- i8042 (interrupt, 1, 12)
[   17.836343] [      C2] i8042: [3670] ** <- i8042 (interrupt, 0, 1)
[   17.841196] [      C1] i8042: [3671] 00 <- i8042 (interrupt, 1, 12)
[   17.851015] [      C1] i8042: [3674] 00 <- i8042 (interrupt, 1, 12)
[   17.861005] [      C1] i8042: [3676] 00 <- i8042 (interrupt, 1, 12)
[   17.870981] [      C1] i8042: [3679] 00 <- i8042 (interrupt, 1, 12)
[   17.881565] [      C1] i8042: [3681] 00 <- i8042 (interrupt, 1, 12)
[   17.891386] [      C1] i8042: [3684] 00 <- i8042 (interrupt, 1, 12)
[   17.901379] [      C1] i8042: [3686] 00 <- i8042 (interrupt, 1, 12)
[   17.911445] [      C1] i8042: [3689] 00 <- i8042 (interrupt, 1, 12)
[   17.922280] [      C1] i8042: [3692] 00 <- i8042 (interrupt, 1, 12)
[   17.922999] [      C2] i8042: [3692] ** <- i8042 (interrupt, 0, 1)
[   17.932394] [      C1] i8042: [3694] 00 <- i8042 (interrupt, 1, 12)
[   17.943499] [      C1] i8042: [3697] 00 <- i8042 (interrupt, 1, 12)
[   17.953753] [      C1] i8042: [3699] 00 <- i8042 (interrupt, 1, 12)
[   17.964374] [      C1] i8042: [3702] 00 <- i8042 (interrupt, 1, 12)
[   17.975098] [      C1] i8042: [3705] 00 <- i8042 (interrupt, 1, 12)
[   17.985691] [      C1] i8042: [3707] 00 <- i8042 (interrupt, 1, 12)
[   17.996333] [      C1] i8042: [3710] 00 <- i8042 (interrupt, 1, 12)
[   18.006999] [      C1] i8042: [3713] 00 <- i8042 (interrupt, 1, 12)
[   18.017646] [      C1] i8042: [3715] 00 <- i8042 (interrupt, 1, 12)
[   18.028291] [      C1] i8042: [3718] 00 <- i8042 (interrupt, 1, 12)
[   18.038939] [      C1] i8042: [3721] 00 <- i8042 (interrupt, 1, 12)
[   18.049652] [      C1] i8042: [3723] 00 <- i8042 (interrupt, 1, 12)
[   18.060285] [      C1] i8042: [3726] 00 <- i8042 (interrupt, 1, 12)
[   18.070887] [      C1] i8042: [3729] 00 <- i8042 (interrupt, 1, 12)
[   18.081530] [      C1] i8042: [3731] 00 <- i8042 (interrupt, 1, 12)
[   18.092193] [      C1] i8042: [3734] 00 <- i8042 (interrupt, 1, 12)
[   18.102844] [      C1] i8042: [3737] 00 <- i8042 (interrupt, 1, 12)
[   18.113560] [      C1] i8042: [3739] 00 <- i8042 (interrupt, 1, 12)
[   18.124136] [      C1] i8042: [3742] 00 <- i8042 (interrupt, 1, 12)
[   18.134762] [      C1] i8042: [3745] 00 <- i8042 (interrupt, 1, 12)
[   18.145513] [      C1] i8042: [3747] 00 <- i8042 (interrupt, 1, 12)
[   18.156124] [      C1] i8042: [3750] 00 <- i8042 (interrupt, 1, 12)
[   18.166786] [      C1] i8042: [3753] 00 <- i8042 (interrupt, 1, 12)
[   18.177954] [      C1] i8042: [3756] 00 <- i8042 (interrupt, 1, 12)
[   18.188194] [      C1] i8042: [3758] 00 <- i8042 (interrupt, 1, 12)
[   18.198732] [      C1] i8042: [3761] 00 <- i8042 (interrupt, 1, 12)
[   18.209548] [      C1] i8042: [3763] 00 <- i8042 (interrupt, 1, 12)
[   18.220069] [      C1] i8042: [3766] 00 <- i8042 (interrupt, 1, 12)
[   18.230731] [      C1] i8042: [3769] 00 <- i8042 (interrupt, 1, 12)
[   18.241463] [      C1] i8042: [3771] 00 <- i8042 (interrupt, 1, 12)
[   18.252040] [      C1] i8042: [3774] 00 <- i8042 (interrupt, 1, 12)
[   18.262952] [      C1] i8042: [3777] 00 <- i8042 (interrupt, 1, 12)
[   18.273623] [      C1] i8042: [3779] 00 <- i8042 (interrupt, 1, 12)
[   18.283991] [      C1] i8042: [3782] 00 <- i8042 (interrupt, 1, 12)
[   18.294736] [      C1] i8042: [3785] 00 <- i8042 (interrupt, 1, 12)
[   18.305311] [      C1] i8042: [3787] 00 <- i8042 (interrupt, 1, 12)
[   18.315960] [      C1] i8042: [3790] 00 <- i8042 (interrupt, 1, 12)
[   18.326648] [      C1] i8042: [3793] 00 <- i8042 (interrupt, 1, 12)
[   18.337243] [      C1] i8042: [3795] 00 <- i8042 (interrupt, 1, 12)
[   18.348316] [      C1] i8042: [3798] 00 <- i8042 (interrupt, 1, 12)
[   18.358650] [      C1] i8042: [3801] 00 <- i8042 (interrupt, 1, 12)
[   18.369185] [      C1] i8042: [3803] 00 <- i8042 (interrupt, 1, 12)
[   18.379939] [      C1] i8042: [3806] 00 <- i8042 (interrupt, 1, 12)
[   18.390509] [      C1] i8042: [3809] 00 <- i8042 (interrupt, 1, 12)
[   18.401162] [      C1] i8042: [3811] 00 <- i8042 (interrupt, 1, 12)
[   18.411865] [      C1] i8042: [3814] 00 <- i8042 (interrupt, 1, 12)
[   18.422475] [      C1] i8042: [3817] 00 <- i8042 (interrupt, 1, 12)
[   18.433769] [      C1] i8042: [3819] 00 <- i8042 (interrupt, 1, 12)
[   18.443805] [      C1] i8042: [3822] 00 <- i8042 (interrupt, 1, 12)
[   18.454452] [      C1] i8042: [3825] 00 <- i8042 (interrupt, 1, 12)
[   18.465151] [      C1] i8042: [3827] 00 <- i8042 (interrupt, 1, 12)
[   18.475771] [      C1] i8042: [3830] 00 <- i8042 (interrupt, 1, 12)
[   18.486399] [      C1] i8042: [3833] 00 <- i8042 (interrupt, 1, 12)
[   18.497206] [      C1] i8042: [3835] 00 <- i8042 (interrupt, 1, 12)
[   18.507709] [      C1] i8042: [3838] 00 <- i8042 (interrupt, 1, 12)
[   18.518343] [      C1] i8042: [3841] 00 <- i8042 (interrupt, 1, 12)
[   18.529008] [      C1] i8042: [3843] 00 <- i8042 (interrupt, 1, 12)
[   18.539795] [      C1] i8042: [3846] 00 <- i8042 (interrupt, 1, 12)
[   18.550367] [      C1] i8042: [3849] 00 <- i8042 (interrupt, 1, 12)
[   18.560933] [      C1] i8042: [3851] 00 <- i8042 (interrupt, 1, 12)
[   18.571563] [      C1] i8042: [3854] 00 <- i8042 (interrupt, 1, 12)
[   18.582214] [      C1] i8042: [3857] 00 <- i8042 (interrupt, 1, 12)
[   18.592856] [      C1] i8042: [3859] 00 <- i8042 (interrupt, 1, 12)
[   18.603533] [      C1] i8042: [3862] 00 <- i8042 (interrupt, 1, 12)
[   18.614095] [      C1] i8042: [3865] 00 <- i8042 (interrupt, 1, 12)
[   18.624310] [      C2] i8042: [3867] ** <- i8042 (interrupt, 0, 1)
[   18.624818] [      C1] i8042: [3867] 00 <- i8042 (interrupt, 1, 12)
[   18.625498] [      C2] i8042: [3867] ** <- i8042 (interrupt, 0, 1)
[   18.635452] [      C1] i8042: [3870] 00 <- i8042 (interrupt, 1, 12)
[   18.646282] [      C1] i8042: [3873] 00 <- i8042 (interrupt, 1, 12)
[   18.657307] [      C1] i8042: [3875] 00 <- i8042 (interrupt, 1, 12)
[   18.668323] [      C1] i8042: [3878] 00 <- i8042 (interrupt, 1, 12)
[   18.678056] [      C1] i8042: [3881] 00 <- i8042 (interrupt, 1, 12)
[   18.689380] [      C1] i8042: [3883] 00 <- i8042 (interrupt, 1, 12)
[   18.699379] [      C1] i8042: [3886] 00 <- i8042 (interrupt, 1, 12)
[   18.710001] [      C1] i8042: [3889] 00 <- i8042 (interrupt, 1, 12)
[   18.720740] [      C1] i8042: [3891] 00 <- i8042 (interrupt, 1, 12)
[   18.731735] [      C1] i8042: [3894] 00 <- i8042 (interrupt, 1, 12)
[   18.732326] [      C2] i8042: [3894] ** <- i8042 (interrupt, 0, 1)
[   18.733757] [      C2] i8042: [3894] ** <- i8042 (interrupt, 0, 1)
[   18.741983] [      C1] i8042: [3897] 00 <- i8042 (interrupt, 1, 12)
[   18.752659] [      C1] i8042: [3899] 00 <- i8042 (interrupt, 1, 12)
[   18.763223] [      C1] i8042: [3902] 00 <- i8042 (interrupt, 1, 12)
[   18.773941] [      C1] i8042: [3904] 00 <- i8042 (interrupt, 1, 12)
[   18.784541] [      C1] i8042: [3907] 00 <- i8042 (interrupt, 1, 12)
[   18.795149] [      C1] i8042: [3910] 00 <- i8042 (interrupt, 1, 12)
[   18.806380] [      C1] i8042: [3913] 00 <- i8042 (interrupt, 1, 12)
[   18.816448] [      C1] i8042: [3915] 00 <- i8042 (interrupt, 1, 12)
[   18.827084] [      C1] i8042: [3918] 00 <- i8042 (interrupt, 1, 12)
[   18.838380] [      C1] i8042: [3921] 00 <- i8042 (interrupt, 1, 12)
[   18.838639] [      C2] i8042: [3921] ** <- i8042 (interrupt, 0, 1)
[   18.839164] [      C2] i8042: [3921] ** <- i8042 (interrupt, 0, 1)
[   18.848471] [      C1] i8042: [3923] 00 <- i8042 (interrupt, 1, 12)
[   18.859745] [      C1] i8042: [3926] 00 <- i8042 (interrupt, 1, 12)
[   18.870773] [      C1] i8042: [3929] 00 <- i8042 (interrupt, 1, 12)
[   18.880589] [      C1] i8042: [3931] 00 <- i8042 (interrupt, 1, 12)
[   18.891832] [      C1] i8042: [3934] 00 <- i8042 (interrupt, 1, 12)
[   18.901648] [      C1] i8042: [3936] 00 <- i8042 (interrupt, 1, 12)
[   18.912675] [      C1] i8042: [3939] 00 <- i8042 (interrupt, 1, 12)
[   18.923912] [      C1] i8042: [3942] 00 <- i8042 (interrupt, 1, 12)
[   18.933750] [      C1] i8042: [3944] 00 <- i8042 (interrupt, 1, 12)
[   18.944981] [      C1] i8042: [3947] 00 <- i8042 (interrupt, 1, 12)
[   18.956126] [      C1] i8042: [3950] 00 <- i8042 (interrupt, 1, 12)
[   18.962292] [      C2] i8042: [3952] ** <- i8042 (interrupt, 0, 1)
[   18.964333] [      C2] i8042: [3952] ** <- i8042 (interrupt, 0, 1)
[   18.965469] [      C1] i8042: [3952] 00 <- i8042 (interrupt, 1, 12)
[   18.976184] [      C1] i8042: [3955] 00 <- i8042 (interrupt, 1, 12)
[   18.986767] [      C1] i8042: [3958] 00 <- i8042 (interrupt, 1, 12)
[   18.997882] [      C1] i8042: [3960] 00 <- i8042 (interrupt, 1, 12)
[   19.008138] [      C1] i8042: [3963] 00 <- i8042 (interrupt, 1, 12)
[   19.018697] [      C1] i8042: [3966] 00 <- i8042 (interrupt, 1, 12)
[   19.029434] [      C1] i8042: [3968] 00 <- i8042 (interrupt, 1, 12)
[   19.039994] [      C1] i8042: [3971] 00 <- i8042 (interrupt, 1, 12)
[   19.050606] [      C1] i8042: [3974] 00 <- i8042 (interrupt, 1, 12)
[   19.061333] [      C1] i8042: [3976] 00 <- i8042 (interrupt, 1, 12)
[   19.071895] [      C1] i8042: [3979] 00 <- i8042 (interrupt, 1, 12)
[   19.082606] [      C1] i8042: [3982] 00 <- i8042 (interrupt, 1, 12)
[   19.093246] [      C1] i8042: [3984] 00 <- i8042 (interrupt, 1, 12)
[   19.104409] [      C1] i8042: [3987] 00 <- i8042 (interrupt, 1, 12)
[   19.114630] [      C1] i8042: [3990] 00 <- i8042 (interrupt, 1, 12)
[   19.125218] [      C1] i8042: [3992] 00 <- i8042 (interrupt, 1, 12)
[   19.135847] [      C1] i8042: [3995] 00 <- i8042 (interrupt, 1, 12)
[   19.147722] [      C1] i8042: [3998] 00 <- i8042 (interrupt, 1, 12)
[   19.157578] [      C1] i8042: [4000] 00 <- i8042 (interrupt, 1, 12)
[   19.167839] [      C1] i8042: [4003] 00 <- i8042 (interrupt, 1, 12)
[   19.178511] [      C1] i8042: [4006] 00 <- i8042 (interrupt, 1, 12)
[   19.189160] [      C1] i8042: [4008] 00 <- i8042 (interrupt, 1, 12)
[   19.199870] [      C1] i8042: [4011] 00 <- i8042 (interrupt, 1, 12)
[   19.210460] [      C1] i8042: [4014] 00 <- i8042 (interrupt, 1, 12)
[   19.221098] [      C1] i8042: [4016] 00 <- i8042 (interrupt, 1, 12)
[   19.232407] [      C1] i8042: [4019] 00 <- i8042 (interrupt, 1, 12)
[   19.242468] [      C1] i8042: [4022] 00 <- i8042 (interrupt, 1, 12)
[   19.253013] [      C1] i8042: [4024] 00 <- i8042 (interrupt, 1, 12)
[   19.263671] [      C1] i8042: [4027] 00 <- i8042 (interrupt, 1, 12)
[   19.274289] [      C1] i8042: [4030] 00 <- i8042 (interrupt, 1, 12)
[   19.285064] [      C1] i8042: [4032] 00 <- i8042 (interrupt, 1, 12)
[   19.295581] [      C1] i8042: [4035] 00 <- i8042 (interrupt, 1, 12)
[   19.307130] [      C1] i8042: [4038] 00 <- i8042 (interrupt, 1, 12)
[   19.310319] [      C2] i8042: [4039] ** <- i8042 (interrupt, 0, 1)
[   19.311145] [      C2] i8042: [4039] ** <- i8042 (interrupt, 0, 1)
[   19.316842] [      C1] i8042: [4040] 00 <- i8042 (interrupt, 1, 12)
[   19.327506] [      C1] i8042: [4043] 00 <- i8042 (interrupt, 1, 12)
[   19.338178] [      C1] i8042: [4046] 00 <- i8042 (interrupt, 1, 12)
[   19.348980] [      C1] i8042: [4048] 00 <- i8042 (interrupt, 1, 12)
[   19.360006] [      C1] i8042: [4051] 00 <- i8042 (interrupt, 1, 12)
[   19.371035] [      C1] i8042: [4054] 00 <- i8042 (interrupt, 1, 12)
[   19.380858] [      C1] i8042: [4056] 00 <- i8042 (interrupt, 1, 12)
[   19.392084] [      C1] i8042: [4059] 00 <- i8042 (interrupt, 1, 12)
[   19.403111] [      C1] i8042: [4062] 00 <- i8042 (interrupt, 1, 12)
[   19.412927] [      C1] i8042: [4064] 00 <- i8042 (interrupt, 1, 12)
[   19.424159] [      C1] i8042: [4067] 00 <- i8042 (interrupt, 1, 12)
[   19.433987] [      C1] i8042: [4070] 00 <- i8042 (interrupt, 1, 12)
[   19.444660] [      C1] i8042: [4072] 00 <- i8042 (interrupt, 1, 12)
[   19.453288] [      C2] i8042: [4074] ** <- i8042 (interrupt, 0, 1)
[   19.454535] [      C2] i8042: [4075] ** <- i8042 (interrupt, 0, 1)
[   19.455324] [      C1] i8042: [4075] 00 <- i8042 (interrupt, 1, 12)
[   19.465930] [      C1] i8042: [4077] 00 <- i8042 (interrupt, 1, 12)
[   19.476588] [      C1] i8042: [4080] 00 <- i8042 (interrupt, 1, 12)
[   19.487245] [      C1] i8042: [4083] 00 <- i8042 (interrupt, 1, 12)
[   19.498059] [      C1] i8042: [4086] 00 <- i8042 (interrupt, 1, 12)
[   19.508683] [      C1] i8042: [4088] 00 <- i8042 (interrupt, 1, 12)
[   19.519178] [      C1] i8042: [4091] 00 <- i8042 (interrupt, 1, 12)
[   19.529824] [      C1] i8042: [4093] 00 <- i8042 (interrupt, 1, 12)
[   19.540556] [      C1] i8042: [4096] 00 <- i8042 (interrupt, 1, 12)
[   19.551109] [      C1] i8042: [4099] 00 <- i8042 (interrupt, 1, 12)
[   19.561832] [      C1] i8042: [4101] 00 <- i8042 (interrupt, 1, 12)
[   19.572455] [      C1] i8042: [4104] 00 <- i8042 (interrupt, 1, 12)
[   19.583101] [      C1] i8042: [4107] 00 <- i8042 (interrupt, 1, 12)
[   19.594024] [      C1] i8042: [4110] 00 <- i8042 (interrupt, 1, 12)
[   19.604423] [      C1] i8042: [4112] 00 <- i8042 (interrupt, 1, 12)
[   19.615061] [      C1] i8042: [4115] 00 <- i8042 (interrupt, 1, 12)
[   19.625742] [      C1] i8042: [4117] 00 <- i8042 (interrupt, 1, 12)
[   19.636368] [      C1] i8042: [4120] 00 <- i8042 (interrupt, 1, 12)
[   19.647009] [      C1] i8042: [4123] 00 <- i8042 (interrupt, 1, 12)
[   19.657684] [      C1] i8042: [4125] 00 <- i8042 (interrupt, 1, 12)
[   19.668336] [      C1] i8042: [4128] 00 <- i8042 (interrupt, 1, 12)
[   19.679041] [      C1] i8042: [4131] 00 <- i8042 (interrupt, 1, 12)
[   19.689652] [      C1] i8042: [4133] 00 <- i8042 (interrupt, 1, 12)
[   19.700281] [      C1] i8042: [4136] 00 <- i8042 (interrupt, 1, 12)
[   19.711574] [      C1] i8042: [4139] 00 <- i8042 (interrupt, 1, 12)
[   19.721648] [      C1] i8042: [4141] 00 <- i8042 (interrupt, 1, 12)
[   19.732242] [      C1] i8042: [4144] 00 <- i8042 (interrupt, 1, 12)
[   19.742906] [      C1] i8042: [4147] 00 <- i8042 (interrupt, 1, 12)
[   19.753539] [      C1] i8042: [4149] 00 <- i8042 (interrupt, 1, 12)
[   19.764255] [      C1] i8042: [4152] 00 <- i8042 (interrupt, 1, 12)
[   19.774849] [      C1] i8042: [4155] 00 <- i8042 (interrupt, 1, 12)
[   19.785480] [      C1] i8042: [4157] 00 <- i8042 (interrupt, 1, 12)
[   19.796174] [      C1] i8042: [4160] 00 <- i8042 (interrupt, 1, 12)
[   19.806749] [      C1] i8042: [4163] 00 <- i8042 (interrupt, 1, 12)
[   19.817454] [      C1] i8042: [4165] 00 <- i8042 (interrupt, 1, 12)
[   19.828090] [      C1] i8042: [4168] 00 <- i8042 (interrupt, 1, 12)
[   19.839019] [      C1] i8042: [4171] 00 <- i8042 (interrupt, 1, 12)
[   19.849439] [      C1] i8042: [4173] 00 <- i8042 (interrupt, 1, 12)
[   19.860063] [      C1] i8042: [4176] 00 <- i8042 (interrupt, 1, 12)
[   19.870759] [      C1] i8042: [4179] 00 <- i8042 (interrupt, 1, 12)
[   19.881506] [      C1] i8042: [4181] 00 <- i8042 (interrupt, 1, 12)
[   19.892028] [      C1] i8042: [4184] 00 <- i8042 (interrupt, 1, 12)
[   19.902701] [      C1] i8042: [4187] 00 <- i8042 (interrupt, 1, 12)
[   19.914006] [      C1] i8042: [4190] 00 <- i8042 (interrupt, 1, 12)
[   19.924095] [      C1] i8042: [4192] 00 <- i8042 (interrupt, 1, 12)
[   19.934710] [      C1] i8042: [4195] 00 <- i8042 (interrupt, 1, 12)
[   19.945343] [      C1] i8042: [4197] 00 <- i8042 (interrupt, 1, 12)
[   19.955975] [      C1] i8042: [4200] 00 <- i8042 (interrupt, 1, 12)
[   19.966604] [      C1] i8042: [4203] 00 <- i8042 (interrupt, 1, 12)
[   19.977318] [      C1] i8042: [4205] 00 <- i8042 (interrupt, 1, 12)
[   19.987950] [      C1] i8042: [4208] 00 <- i8042 (interrupt, 1, 12)
[   19.998991] [      C1] i8042: [4211] 00 <- i8042 (interrupt, 1, 12)
[   20.009804] [      C1] i8042: [4213] 00 <- i8042 (interrupt, 1, 12)
[   20.019880] [      C1] i8042: [4216] 00 <- i8042 (interrupt, 1, 12)
[   20.030545] [      C1] i8042: [4219] 00 <- i8042 (interrupt, 1, 12)
[   20.041210] [      C1] i8042: [4221] 00 <- i8042 (interrupt, 1, 12)
[   20.051856] [      C1] i8042: [4224] 00 <- i8042 (interrupt, 1, 12)
[   20.062500] [      C1] i8042: [4227] 00 <- i8042 (interrupt, 1, 12)
[   20.073163] [      C1] i8042: [4229] 00 <- i8042 (interrupt, 1, 12)
[   20.083934] [      C1] i8042: [4232] 00 <- i8042 (interrupt, 1, 12)
[   20.094498] [      C1] i8042: [4235] 00 <- i8042 (interrupt, 1, 12)
[   20.105441] [      C1] i8042: [4237] 00 <- i8042 (interrupt, 1, 12)
[   20.115866] [      C1] i8042: [4240] 00 <- i8042 (interrupt, 1, 12)
[   20.126469] [      C1] i8042: [4243] 00 <- i8042 (interrupt, 1, 12)
[   20.137133] [      C1] i8042: [4245] 00 <- i8042 (interrupt, 1, 12)
[   20.147791] [      C1] i8042: [4248] 00 <- i8042 (interrupt, 1, 12)
[   20.158395] [      C1] i8042: [4251] 00 <- i8042 (interrupt, 1, 12)
[   20.169141] [      C1] i8042: [4253] 00 <- i8042 (interrupt, 1, 12)
[   20.179747] [      C1] i8042: [4256] 00 <- i8042 (interrupt, 1, 12)
[   20.190361] [      C1] i8042: [4259] 00 <- i8042 (interrupt, 1, 12)
[   20.201044] [      C1] i8042: [4261] 00 <- i8042 (interrupt, 1, 12)
[   20.211637] [      C1] i8042: [4264] 00 <- i8042 (interrupt, 1, 12)
[   20.222317] [      C1] i8042: [4267] 00 <- i8042 (interrupt, 1, 12)
[   20.232951] [      C1] i8042: [4269] 00 <- i8042 (interrupt, 1, 12)
[   20.243895] [      C1] i8042: [4272] 00 <- i8042 (interrupt, 1, 12)
[   20.254186] [      C1] i8042: [4275] 00 <- i8042 (interrupt, 1, 12)
[   20.264929] [      C1] i8042: [4277] 00 <- i8042 (interrupt, 1, 12)
[   20.275535] [      C1] i8042: [4280] 00 <- i8042 (interrupt, 1, 12)
[   20.286179] [      C1] i8042: [4283] 00 <- i8042 (interrupt, 1, 12)
[   20.296846] [      C1] i8042: [4285] 00 <- i8042 (interrupt, 1, 12)
[   20.307505] [      C1] i8042: [4288] 00 <- i8042 (interrupt, 1, 12)
[   20.318089] [      C1] i8042: [4291] 00 <- i8042 (interrupt, 1, 12)
[   20.329012] [      C1] i8042: [4293] 00 <- i8042 (interrupt, 1, 12)
[   20.339438] [      C1] i8042: [4296] 00 <- i8042 (interrupt, 1, 12)
[   20.350005] [      C1] i8042: [4299] 00 <- i8042 (interrupt, 1, 12)
[   20.360698] [      C1] i8042: [4301] 00 <- i8042 (interrupt, 1, 12)
[   20.371353] [      C1] i8042: [4304] 00 <- i8042 (interrupt, 1, 12)
[   20.381999] [      C1] i8042: [4307] 00 <- i8042 (interrupt, 1, 12)
[   20.392714] [      C1] i8042: [4309] 00 <- i8042 (interrupt, 1, 12)
[   20.403279] [      C1] i8042: [4312] 00 <- i8042 (interrupt, 1, 12)
[   20.413999] [      C1] i8042: [4315] 00 <- i8042 (interrupt, 1, 12)
[   20.424619] [      C1] i8042: [4317] 00 <- i8042 (interrupt, 1, 12)
[   20.435178] [      C1] i8042: [4320] 00 <- i8042 (interrupt, 1, 12)
[   20.445903] [      C1] i8042: [4322] 00 <- i8042 (interrupt, 1, 12)
[   20.456495] [      C1] i8042: [4325] 00 <- i8042 (interrupt, 1, 12)
[   20.467125] [      C1] i8042: [4328] 00 <- i8042 (interrupt, 1, 12)
[   20.477899] [      C1] i8042: [4330] 00 <- i8042 (interrupt, 1, 12)
[   20.488432] [      C1] i8042: [4333] 00 <- i8042 (interrupt, 1, 12)
[   20.499358] [      C1] i8042: [4336] 00 <- i8042 (interrupt, 1, 12)
[   20.509777] [      C1] i8042: [4338] 00 <- i8042 (interrupt, 1, 12)
[   20.520367] [      C1] i8042: [4341] 00 <- i8042 (interrupt, 1, 12)
[   20.531022] [      C1] i8042: [4344] 00 <- i8042 (interrupt, 1, 12)
[   20.541674] [      C1] i8042: [4346] 00 <- i8042 (interrupt, 1, 12)
[   20.552309] [      C1] i8042: [4349] 00 <- i8042 (interrupt, 1, 12)
[   20.563020] [      C1] i8042: [4352] 00 <- i8042 (interrupt, 1, 12)
[   20.573601] [      C1] i8042: [4354] 00 <- i8042 (interrupt, 1, 12)
[   20.584231] [      C1] i8042: [4357] 00 <- i8042 (interrupt, 1, 12)
[   20.595681] [      C1] i8042: [4360] 00 <- i8042 (interrupt, 1, 12)
[   20.605578] [      C1] i8042: [4362] 00 <- i8042 (interrupt, 1, 12)
[   20.616228] [      C1] i8042: [4365] 00 <- i8042 (interrupt, 1, 12)
[   20.626977] [      C1] i8042: [4368] 00 <- i8042 (interrupt, 1, 12)
[   20.637546] [      C1] i8042: [4370] 00 <- i8042 (interrupt, 1, 12)
[   20.648288] [      C1] i8042: [4373] 00 <- i8042 (interrupt, 1, 12)
[   20.658945] [      C1] i8042: [4376] 00 <- i8042 (interrupt, 1, 12)
[   20.669576] [      C1] i8042: [4378] 00 <- i8042 (interrupt, 1, 12)
[   20.680287] [      C1] i8042: [4381] 00 <- i8042 (interrupt, 1, 12)
[   22.839070] [      C2] i8042: [4921] ** <- i8042 (interrupt, 0, 1)
[   22.839523] [      C2] i8042: [4921] ** <- i8042 (interrupt, 0, 1)
[   22.988890] [      C2] i8042: [4958] ** <- i8042 (interrupt, 0, 1)
[   22.990636] [      C2] i8042: [4959] ** <- i8042 (interrupt, 0, 1)
[   23.697027] [      C2] i8042: [5135] ** <- i8042 (interrupt, 0, 1)
[   23.697878] [      C2] i8042: [5135] ** <- i8042 (interrupt, 0, 1)
[   23.810343] [      C2] i8042: [5164] ** <- i8042 (interrupt, 0, 1)
[   23.812147] [      C2] i8042: [5164] ** <- i8042 (interrupt, 0, 1)
[   24.818539] [      C2] i8042: [5416] ** <- i8042 (interrupt, 0, 1)
[   24.818990] [      C2] i8042: [5416] ** <- i8042 (interrupt, 0, 1)
[   24.908940] [      C2] i8042: [5438] ** <- i8042 (interrupt, 0, 1)
[   24.911077] [      C2] i8042: [5439] ** <- i8042 (interrupt, 0, 1)
[   25.020077] [      C2] i8042: [5466] ** <- i8042 (interrupt, 0, 1)
[   25.020528] [      C2] i8042: [5466] ** <- i8042 (interrupt, 0, 1)
[   25.086262] [      C2] i8042: [5483] ** <- i8042 (interrupt, 0, 1)
[   25.088400] [      C2] i8042: [5483] ** <- i8042 (interrupt, 0, 1)
[   25.177327] [      C2] i8042: [5505] ** <- i8042 (interrupt, 0, 1)
[   25.177823] [      C2] i8042: [5505] ** <- i8042 (interrupt, 0, 1)
[   25.255619] [      C2] i8042: [5525] ** <- i8042 (interrupt, 0, 1)
[   25.257751] [      C2] i8042: [5525] ** <- i8042 (interrupt, 0, 1)
[   25.334364] [      C2] i8042: [5545] ** <- i8042 (interrupt, 0, 1)
[   25.334940] [      C2] i8042: [5545] ** <- i8042 (interrupt, 0, 1)
[   25.410463] [      C2] i8042: [5564] ** <- i8042 (interrupt, 0, 1)
[   25.412092] [      C2] i8042: [5564] ** <- i8042 (interrupt, 0, 1)
[   25.477054] [      C2] i8042: [5580] ** <- i8042 (interrupt, 0, 1)
[   25.478246] [      C2] i8042: [5581] ** <- i8042 (interrupt, 0, 1)
[   25.570067] [      C2] i8042: [5604] ** <- i8042 (interrupt, 0, 1)
[   25.571457] [      C2] i8042: [5604] ** <- i8042 (interrupt, 0, 1)
[   26.249655] [      C2] i8042: [5773] ** <- i8042 (interrupt, 0, 1)
[   26.327151] [      C2] i8042: [5793] ** <- i8042 (interrupt, 0, 1)
[   26.416820] [      C2] i8042: [5815] ** <- i8042 (interrupt, 0, 1)
[   26.479498] [      C2] i8042: [5831] ** <- i8042 (interrupt, 0, 1)
[   26.550902] [      C2] i8042: [5849] ** <- i8042 (interrupt, 0, 1)
[   26.622762] [      C2] i8042: [5867] ** <- i8042 (interrupt, 0, 1)
[   26.694432] [      C2] i8042: [5885] ** <- i8042 (interrupt, 0, 1)
[   26.756113] [      C2] i8042: [5900] ** <- i8042 (interrupt, 0, 1)
[   26.848541] [      C2] i8042: [5923] ** <- i8042 (interrupt, 0, 1)
[   26.929508] [      C2] i8042: [5943] ** <- i8042 (interrupt, 0, 1)
[   27.028678] [      C2] i8042: [5968] ** <- i8042 (interrupt, 0, 1)
[   27.101991] [      C2] i8042: [5987] ** <- i8042 (interrupt, 0, 1)
[   27.222473] [      C2] i8042: [6017] ** <- i8042 (interrupt, 0, 1)
[   27.318497] [      C2] i8042: [6041] ** <- i8042 (interrupt, 0, 1)
[   28.242772] [      C2] i8042: [6272] ** <- i8042 (interrupt, 0, 1)
[   28.373923] [      C2] i8042: [6304] ** <- i8042 (interrupt, 0, 1)
[   28.478397] [      C2] i8042: [6331] ** <- i8042 (interrupt, 0, 1)
[   28.615698] [      C2] i8042: [6365] ** <- i8042 (interrupt, 0, 1)
[   28.716770] [      C2] i8042: [6390] ** <- i8042 (interrupt, 0, 1)
[   28.858418] [      C2] i8042: [6426] ** <- i8042 (interrupt, 0, 1)
[   32.171821] [      C2] i8042: [7254] ** <- i8042 (interrupt, 0, 1)
[   32.172398] [      C2] i8042: [7254] ** <- i8042 (interrupt, 0, 1)
[   32.294893] [      C2] i8042: [7285] ** <- i8042 (interrupt, 0, 1)
[   32.296645] [      C2] i8042: [7285] ** <- i8042 (interrupt, 0, 1)
[   32.366296] [      C2] i8042: [7303] ** <- i8042 (interrupt, 0, 1)
[   32.366892] [      C2] i8042: [7303] ** <- i8042 (interrupt, 0, 1)
[   32.484902] [      C2] i8042: [7332] ** <- i8042 (interrupt, 0, 1)
[   32.487088] [      C2] i8042: [7333] ** <- i8042 (interrupt, 0, 1)
[   32.995376] [      C2] i8042: [7460] ** <- i8042 (interrupt, 0, 1)
[   32.995940] [      C2] i8042: [7460] ** <- i8042 (interrupt, 0, 1)
[   33.115013] [      C2] i8042: [7490] ** <- i8042 (interrupt, 0, 1)
[   33.117167] [      C2] i8042: [7490] ** <- i8042 (interrupt, 0, 1)
[   33.178009] [      C2] i8042: [7506] ** <- i8042 (interrupt, 0, 1)
[   33.178487] [      C2] i8042: [7506] ** <- i8042 (interrupt, 0, 1)
[   33.266264] [      C2] i8042: [7528] ** <- i8042 (interrupt, 0, 1)
[   33.268415] [      C2] i8042: [7528] ** <- i8042 (interrupt, 0, 1)
[   33.333042] [      C2] i8042: [7544] ** <- i8042 (interrupt, 0, 1)
[   33.333556] [      C2] i8042: [7544] ** <- i8042 (interrupt, 0, 1)
[   33.394577] [      C2] i8042: [7560] ** <- i8042 (interrupt, 0, 1)
[   33.396730] [      C2] i8042: [7560] ** <- i8042 (interrupt, 0, 1)
[   34.994327] [      C2] i8042: [7960] ** <- i8042 (interrupt, 0, 1)

      reply	other threads:[~2024-08-29  2:18 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-27 23:44 [PATCH] mouse_cypress_ps2: Fix 6.11 regression on xps15z Woody Suwalski
2024-08-28  1:10 ` Dmitry Torokhov
2024-08-28  2:46   ` Woody Suwalski
2024-08-28 19:15     ` Dmitry Torokhov
2024-08-28 20:57       ` Dmitry Torokhov
2024-08-29  2:18         ` Woody Suwalski [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=e920460d-78d0-991d-822b-04d2ff40925a@gmail.com \
    --to=terraluna977@gmail.com \
    --cc=dmitry.torokhov@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox