All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] usb-audio: Fix boot-time crackling for Generic USB Audio device
@ 2026-07-13  8:10 Zhang Heng
  2026-07-13 13:20 ` Gordon Chen
  0 siblings, 1 reply; 8+ messages in thread
From: Zhang Heng @ 2026-07-13  8:10 UTC (permalink / raw)
  To: perex, tiwai
  Cc: kees, chengordon326, jussi, hulianqin, i, g, cryolitia, pav,
	linux-sound, linux-kernel, Zhang Heng

The Generic USB Audio device (0x1e0b:d01e) produces crackling noise during
system boot when the boot music plays. The issue disappears once the system
has fully started.

Kernel logs show xhci-ring warnings when the device initializes:
[    2.836118] usb 1-3: New USB device found, idVendor=1e0b, idProduct=d01e
[    9.654586] xhci_hcd 0000:03:00.3: Frame ID 644 (reg 5154, index 13) beyond range (645, 1539)
[    9.654589] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
[    9.655053] xhci_hcd 0000:03:00.3: Frame ID 644 (reg 5158, index 14) beyond range (645, 1539)
[    9.655055] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead

These warnings are generated by xhci_get_isoc_frame_id() in xhci-ring.c.
Data endpoints have multiple TDs per URB (number_of_packets > 1). For TD
index=0, the function adjusts start_frame to a valid range when validation
fails. However, for TD index>0, the calculated Frame IDs become stale
before validation completes, causing xhci_get_isoc_frame_id() to return
-EINVAL and trigger a fallback to SIA (Schedule Information Address) mode
for those TDs. This inconsistent scheduling between index=0 TD (direct
Frame ID) and index>0 TDs (SIA mode) within the same data endpoint causes
audio data misalignment and crackling noise during boot.

Sync endpoints have only one TD per URB (number_of_packets = 1), so they
don't suffer from this mixed scheduling issue.

Fix by setting URB_ISO_ASAP flag for the data endpoint of this specific
device. This flag causes the xHCI driver to skip Frame ID calculation
entirely and let hardware schedule via SIA bit for all TDs, ensuring
consistent scheduling within the data endpoint. Also add a quirk to skip
the first 4 packets on the sync endpoint.

Signed-off-by: Zhang Heng <zhangheng@kylinos.cn>
---
 sound/usb/endpoint.c | 3 +++
 sound/usb/quirks.c   | 8 ++++++++
 2 files changed, 11 insertions(+)

diff --git a/sound/usb/endpoint.c b/sound/usb/endpoint.c
index 24cd7692bd01..6a6a6797ac4b 100644
--- a/sound/usb/endpoint.c
+++ b/sound/usb/endpoint.c
@@ -1256,6 +1256,9 @@ static int data_ep_set_params(struct snd_usb_endpoint *ep)
 			goto out_of_memory;
 		u->urb->pipe = ep->pipe;
 		u->urb->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
+		/* Generic USB Audio (0x1e0b:d01e): use SIA for consistent scheduling */
+		if (ep->chip->usb_id == USB_ID(0x1e0b, 0xd01e))
+			u->urb->transfer_flags |= URB_ISO_ASAP;
 		u->urb->interval = 1 << ep->datainterval;
 		u->urb->context = u;
 		u->urb->complete = snd_complete_urb;
diff --git a/sound/usb/quirks.c b/sound/usb/quirks.c
index 2949a0d2d961..52a4fd352ea2 100644
--- a/sound/usb/quirks.c
+++ b/sound/usb/quirks.c
@@ -1938,6 +1938,14 @@ void snd_usb_endpoint_start_quirk(struct snd_usb_endpoint *ep)
 	    ep->type == SND_USB_ENDPOINT_TYPE_SYNC)
 		ep->skip_packets = 4;
 
+	/*
+	 * Generic USB Audio (0x1e0b:d01e) - skip initial sync packets
+	 * to avoid crackling noise during system boot
+	 */
+	if (ep->chip->usb_id == USB_ID(0x1e0b, 0xd01e) &&
+	    ep->type == SND_USB_ENDPOINT_TYPE_SYNC)
+		ep->skip_packets = 4;
+
 	/*
 	 * M-Audio Fast Track C400/C600 - when packets are not skipped, real
 	 * world latency varies by approx. +/- 50 frames (at 96kHz) each time
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH] usb-audio: Fix boot-time crackling for Generic USB Audio device
  2026-07-13  8:10 [PATCH] usb-audio: Fix boot-time crackling for Generic USB Audio device Zhang Heng
@ 2026-07-13 13:20 ` Gordon Chen
  2026-07-13 15:05   ` Takashi Iwai
  2026-07-14  1:58   ` Zhang Heng
  0 siblings, 2 replies; 8+ messages in thread
From: Gordon Chen @ 2026-07-13 13:20 UTC (permalink / raw)
  To: Zhang Heng, perex, tiwai
  Cc: kees, jussi, hulianqin, i, g, cryolitia, pav, linux-sound,
	linux-kernel

On Mon, Jul 13, 2026 at 04:10:48PM +0800, Zhang Heng wrote:
> +		/* Generic USB Audio (0x1e0b:d01e): use SIA for consistent scheduling */
> +		if (ep->chip->usb_id == USB_ID(0x1e0b, 0xd01e))
> +			u->urb->transfer_flags |= URB_ISO_ASAP;

Not a maintainer, just a bystander who was Cc'd -- two small notes on the
form of the patch, plus one question I can't answer myself.

A per-device usb_id comparison in the endpoint.c fast path seems like the
kind of thing the quirk_flags_table in quirks.c exists to avoid. Would a
QUIRK_FLAG_ISO_ASAP (set in the table, tested here as
chip->quirk_flags & QUIRK_FLAG_ISO_ASAP) work for you? It keeps endpoint.c
device-agnostic, and the next device with the same symptom becomes a
one-line table entry rather than another if.

> +	if (ep->chip->usb_id == USB_ID(0x1e0b, 0xd01e) &&
> +	    ep->type == SND_USB_ENDPOINT_TYPE_SYNC)
> +		ep->skip_packets = 4;

The block immediately above this one already does exactly
"type == SND_USB_ENDPOINT_TYPE_SYNC -> skip_packets = 4"; adding the ID to
that condition would avoid the duplicate if. Also, the changelog doesn't
say what this hunk contributes on its own -- is URB_ISO_ASAP alone
insufficient, and if so, what does skipping the first 4 sync packets fix
that ASAP doesn't? Right now the two changes are indistinguishable in the
commit message, and skip_packets = 4 reads as belt-and-braces.

And the question. If xhci_get_isoc_frame_id() really does compute a
stale Frame ID for TDs at index > 0 -- because the frame has advanced by
the time validation runs -- then isn't that generic to any isoc URB with
number_of_packets > 1, rather than specific to 1e0b:d01e? The index=0 TD
gets clamped back into range, later TDs don't, and the endpoint ends up
mixing explicit Frame IDs with SIA. Nothing in that description looks
device-specific to me. If it is in fact generic, a per-device quirk in
sound/usb papers over it for one device while every other multi-TD isoc
consumer keeps hitting it -- and the fix would belong in xhci-ring.c.

I'm not familiar enough with the xHCI scheduling side to say whether
that's right, so it may be worth Cc'ing Mathias Nyman
<mathias.nyman@linux.intel.com> to get a verdict before this is settled as
a usb-audio quirk. If your device is the only one that turns the mixed
scheduling into audible corruption, then the quirk is arguably the right
scope after all -- but that reasoning should be in the changelog.

One data point that cuts against my own question above: on an AMD xHCI
here, streaming to a class-compliant USB audio device, I see no "beyond
range" / "Ignore frame ID field" messages at all. If the index > 0
staleness were unconditional I would expect to hit it too. So something
about your device's packet layout or your host's timing is presumably
what actually trips it -- which would make the device-specific scope
defensible, but that is exactly the reasoning I would want to see spelled
out in the changelog.

Thanks,
Gordon Chen

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] usb-audio: Fix boot-time crackling for Generic USB Audio  device
  2026-07-13 13:20 ` Gordon Chen
@ 2026-07-13 15:05   ` Takashi Iwai
  2026-07-14 13:09     ` Zhang Heng
  2026-07-14  1:58   ` Zhang Heng
  1 sibling, 1 reply; 8+ messages in thread
From: Takashi Iwai @ 2026-07-13 15:05 UTC (permalink / raw)
  To: Gordon Chen
  Cc: Zhang Heng, perex, tiwai, kees, jussi, hulianqin, i, g, cryolitia,
	pav, linux-sound, linux-kernel

On Mon, 13 Jul 2026 15:20:29 +0200,
Gordon Chen wrote:
> 
> On Mon, Jul 13, 2026 at 04:10:48PM +0800, Zhang Heng wrote:
> > +		/* Generic USB Audio (0x1e0b:d01e): use SIA for consistent scheduling */
> > +		if (ep->chip->usb_id == USB_ID(0x1e0b, 0xd01e))
> > +			u->urb->transfer_flags |= URB_ISO_ASAP;
> 
> Not a maintainer, just a bystander who was Cc'd -- two small notes on the
> form of the patch, plus one question I can't answer myself.
> 
> A per-device usb_id comparison in the endpoint.c fast path seems like the
> kind of thing the quirk_flags_table in quirks.c exists to avoid. Would a
> QUIRK_FLAG_ISO_ASAP (set in the table, tested here as
> chip->quirk_flags & QUIRK_FLAG_ISO_ASAP) work for you? It keeps endpoint.c
> device-agnostic, and the next device with the same symptom becomes a
> one-line table entry rather than another if.
> 
> > +	if (ep->chip->usb_id == USB_ID(0x1e0b, 0xd01e) &&
> > +	    ep->type == SND_USB_ENDPOINT_TYPE_SYNC)
> > +		ep->skip_packets = 4;
> 
> The block immediately above this one already does exactly
> "type == SND_USB_ENDPOINT_TYPE_SYNC -> skip_packets = 4"; adding the ID to
> that condition would avoid the duplicate if. Also, the changelog doesn't
> say what this hunk contributes on its own -- is URB_ISO_ASAP alone
> insufficient, and if so, what does skipping the first 4 sync packets fix
> that ASAP doesn't? Right now the two changes are indistinguishable in the
> commit message, and skip_packets = 4 reads as belt-and-braces.
> 
> And the question. If xhci_get_isoc_frame_id() really does compute a
> stale Frame ID for TDs at index > 0 -- because the frame has advanced by
> the time validation runs -- then isn't that generic to any isoc URB with
> number_of_packets > 1, rather than specific to 1e0b:d01e? The index=0 TD
> gets clamped back into range, later TDs don't, and the endpoint ends up
> mixing explicit Frame IDs with SIA. Nothing in that description looks
> device-specific to me. If it is in fact generic, a per-device quirk in
> sound/usb papers over it for one device while every other multi-TD isoc
> consumer keeps hitting it -- and the fix would belong in xhci-ring.c.
> 
> I'm not familiar enough with the xHCI scheduling side to say whether
> that's right, so it may be worth Cc'ing Mathias Nyman
> <mathias.nyman@linux.intel.com> to get a verdict before this is settled as
> a usb-audio quirk. If your device is the only one that turns the mixed
> scheduling into audible corruption, then the quirk is arguably the right
> scope after all -- but that reasoning should be in the changelog.
> 
> One data point that cuts against my own question above: on an AMD xHCI
> here, streaming to a class-compliant USB audio device, I see no "beyond
> range" / "Ignore frame ID field" messages at all. If the index > 0
> staleness were unconditional I would expect to hit it too. So something
> about your device's packet layout or your host's timing is presumably
> what actually trips it -- which would make the device-specific scope
> defensible, but that is exactly the reasoning I would want to see spelled
> out in the changelog.

Agreed on all points!

Especially the workaround with URB_ISO_ASAP should be applied in a
more generic way.


thanks,

Takashi

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] usb-audio: Fix boot-time crackling for Generic USB Audio device
  2026-07-13 13:20 ` Gordon Chen
  2026-07-13 15:05   ` Takashi Iwai
@ 2026-07-14  1:58   ` Zhang Heng
  2026-07-14  7:40     ` Takashi Iwai
  1 sibling, 1 reply; 8+ messages in thread
From: Zhang Heng @ 2026-07-14  1:58 UTC (permalink / raw)
  To: Gordon Chen, perex, tiwai
  Cc: kees, jussi, hulianqin, i, g, cryolitia, pav, linux-sound,
	linux-kernel, mathias.nyman

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

> On Mon, Jul 13, 2026 at 04:10:48PM +0800, Zhang Heng wrote:
>> +		/* Generic USB Audio (0x1e0b:d01e): use SIA for consistent scheduling */
>> +		if (ep->chip->usb_id == USB_ID(0x1e0b, 0xd01e))
>> +			u->urb->transfer_flags |= URB_ISO_ASAP;
> Not a maintainer, just a bystander who was Cc'd -- two small notes on the
> form of the patch, plus one question I can't answer myself.
>
> A per-device usb_id comparison in the endpoint.c fast path seems like the
> kind of thing the quirk_flags_table in quirks.c exists to avoid. Would a
> QUIRK_FLAG_ISO_ASAP (set in the table, tested here as
> chip->quirk_flags & QUIRK_FLAG_ISO_ASAP) work for you? It keeps endpoint.c
> device-agnostic, and the next device with the same symptom becomes a
> one-line table entry rather than another if.
First of all, let me clarify: this issue occurs when there is startup music,
but it plays normally after entering the system. There is a heavy creaking
sound when the system is turned on here. Based on the information from dmesg
and syslog, there are a large number of xhci hcd frame synchronization
failures. I tried adding URB_ISO_ASAP here, and it will be much better,
with only a little noise.
>
>> +	if (ep->chip->usb_id == USB_ID(0x1e0b, 0xd01e) &&
>> +	    ep->type == SND_USB_ENDPOINT_TYPE_SYNC)
>> +		ep->skip_packets = 4;
> The block immediately above this one already does exactly
> "type == SND_USB_ENDPOINT_TYPE_SYNC -> skip_packets = 4"; adding the ID to
> that condition would avoid the duplicate if. Also, the changelog doesn't
> say what this hunk contributes on its own -- is URB_ISO_ASAP alone
> insufficient, and if so, what does skipping the first 4 sync packets fix
> that ASAP doesn't? Right now the two changes are indistinguishable in the
> commit message, and skip_packets = 4 reads as belt-and-braces.
As mentioned above, there is still a bit of noise when only adding 
URB_ISO_ASAP,

but skip-packets=4 can solve this problem.

>
> And the question. If xhci_get_isoc_frame_id() really does compute a
> stale Frame ID for TDs at index > 0 -- because the frame has advanced by
> the time validation runs -- then isn't that generic to any isoc URB with
> number_of_packets > 1, rather than specific to 1e0b:d01e? The index=0 TD
> gets clamped back into range, later TDs don't, and the endpoint ends up
> mixing explicit Frame IDs with SIA. Nothing in that description looks
> device-specific to me. If it is in fact generic, a per-device quirk in
> sound/usb papers over it for one device while every other multi-TD isoc
> consumer keeps hitting it -- and the fix would belong in xhci-ring.c.
>
> I'm not familiar enough with the xHCI scheduling side to say whether
> that's right, so it may be worth Cc'ing Mathias Nyman
> <mathias.nyman@linux.intel.com> to get a verdict before this is settled as
> a usb-audio quirk. If your device is the only one that turns the mixed
> scheduling into audible corruption, then the quirk is arguably the right
> scope after all -- but that reasoning should be in the changelog.
>
> One data point that cuts against my own question above: on an AMD xHCI
> here, streaming to a class-compliant USB audio device, I see no "beyond
> range" / "Ignore frame ID field" messages at all. If the index > 0
> staleness were unconditional I would expect to hit it too. So something
> about your device's packet layout or your host's timing is presumably
> what actually trips it -- which would make the device-specific scope
> defensible, but that is exactly the reasoning I would want to see spelled
> out in the changelog.
>
> Thanks,
> Gordon Chen
This repair is currently effective and easy for my sound card and system.

Perhaps the general operating system does not have startup music, so similar

issues may not have been found. Of course, not all USB sound cards have

such problems.


test.log is a log file.

[-- Attachment #2: test.log --]
[-- Type: text/x-log, Size: 1059602 bytes --]

Jun 23 16:37:01 dsd-pc systemd-modules-load[675]: Inserted module 'lp'
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] Linux version 5.4.18-164-generic (root@53b78b4ae1b1) (gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1)) #153 SMP Sun May 10 03:15:58 CST 2026 (KYLINOS 5.4.18-164.153-generic 5.4.18-164)
Jun 23 16:37:01 dsd-pc systemd-modules-load[675]: Inserted module 'ppdev'
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] Command line: BOOT_IMAGE=/vmlinuz-5.4.18-164-generic root=UUID=09981908-5afb-4a84-ac0d-fde50b2ab195 ro quiet splash loglevel=0 resume=UUID=ebba128c-6729-4564-9c03-d19393ef2243 security=kysec
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] KERNEL supported cpus:
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0]   Intel GenuineIntel
Jun 23 16:37:01 dsd-pc systemd-modules-load[675]: Inserted module 'parport_pc'
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0]   AMD AuthenticAMD
Jun 23 16:37:01 dsd-pc systemd-modules-load[675]: Inserted module 'hwmon_vid'
Jun 23 16:37:01 dsd-pc systemd[1]: Finished Flush Journal to Persistent Storage.
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0]   Hygon HygonGenuine
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0]   Centaur CentaurHauls
Jun 23 16:37:01 dsd-pc systemd[1]: Finished Set the console keyboard layout.
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0]   zhaoxin   Shanghai  
Jun 23 16:37:01 dsd-pc systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jun 23 16:37:01 dsd-pc systemd[1]: Reached target Local File Systems (Pre).
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] BIOS-provided physical RAM map:
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
Jun 23 16:37:01 dsd-pc systemd[1]: Finished udev Coldplug all Devices.
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] BIOS-e820: [mem 0x000000000009f000-0x00000000000bffff] reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] BIOS-e820: [mem 0x0000000000100000-0x000000004affffff] usable
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] BIOS-e820: [mem 0x000000004b000000-0x000000004b27ffff] reserved
Jun 23 16:37:01 dsd-pc systemd[1]: modprobe@chromeos_pstore.service: Succeeded.
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] BIOS-e820: [mem 0x000000004b280000-0x000000006ea8efff] usable
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] BIOS-e820: [mem 0x000000006ea8f000-0x000000007b6fefff] reserved
Jun 23 16:37:01 dsd-pc systemd[1]: Finished Load Kernel Module chromeos_pstore.
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] BIOS-e820: [mem 0x000000007b6ff000-0x000000007d4fefff] ACPI NVS
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] BIOS-e820: [mem 0x000000007d4ff000-0x000000007dffefff] ACPI data
Jun 23 16:37:01 dsd-pc systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] BIOS-e820: [mem 0x000000007dfff000-0x000000007dffffff] usable
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] BIOS-e820: [mem 0x000000007e000000-0x000000008fffffff] reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] BIOS-e820: [mem 0x00000000fd800000-0x00000000fdffffff] reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun 23 16:37:01 dsd-pc systemd-modules-load[675]: Failed to insert module 'it87': No such device
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed80fff] reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun 23 16:37:01 dsd-pc systemd-modules-load[675]: Inserted module 'ky_dlp'
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] BIOS-e820: [mem 0x0000000100000000-0x000000017f37ffff] usable
Jun 23 16:37:01 dsd-pc systemd-modules-load[675]: Module 'fuse' is built in
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] BIOS-e820: [mem 0x000000017f380000-0x000000017fffffff] reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] NX (Execute Disable) protection: active
Jun 23 16:37:01 dsd-pc systemd-modules-load[675]: Inserted module 'vmwgfx'
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] e820: update [mem 0x54c00018-0x54c2ac57] usable ==> usable
Jun 23 16:37:01 dsd-pc systemd[1]: Finished Load Kernel Modules.
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] e820: update [mem 0x54c00018-0x54c2ac57] usable ==> usable
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] extended physical RAM map:
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
Jun 23 16:37:01 dsd-pc systemd[1]: Mounting FUSE Control File System...
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x000000000009f000-0x00000000000bffff] reserved
Jun 23 16:37:01 dsd-pc systemd[1]: Mounting Kernel Configuration File System...
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x0000000000100000-0x000000004affffff] usable
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x000000004b000000-0x000000004b27ffff] reserved
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Init netctl and process protect value to kernel...
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x000000004b280000-0x0000000054c00017] usable
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x0000000054c00018-0x0000000054c2ac57] usable
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x0000000054c2ac58-0x000000006ea8efff] usable
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x000000006ea8f000-0x000000007b6fefff] reserved
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Apply Kernel Variables...
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x000000007b6ff000-0x000000007d4fefff] ACPI NVS
Jun 23 16:37:01 dsd-pc systemd[1]: Mounted FUSE Control File System.
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x000000007d4ff000-0x000000007dffefff] ACPI data
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x000000007dfff000-0x000000007dffffff] usable
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x000000007e000000-0x000000008fffffff] reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x00000000fd800000-0x00000000fdffffff] reserved
Jun 23 16:37:01 dsd-pc systemd[1]: Mounted Kernel Configuration File System.
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
Jun 23 16:37:01 dsd-pc systemd[1]: Condition check resulted in VMware vmblock fuse mount being skipped.
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x00000000fed80000-0x00000000fed80fff] reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Jun 23 16:37:01 dsd-pc systemd-sysctl[694]: Couldn't write '1' to 'kernel/yama/ptrace_scope', ignoring: No such file or directory
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x0000000100000000-0x000000017f37ffff] usable
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] reserve setup_data: [mem 0x000000017f380000-0x000000017fffffff] reserved
Jun 23 16:37:01 dsd-pc systemd-sysctl[694]: Not setting net/ipv4/conf/all/promote_secondaries (explicit setting exists).
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] efi: EFI v2.80 by Insyde Software Corp.
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] efi:  ACPI=0x7dffe000  ACPI 2.0=0x7dffe014  SMBIOS=0x6ee97000  SMBIOS 3.0=0x6ee95000  MEMATTR=0x5dbcb698  ESRT=0x5ed94798 
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] secureboot: Secure boot disabled
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] SMBIOS 3.4.0 present.
Jun 23 16:37:01 dsd-pc systemd-sysctl[694]: Not setting net/ipv4/conf/default/promote_secondaries (explicit setting exists).
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] DMI: Decenta M26-HG3300-MATX07-D4/M26-HG3300-MATX07-D4, BIOS 007 04/17/2026
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] tsc: Fast TSC calibration using PIT
Jun 23 16:37:01 dsd-pc systemd[1]: Finished Apply Kernel Variables.
Jun 23 16:37:01 dsd-pc kernel: [    0.000000][ 6] [    T0] tsc: Detected 2999.968 MHz processor
Jun 23 16:37:01 dsd-pc kernel: [    0.009047][ 6] [    T0] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.009048][ 6] [    T0] e820: remove [mem 0x000a0000-0x000fffff] usable
Jun 23 16:37:01 dsd-pc systemd[1]: conf2-update-db.service: Succeeded.
Jun 23 16:37:01 dsd-pc kernel: [    0.009054][ 6] [    T0] last_pfn = 0x17f380 max_arch_pfn = 0x400000000
Jun 23 16:37:01 dsd-pc kernel: [    0.009059][ 6] [    T0] MTRR default type: uncachable
Jun 23 16:37:01 dsd-pc kernel: [    0.009060][ 6] [    T0] MTRR fixed ranges enabled:
Jun 23 16:37:01 dsd-pc systemd[1]: Finished KYLIN CONF2 UPDATE DB.
Jun 23 16:37:01 dsd-pc kernel: [    0.009062][ 6] [    T0]   00000-9FFFF write-back
Jun 23 16:37:01 dsd-pc kernel: [    0.009063][ 6] [    T0]   A0000-BFFFF uncachable
Jun 23 16:37:01 dsd-pc kernel: [    0.009064][ 6] [    T0]   C0000-FFFFF write-through
Jun 23 16:37:01 dsd-pc kernel: [    0.009064][ 6] [    T0] MTRR variable ranges enabled:
Jun 23 16:37:01 dsd-pc kernel: [    0.009066][ 6] [    T0]   0 base 000000000000 mask FFFF80000000 write-back
Jun 23 16:37:01 dsd-pc LIB(extend): Failed to connect: 拒绝连接 (111)
Jun 23 16:37:01 dsd-pc kernel: [    0.009066][ 6] [    T0]   1 disabled
Jun 23 16:37:01 dsd-pc kernel: [    0.009067][ 6] [    T0]   2 disabled
Jun 23 16:37:01 dsd-pc kernel: [    0.009067][ 6] [    T0]   3 disabled
Jun 23 16:37:01 dsd-pc kernel: [    0.009068][ 6] [    T0]   4 disabled
Jun 23 16:37:01 dsd-pc kernel: [    0.009068][ 6] [    T0]   5 disabled
Jun 23 16:37:01 dsd-pc kernel: [    0.009069][ 6] [    T0]   6 disabled
Jun 23 16:37:01 dsd-pc LIB(extend): time="2026-06-23 16:37:00": pid=693 uid=0 comm="/usr/sbin/kysec-sync" op="none" obj="none" message="bios_usb disable"
Jun 23 16:37:01 dsd-pc kernel: [    0.009070][ 6] [    T0]   7 base 0000FF000000 mask FFFFFF000000 write-protect
Jun 23 16:37:01 dsd-pc kernel: [    0.009071][ 6] [    T0] TOM2: 0000000180000000 aka 6144M
Jun 23 16:37:01 dsd-pc kernel: [    0.010120][ 6] [    T0] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Jun 23 16:37:01 dsd-pc kernel: [    0.010207][ 6] [    T0] last_pfn = 0x7e000 max_arch_pfn = 0x400000000
Jun 23 16:37:01 dsd-pc kernel: [    0.111236][ 6] [    T0] esrt: Reserving ESRT space from 0x000000005ed94798 to 0x000000005ed947d0.
Jun 23 16:37:01 dsd-pc systemd[1]: Finished Init netctl and process protect value to kernel.
Jun 23 16:37:01 dsd-pc kernel: [    0.111242][ 6] [    T0] e820: update [mem 0x5ed94000-0x5ed94fff] usable ==> reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.111260][ 6] [    T0] check: Scanning 1 areas for low memory corruption
Jun 23 16:37:01 dsd-pc kernel: [    0.111264][ 6] [    T0] Using GB pages for direct mapping
Jun 23 16:37:01 dsd-pc systemd[1]: Starting udev Kernel Device Manager...
Jun 23 16:37:01 dsd-pc kernel: [    0.111266][ 6] [    T0] BRK [0x16be01000, 0x16be01fff] PGTABLE
Jun 23 16:37:01 dsd-pc kernel: [    0.111268][ 6] [    T0] BRK [0x16be02000, 0x16be02fff] PGTABLE
Jun 23 16:37:01 dsd-pc kernel: [    0.111269][ 6] [    T0] BRK [0x16be03000, 0x16be03fff] PGTABLE
Jun 23 16:37:01 dsd-pc systemd-udevd[713]: Configuration file /etc/udev/rules.d/99-mwv207.rules is marked executable. Please remove executable permission bits. Proceeding anyway.
Jun 23 16:37:01 dsd-pc kernel: [    0.111322][ 6] [    T0] BRK [0x16be04000, 0x16be04fff] PGTABLE
Jun 23 16:37:01 dsd-pc systemd[1]: Started udev Kernel Device Manager.
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Show Plymouth Boot Screen...
Jun 23 16:37:01 dsd-pc systemd[1]: plymouth-start.service: Succeeded.
Jun 23 16:37:01 dsd-pc systemd[1]: Started Show Plymouth Boot Screen.
Jun 23 16:37:01 dsd-pc systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped.
Jun 23 16:37:01 dsd-pc systemd[1]: Started Forward Password Requests to Plymouth Directory Watch.
Jun 23 16:37:01 dsd-pc systemd[1]: Reached target Local Encrypted Volumes.
Jun 23 16:37:01 dsd-pc systemd-udevd[739]: Using default interface naming scheme 'v245'.
Jun 23 16:37:01 dsd-pc systemd-udevd[739]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jun 23 16:37:01 dsd-pc systemd[1]: Found device kimtigo_SSD_512GB SYSBOOT.
Jun 23 16:37:01 dsd-pc systemd[1]: Found device kimtigo_SSD_512GB ESP.
Jun 23 16:37:01 dsd-pc systemd[1]: Found device kimtigo_SSD_512GB DATA.
Jun 23 16:37:01 dsd-pc systemd[1]: Found device kimtigo_SSD_512GB SWAP.
Jun 23 16:37:01 dsd-pc systemd[1]: Activating swap /dev/disk/by-uuid/ebba128c-6729-4564-9c03-d19393ef2243...
Jun 23 16:37:01 dsd-pc systemd[1]: Reached target Local File Systems.
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Set console font and keymap...
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Create final runtime dir for shutdown pivot root...
Jun 23 16:37:01 dsd-pc kernel: [    0.111324][ 6] [    T0] BRK [0x16be05000, 0x16be05fff] PGTABLE
Jun 23 16:37:01 dsd-pc kernel: [    0.111516][ 6] [    T0] BRK [0x16be06000, 0x16be06fff] PGTABLE
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
Jun 23 16:37:01 dsd-pc kernel: [    0.111574][ 6] [    T0] BRK [0x16be07000, 0x16be07fff] PGTABLE
Jun 23 16:37:01 dsd-pc kernel: [    0.111679][ 6] [    T0] BRK [0x16be08000, 0x16be08fff] PGTABLE
Jun 23 16:37:01 dsd-pc kernel: [    0.111758][ 6] [    T0] BRK [0x16be09000, 0x16be09fff] PGTABLE
Jun 23 16:37:01 dsd-pc systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
Jun 23 16:37:01 dsd-pc kernel: [    0.111837][ 6] [    T0] BRK [0x16be0a000, 0x16be0afff] PGTABLE
Jun 23 16:37:01 dsd-pc kernel: [    0.111893][ 6] [    T0] secureboot: Secure boot disabled
Jun 23 16:37:01 dsd-pc kernel: [    0.111894][ 6] [    T0] RAMDISK: [mem 0x2c75a000-0x316eafff]
Jun 23 16:37:01 dsd-pc kernel: [    0.111899][ 6] [    T0] ACPI: Early table checksum verification disabled
Jun 23 16:37:01 dsd-pc systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
Jun 23 16:37:01 dsd-pc kernel: [    0.111903][ 6] [    T0] ACPI: RSDP 0x000000007DFFE014 000024 (v02 INSYDE)
Jun 23 16:37:01 dsd-pc kernel: [    0.111907][ 6] [    T0] ACPI: XSDT 0x000000007DFCB188 0000D4 (v01 INSYDE EDK2HYGN 00000002      01000013)
Jun 23 16:37:01 dsd-pc kernel: [    0.111913][ 6] [    T0] ACPI: FACP 0x000000007DFE9000 00010C (v05 INSYDE EDK2HYGN 00000002      01000013)
Jun 23 16:37:01 dsd-pc kernel: [    0.111918][ 6] [    T0] ACPI: DSDT 0x000000007DFD2000 010ACB (v02 INSYDE EDK2HYGN 00000002      01000013)
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Create Volatile Files and Directories...
Jun 23 16:37:01 dsd-pc kernel: [    0.111922][ 6] [    T0] ACPI: FACS 0x000000007D436000 000040
Jun 23 16:37:01 dsd-pc kernel: [    0.111924][ 6] [    T0] ACPI: UEFI 0x000000007D4FE000 0001CF (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
Jun 23 16:37:01 dsd-pc systemd[1]: Finished Create final runtime dir for shutdown pivot root.
Jun 23 16:37:01 dsd-pc kernel: [    0.111927][ 6] [    T0] ACPI: SSDT 0x000000007DFFA000 002FE9 (v03 Insyde DSDACPI  00001011 INTL 20130117)
Jun 23 16:37:01 dsd-pc kernel: [    0.111930][ 6] [    T0] ACPI: SSDT 0x000000007DFF0000 008C4C (v02 HYGON  HGN ALIB 00000002 MSFT 04000000)
Jun 23 16:37:01 dsd-pc kernel: [    0.111933][ 6] [    T0] ACPI: SSDT 0x000000007DFEE000 001BF4 (v01 HYGON  HGN CPU  00000001 HYGN 00000001)
Jun 23 16:37:01 dsd-pc kernel: [    0.111936][ 6] [    T0] ACPI: CRAT 0x000000007DFED000 000F50 (v01 HYGON  HGN CRAT 00000001 HYGN 00000001)
Jun 23 16:37:01 dsd-pc systemd[1]: Finished Set console font and keymap.
Jun 23 16:37:01 dsd-pc kernel: [    0.111939][ 6] [    T0] ACPI: CDIT 0x000000007DFEC000 000029 (v01 HYGON  HGN CDIT 00000001 HYGN 00000001)
Jun 23 16:37:01 dsd-pc systemd-udevd[737]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jun 23 16:37:01 dsd-pc kernel: [    0.111941][ 6] [    T0] ACPI: ASF! 0x000000007DFEB000 0000A5 (v32 INSYDE EDK2HYGN 00000002      01000013)
Jun 23 16:37:01 dsd-pc kernel: [    0.111944][ 6] [    T0] ACPI: BOOT 0x000000007DFEA000 000028 (v01 INSYDE EDK2HYGN 00000002      01000013)
Jun 23 16:37:01 dsd-pc kernel: [    0.111947][ 6] [    T0] ACPI: HPET 0x000000007DFE8000 000038 (v01 INSYDE EDK2HYGN 00000002      01000013)
Jun 23 16:37:01 dsd-pc systemd[1]: plymouth-read-write.service: Succeeded.
Jun 23 16:37:01 dsd-pc kernel: [    0.111949][ 6] [    T0] ACPI: APIC 0x000000007DFE7000 0004B2 (v03 INSYDE EDK2HYGN 00000002      01000013)
Jun 23 16:37:01 dsd-pc kernel: [    0.111952][ 6] [    T0] ACPI: MCFG 0x000000007DFE6000 00003C (v01 INSYDE EDK2HYGN 00000002      01000013)
Jun 23 16:37:01 dsd-pc systemd[1]: Finished Tell Plymouth To Write Out Runtime Data.
Jun 23 16:37:01 dsd-pc kernel: [    0.111954][ 6] [    T0] ACPI: SLIC 0x000000007DFE5000 000176 (v01 INSYDE EDK2HYGN 00000002      01000013)
Jun 23 16:37:01 dsd-pc kernel: [    0.111957][ 6] [    T0] ACPI: WDAT 0x000000007DFE4000 00017C (v01 INSYDE EDK2HYGN 00000002      01000013)
Jun 23 16:37:01 dsd-pc kernel: [    0.111960][ 6] [    T0] ACPI: WDRT 0x000000007DFE3000 000047 (v01 INSYDE EDK2HYGN 00000002      01000013)
Jun 23 16:37:01 dsd-pc kernel: [    0.111962][ 6] [    T0] ACPI: BERT 0x000000007DFD1000 000030 (v01 HYGON  HGN BERT 00000001 HGN  00000001)
Jun 23 16:37:01 dsd-pc systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Jun 23 16:37:01 dsd-pc kernel: [    0.111965][ 6] [    T0] ACPI: EINJ 0x000000007DFCF000 000150 (v01 HYGON  HGN EINJ 00000001 HGN  00000001)
Jun 23 16:37:01 dsd-pc kernel: [    0.111967][ 6] [    T0] ACPI: HEST 0x000000007DFD0000 0007DC (v01 HYGON  HGN HEST 00000001 HGN  00000001)
Jun 23 16:37:01 dsd-pc kernel: [    0.111970][ 6] [    T0] ACPI: IVRS 0x000000007DFCE000 0000D0 (v02 HYGON  HGN IVRS 00000001 HYGN 00000000)
Jun 23 16:37:01 dsd-pc kernel: [    0.111972][ 6] [    T0] ACPI: SSDT 0x000000007DFCC000 001616 (v01 Hygon  CPMCMN   00000001 INTL 20130117)
Jun 23 16:37:01 dsd-pc kernel: [    0.111975][ 6] [    T0] ACPI: FPDT 0x000000007DFFD000 000044 (v01 INSYDE EDK2HYGN 00000002      01000013)
Jun 23 16:37:01 dsd-pc systemd[1]: Finished Create Volatile Files and Directories.
Jun 23 16:37:01 dsd-pc kernel: [    0.111978][ 6] [    T0] ACPI: SSDT 0x000000007DFCA000 0000F8 (v02 INSYDE PcdTabl  00001000 INTL 20130117)
Jun 23 16:37:01 dsd-pc kernel: [    0.111986][ 6] [    T0] ACPI: Local APIC address 0xfee00000
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Security Auditing Service...
Jun 23 16:37:01 dsd-pc kernel: [    0.112135][ 6] [    T0] No NUMA configuration found
Jun 23 16:37:01 dsd-pc kernel: [    0.112136][ 6] [    T0] Faking a node at [mem 0x0000000000000000-0x000000017f37ffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.112145][ 6] [    T0] NODE_DATA(0) allocated [mem 0x17f355000-0x17f37ffff]
Jun 23 16:37:01 dsd-pc systemd[1]: Started Kysdk Security Log Service.
Jun 23 16:37:01 dsd-pc kernel: [    0.112388][ 6] [    T0] Zone ranges:
Jun 23 16:37:01 dsd-pc kernel: [    0.112389][ 6] [    T0]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Jun 23 16:37:01 dsd-pc systemd[1]: Started Kysec Log Service.
Jun 23 16:37:01 dsd-pc kernel: [    0.112390][ 6] [    T0]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.112391][ 6] [    T0]   Normal   [mem 0x0000000100000000-0x000000017f37ffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.112392][ 6] [    T0]   Device   empty
Jun 23 16:37:01 dsd-pc kernel: [    0.112393][ 6] [    T0] Movable zone start for each node
Jun 23 16:37:01 dsd-pc systemd[1]: Started SELinux Config Service.
Jun 23 16:37:01 dsd-pc kernel: [    0.112396][ 6] [    T0] Early memory node ranges
Jun 23 16:37:01 dsd-pc kernel: [    0.112397][ 6] [    T0]   node   0: [mem 0x0000000000001000-0x000000000009efff]
Jun 23 16:37:01 dsd-pc kernel: [    0.112398][ 6] [    T0]   node   0: [mem 0x0000000000100000-0x000000004affffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.112399][ 6] [    T0]   node   0: [mem 0x000000004b280000-0x000000006ea8efff]
Jun 23 16:37:01 dsd-pc auditd[813]: Started dispatcher: /sbin/audispd pid: 815
Jun 23 16:37:01 dsd-pc kernel: [    0.112399][ 6] [    T0]   node   0: [mem 0x000000007dfff000-0x000000007dffffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.112400][ 6] [    T0]   node   0: [mem 0x0000000100000000-0x000000017f37ffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.112658][ 6] [    T0] Zeroed struct page in unavailable ranges: 38994 pages
Jun 23 16:37:01 dsd-pc kernel: [    0.112660][ 6] [    T0] Initmem setup node 0 [mem 0x0000000000001000-0x000000017f37ffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.112661][ 6] [    T0] On node 0 totalpages: 973614
Jun 23 16:37:01 dsd-pc kernel: [    0.112662][ 6] [    T0]   DMA zone: 64 pages used for memmap
Jun 23 16:37:01 dsd-pc auditd[813]: Init complete, auditd 2.8.5 listening for events (startup state enable)
Jun 23 16:37:01 dsd-pc kernel: [    0.112663][ 6] [    T0]   DMA zone: 23 pages reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.112664][ 6] [    T0]   DMA zone: 3998 pages, LIFO batch:0
Jun 23 16:37:01 dsd-pc kernel: [    0.112715][ 6] [    T0]   DMA32 zone: 7009 pages used for memmap
Jun 23 16:37:01 dsd-pc systemd[1]: Started Network Name Resolution.
Jun 23 16:37:01 dsd-pc kernel: [    0.112716][ 6] [    T0]   DMA32 zone: 448528 pages, LIFO batch:63
Jun 23 16:37:01 dsd-pc kernel: [    0.122940][ 6] [    T0]   Normal zone: 8142 pages used for memmap
Jun 23 16:37:01 dsd-pc kernel: [    0.122944][ 6] [    T0]   Normal zone: 521088 pages, LIFO batch:63
Jun 23 16:37:01 dsd-pc kernel: [    0.131113][ 6] [    T0] ACPI: PM-Timer IO Port: 0x408
Jun 23 16:37:01 dsd-pc audispd: No plugins found, exiting
Jun 23 16:37:01 dsd-pc kernel: [    0.131118][ 6] [    T0] ACPI: Local APIC address 0xfee00000
Jun 23 16:37:01 dsd-pc kernel: [    0.131131][ 6] [    T0] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
Jun 23 16:37:01 dsd-pc kernel: [    0.131158][ 6] [    T0] IOAPIC[0]: apic_id 128, version 33, address 0xfec00000, GSI 0-23
Jun 23 16:37:01 dsd-pc systemd[1]: Started Network Time Synchronization.
Jun 23 16:37:01 dsd-pc kernel: [    0.131163][ 6] [    T0] IOAPIC[1]: apic_id 129, version 33, address 0xfd900000, GSI 24-55
Jun 23 16:37:01 dsd-pc kernel: [    0.131176][ 6] [    T0] I/O APIC 0xfec01000 registers return all ones, skipping!
Jun 23 16:37:01 dsd-pc kernel: [    0.131191][ 6] [    T0] I/O APIC 0xfec01000 registers return all ones, skipping!
Jun 23 16:37:01 dsd-pc systemd[1]: Reached target System Time Set.
Jun 23 16:37:01 dsd-pc kernel: [    0.131205][ 6] [    T0] I/O APIC 0xfec01000 registers return all ones, skipping!
Jun 23 16:37:01 dsd-pc kernel: [    0.131218][ 6] [    T0] I/O APIC 0xfec01000 registers return all ones, skipping!
Jun 23 16:37:01 dsd-pc kernel: [    0.131233][ 6] [    T0] I/O APIC 0xfec01000 registers return all ones, skipping!
Jun 23 16:37:01 dsd-pc kernel: [    0.131246][ 6] [    T0] I/O APIC 0xfec01000 registers return all ones, skipping!
Jun 23 16:37:01 dsd-pc kernel: [    0.131260][ 6] [    T0] I/O APIC 0xfec01000 registers return all ones, skipping!
Jun 23 16:37:01 dsd-pc systemd[1]: Reached target System Time Synchronized.
Jun 23 16:37:01 dsd-pc kernel: [    0.131264][ 6] [    T0] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun 23 16:37:01 dsd-pc kernel: [    0.131266][ 6] [    T0] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
Jun 23 16:37:01 dsd-pc kernel: [    0.131268][ 6] [    T0] ACPI: IRQ0 used by override.
Jun 23 16:37:01 dsd-pc systemd[1]: Condition check resulted in Authentication service for virtual machines hosted on VMware being skipped.
Jun 23 16:37:01 dsd-pc kernel: [    0.131269][ 6] [    T0] ACPI: IRQ9 used by override.
Jun 23 16:37:01 dsd-pc kernel: [    0.131271][ 6] [    T0] Using ACPI (MADT) for SMP configuration information
Jun 23 16:37:01 dsd-pc kernel: [    0.131273][ 6] [    T0] ACPI: HPET id: 0x10228201 base: 0xfed00000
Jun 23 16:37:01 dsd-pc kernel: [    0.131279][ 6] [    T0] smpboot: Allowing 16 CPUs, 0 hotplug CPUs
Jun 23 16:37:01 dsd-pc kernel: [    0.131304][ 6] [    T0] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Jun 23 16:37:01 dsd-pc systemd[1]: Condition check resulted in Service for virtual machines hosted on VMware being skipped.
Jun 23 16:37:01 dsd-pc kernel: [    0.131305][ 6] [    T0] PM: Registered nosave memory: [mem 0x0009f000-0x000fffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.131307][ 6] [    T0] PM: Registered nosave memory: [mem 0x4b000000-0x4b27ffff]
Jun 23 16:37:01 dsd-pc systemd[1]: Activated swap /dev/disk/by-uuid/ebba128c-6729-4564-9c03-d19393ef2243.
Jun 23 16:37:01 dsd-pc kernel: [    0.131308][ 6] [    T0] PM: Registered nosave memory: [mem 0x5ed94000-0x5ed94fff]
Jun 23 16:37:01 dsd-pc kernel: [    0.131310][ 6] [    T0] PM: Registered nosave memory: [mem 0x6ea8f000-0x7dffefff]
Jun 23 16:37:01 dsd-pc systemd[1]: Reached target Swap.
Jun 23 16:37:01 dsd-pc kernel: [    0.131311][ 6] [    T0] PM: Registered nosave memory: [mem 0x7e000000-0xffffffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.131314][ 6] [    T0] [mem 0x90000000-0xfd7fffff] available for PCI devices
Jun 23 16:37:01 dsd-pc kernel: [    0.131316][ 6] [    T0] Booting paravirtualized kernel on bare hardware
Jun 23 16:37:01 dsd-pc augenrules[832]: /sbin/augenrules: No change
Jun 23 16:37:01 dsd-pc kernel: [    0.131320][ 6] [    T0] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Jun 23 16:37:01 dsd-pc kernel: [    0.131329][ 6] [    T0] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
Jun 23 16:37:01 dsd-pc kernel: [    0.132453][ 6] [    T0] percpu: Embedded 55 pages/cpu s188416 r8192 d28672 u262144
Jun 23 16:37:01 dsd-pc kernel: [    0.132460][ 6] [    T0] pcpu-alloc: s188416 r8192 d28672 u262144 alloc=1*2097152
Jun 23 16:37:01 dsd-pc auditctl: WARNING - 32/64 bit syscall mismatch in line 6, you should specify an arch
Jun 23 16:37:01 dsd-pc augenrules[850]: No rules
Jun 23 16:37:01 dsd-pc augenrules[850]: enabled 1
Jun 23 16:37:01 dsd-pc augenrules[850]: failure 1
Jun 23 16:37:01 dsd-pc augenrules[850]: pid 813
Jun 23 16:37:01 dsd-pc augenrules[850]: rate_limit 0
Jun 23 16:37:01 dsd-pc augenrules[850]: backlog_limit 8192
Jun 23 16:37:01 dsd-pc augenrules[850]: lost 0
Jun 23 16:37:01 dsd-pc augenrules[850]: backlog 0
Jun 23 16:37:01 dsd-pc augenrules[850]: backlog_wait_time 15000
Jun 23 16:37:01 dsd-pc augenrules[850]: enabled 1
Jun 23 16:37:01 dsd-pc augenrules[850]: failure 1
Jun 23 16:37:01 dsd-pc augenrules[850]: pid 813
Jun 23 16:37:01 dsd-pc augenrules[850]: rate_limit 0
Jun 23 16:37:01 dsd-pc augenrules[850]: backlog_limit 8192
Jun 23 16:37:01 dsd-pc augenrules[850]: lost 0
Jun 23 16:37:01 dsd-pc augenrules[850]: backlog 0
Jun 23 16:37:01 dsd-pc augenrules[850]: backlog_wait_time 15000
Jun 23 16:37:01 dsd-pc augenrules[850]: enabled 1
Jun 23 16:37:01 dsd-pc augenrules[850]: failure 1
Jun 23 16:37:01 dsd-pc kernel: [    0.132461][ 6] [    T0] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
Jun 23 16:37:01 dsd-pc kernel: [    0.132495][ 6] [    T0] Built 1 zonelists, mobility grouping on.  Total pages: 958376
Jun 23 16:37:01 dsd-pc kernel: [    0.132495][ 6] [    T0] Policy zone: Normal
Jun 23 16:37:01 dsd-pc augenrules[850]: pid 813
Jun 23 16:37:01 dsd-pc kernel: [    0.132497][ 6] [    T0] Kernel command line: BOOT_IMAGE=/vmlinuz-5.4.18-164-generic root=UUID=09981908-5afb-4a84-ac0d-fde50b2ab195 ro quiet splash loglevel=0 resume=UUID=ebba128c-6729-4564-9c03-d19393ef2243 security=kysec
Jun 23 16:37:01 dsd-pc kernel: [    0.133315][ 6] [    T0] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
Jun 23 16:37:01 dsd-pc kernel: [    0.133701][ 6] [    T0] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Jun 23 16:37:01 dsd-pc kernel: [    0.133824][ 6] [    T0] mem auto-init: stack:off, heap alloc:off, heap free:off
Jun 23 16:37:01 dsd-pc augenrules[850]: rate_limit 0
Jun 23 16:37:01 dsd-pc kernel: [    0.145367][ 6] [    T0] Calgary: detecting Calgary via BIOS EBDA area
Jun 23 16:37:01 dsd-pc augenrules[850]: backlog_limit 8192
Jun 23 16:37:01 dsd-pc kernel: [    0.145369][ 6] [    T0] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Jun 23 16:37:01 dsd-pc augenrules[850]: lost 0
Jun 23 16:37:01 dsd-pc kernel: [    0.158596][ 6] [    T0] Memory: 3522524K/3894456K available (14339K kernel code, 2476K rwdata, 7476K rodata, 2768K init, 6516K bss, 371932K reserved, 0K cma-reserved)
Jun 23 16:37:01 dsd-pc kernel: [    0.158823][ 6] [    T0] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
Jun 23 16:37:01 dsd-pc kernel: [    0.158845][ 6] [    T0] ftrace: allocating 46983 entries in 184 pages
Jun 23 16:37:01 dsd-pc kernel: [    0.176540][ 6] [    T0] rcu: Hierarchical RCU implementation.
Jun 23 16:37:01 dsd-pc augenrules[850]: backlog 0
Jun 23 16:37:01 dsd-pc augenrules[850]: backlog_wait_time 0
Jun 23 16:37:01 dsd-pc kernel: [    0.176542][ 6] [    T0] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
Jun 23 16:37:01 dsd-pc kernel: [    0.176542][ 6] [    T0] 	Tasks RCU enabled.
Jun 23 16:37:01 dsd-pc kernel: [    0.176543][ 6] [    T0] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
Jun 23 16:37:01 dsd-pc systemd[1]: Started Security Auditing Service.
Jun 23 16:37:01 dsd-pc kernel: [    0.176544][ 6] [    T0] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
Jun 23 16:37:01 dsd-pc kernel: [    0.179237][ 6] [    T0] NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
Jun 23 16:37:01 dsd-pc kernel: [    0.181599][ 6] [    T0] random: crng done (trusting CPU's manufacturer)
Jun 23 16:37:01 dsd-pc kernel: [    0.181633][ 6] [    T0] Console: colour dummy device 80x25
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Jun 23 16:37:01 dsd-pc kernel: [    0.181637][ 6] [    T0] printk: console [tty0] enabled
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: Device(1d6b:0002) insert...
Jun 23 16:37:01 dsd-pc kernel: [    0.181659][ 6] [    T0] ACPI: Core revision 20190816
Jun 23 16:37:01 dsd-pc kernel: [    0.181906][ 6] [    T0] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
Jun 23 16:37:01 dsd-pc kernel: [    0.181936][ 6] [    T0] APIC: Switch to symmetric I/O mode setup
Jun 23 16:37:01 dsd-pc kernel: [    0.253805][ 6] [    T0] Switched APIC routing to physical flat.
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: Device(1d6b:0003) insert...
Jun 23 16:37:01 dsd-pc kernel: [    0.255073][ 6] [    T0] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun 23 16:37:01 dsd-pc systemd[1]: Finished Update UTMP about System Boot/Shutdown.
Jun 23 16:37:01 dsd-pc kernel: [    0.273936][ 6] [    T0] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2b3e2705815, max_idle_ns: 440795226061 ns
Jun 23 16:37:01 dsd-pc systemd[1]: Reached target System Initialization.
Jun 23 16:37:01 dsd-pc kernel: [    0.273941][ 6] [    T0] Calibrating delay loop (skipped), value calculated using timer frequency.. 5999.93 BogoMIPS (lpj=11999872)
Jun 23 16:37:01 dsd-pc kernel: [    0.273943][ 6] [    T0] pid_max: default: 32768 minimum: 301
Jun 23 16:37:01 dsd-pc kernel: [    0.277994][ 6] [    T0] LSM: Security Framework initializing
Jun 23 16:37:01 dsd-pc systemd[1]: Started ACPI Events Check.
Jun 23 16:37:01 dsd-pc kernel: [    0.278004][ 6] [    T0] KYCP: Initializing.
Jun 23 16:37:01 dsd-pc kernel: [    0.278005][ 6] [    T0] KYCP: Initialized successfully.
Jun 23 16:37:01 dsd-pc kernel: [    0.278006][ 6] [    T0] KYSEC: Initializing.
Jun 23 16:37:01 dsd-pc kernel: [    0.278036][ 6] [    T0] KYSEC: devinfo: devlist init finished
Jun 23 16:37:01 dsd-pc kernel: [    0.278046][ 6] [    T0] KYSEC: Initialized successfully.
Jun 23 16:37:01 dsd-pc systemd[1]: Started CUPS Scheduler.
Jun 23 16:37:01 dsd-pc kernel: [    0.278047][ 6] [    T0] Box:  Initializing.
Jun 23 16:37:01 dsd-pc kernel: [    0.278054][ 6] [    T0] Box :  Initialized successfully.
Jun 23 16:37:01 dsd-pc kernel: [    0.278059][ 6] [    T0] KYEXTEND: Initialized successfully.
Jun 23 16:37:01 dsd-pc systemd[1]: Started Daily apt download activities.
Jun 23 16:37:01 dsd-pc kernel: [    0.278110][ 6] [    T0] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
Jun 23 16:37:01 dsd-pc kernel: [    0.278120][ 6] [    T0] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
Jun 23 16:37:01 dsd-pc systemd[1]: Started Daily apt upgrade and clean activities.
Jun 23 16:37:01 dsd-pc kernel: [    0.278465][ 6] [    T0] LVT offset 1 assigned for vector 0xf9
Jun 23 16:37:01 dsd-pc kernel: [    0.278545][ 6] [    T0] LVT offset 2 assigned for vector 0xf4
Jun 23 16:37:01 dsd-pc kernel: [    0.278567][ 6] [    T0] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
Jun 23 16:37:01 dsd-pc kernel: [    0.278568][ 6] [    T0] Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0
Jun 23 16:37:01 dsd-pc systemd[1]: Started Periodic ext4 Online Metadata Check for All Filesystems.
Jun 23 16:37:01 dsd-pc kernel: [    0.278573][ 6] [    T0] Spectre V2 : Mitigation: Retpolines
Jun 23 16:37:01 dsd-pc kernel: [    0.278573][ 6] [    T0] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Jun 23 16:37:01 dsd-pc systemd[1]: Started Discard unused blocks once a week.
Jun 23 16:37:01 dsd-pc kernel: [    0.278574][ 6] [    T0] RETBleed: Mitigation: untrained return thunk
Jun 23 16:37:01 dsd-pc kernel: [    0.278575][ 6] [    T0] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Jun 23 16:37:01 dsd-pc kernel: [    0.278577][ 6] [    T0] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
Jun 23 16:37:01 dsd-pc kernel: [    0.282159][ 6] [    T0] Freeing SMP alternatives memory: 40K
Jun 23 16:37:01 dsd-pc systemd[1]: Started Call Journal Flush By Timer.
Jun 23 16:37:01 dsd-pc kernel: [    0.390493][ 6] [    T1] smpboot: CPU0: Hygon C86-3G (OPN:3350) (family: 0x18, model: 0x2, stepping: 0x2)
Jun 23 16:37:01 dsd-pc kernel: [    0.390999][ 6] [    T1] Performance Events: Fam18h core perfctr, HYGON PMU driver.
Jun 23 16:37:01 dsd-pc systemd[1]: Started 更新源管理器启动时间的定时器生成工具.
Jun 23 16:37:01 dsd-pc kernel: [    0.391003][ 6] [    T1] ... version:                0
Jun 23 16:37:01 dsd-pc kernel: [    0.391004][ 6] [    T1] ... bit width:              48
Jun 23 16:37:01 dsd-pc systemd[1]: Started kylin-update-rescue.
Jun 23 16:37:01 dsd-pc kernel: [    0.391004][ 6] [    T1] ... generic registers:      6
Jun 23 16:37:01 dsd-pc kernel: [    0.391005][ 6] [    T1] ... value mask:             0000ffffffffffff
Jun 23 16:37:01 dsd-pc systemd[1]: Started Daily man-db regeneration.
Jun 23 16:37:01 dsd-pc kernel: [    0.391006][ 6] [    T1] ... max period:             00007fffffffffff
Jun 23 16:37:01 dsd-pc kernel: [    0.391006][ 6] [    T1] ... fixed-purpose events:   0
Jun 23 16:37:01 dsd-pc kernel: [    0.391006][ 6] [    T1] ... event mask:             000000000000003f
Jun 23 16:37:01 dsd-pc kernel: [    0.391044][ 6] [    T1] rcu: Hierarchical SRCU implementation.
Jun 23 16:37:01 dsd-pc systemd[1]: Started Message of the Day.
Jun 23 16:37:01 dsd-pc kernel: [    0.391654][ 6] [    T7] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Jun 23 16:37:01 dsd-pc kernel: [    0.391858][ 6] [    T1] smp: Bringing up secondary CPUs ...
Jun 23 16:37:01 dsd-pc kernel: [    0.391978][ 6] [    T1] x86: Booting SMP configuration:
Jun 23 16:37:01 dsd-pc systemd[1]: Started Daily Cleanup of Temporary Directories.
Jun 23 16:37:01 dsd-pc kernel: [    0.391979][ 6] [    T1] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11 #12 #13 #14 #15
Jun 23 16:37:01 dsd-pc kernel: [    0.425973][ 6] [    T1] smp: Brought up 1 node, 16 CPUs
Jun 23 16:37:01 dsd-pc kernel: [    0.425973][ 6] [    T1] smpboot: Max logical packages: 1
Jun 23 16:37:01 dsd-pc systemd[1]: Started Call Kylin VD By Timer.
Jun 23 16:37:01 dsd-pc kernel: [    0.425973][ 6] [    T1] smpboot: Total of 16 processors activated (95998.97 BogoMIPS)
Jun 23 16:37:01 dsd-pc kernel: [    0.427597][ 6] [    T1] devtmpfs: initialized
Jun 23 16:37:01 dsd-pc kernel: [    0.427597][ 6] [    T1] x86/mm: Memory block size: 128MB
Jun 23 16:37:01 dsd-pc systemd[1]: Reached target Paths.
Jun 23 16:37:01 dsd-pc kernel: [    0.427597][ 6] [    T1] PM: Registering ACPI NVS region [mem 0x7b6ff000-0x7d4fefff] (31457280 bytes)
Jun 23 16:37:01 dsd-pc kernel: [    0.429956][ 6] [    T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Jun 23 16:37:01 dsd-pc kernel: [    0.429956][ 6] [    T1] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
Jun 23 16:37:01 dsd-pc kernel: [    0.430481][ 6] [    T1] pinctrl core: initialized pinctrl subsystem
Jun 23 16:37:01 dsd-pc kernel: [    0.430604][ 6] [    T1] PM: RTC time: 16:36:55, date: 2026-06-23
Jun 23 16:37:01 dsd-pc kernel: [    0.430762][ 6] [    T1] NET: Registered protocol family 16
Jun 23 16:37:01 dsd-pc systemd[1]: Reached target Timers.
Jun 23 16:37:01 dsd-pc kernel: [    0.430857][ 6] [    T1] audit: initializing netlink subsys (disabled)
Jun 23 16:37:01 dsd-pc systemd[1]: Listening on ACPID Listen Socket.
Jun 23 16:37:01 dsd-pc kernel: [    0.430868][ 6] [  T108] audit: type=2000 audit(1782232615.184:1): state=initialized audit_enabled=0 res=1
Jun 23 16:37:01 dsd-pc kernel: [    0.430868][ 6] [    T1] EISA bus registered
Jun 23 16:37:01 dsd-pc kernel: [    0.430868][ 6] [    T1] cpuidle: using governor ladder
Jun 23 16:37:01 dsd-pc kernel: [    0.430868][ 6] [    T1] cpuidle: using governor menu
Jun 23 16:37:01 dsd-pc systemd[1]: Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
Jun 23 16:37:01 dsd-pc kernel: [    0.430868][ 6] [    T1] Simple Boot Flag at 0x44 set to 0x1
Jun 23 16:37:01 dsd-pc systemd[1]: Listening on CUPS Scheduler.
Jun 23 16:37:01 dsd-pc kernel: [    0.430868][ 6] [    T1] ACPI: bus type PCI registered
Jun 23 16:37:01 dsd-pc systemd[1]: Listening on D-Bus System Message Bus Socket.
Jun 23 16:37:01 dsd-pc kernel: [    0.430868][ 6] [    T1] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun 23 16:37:01 dsd-pc kernel: [    0.430868][ 6] [    T1] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x80000000-0x8fffffff] (base 0x80000000)
Jun 23 16:37:01 dsd-pc kernel: [    0.430868][ 6] [    T1] PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] reserved in E820
Jun 23 16:37:01 dsd-pc kernel: [    0.430868][ 6] [    T1] PCI: Using configuration type 1 for base access
Jun 23 16:37:01 dsd-pc kernel: [    0.433991][ 6] [    T1] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Jun 23 16:37:01 dsd-pc systemd[1]: Listening on UUID daemon activation socket.
Jun 23 16:37:01 dsd-pc systemd[1]: Reached target Sockets.
Jun 23 16:37:01 dsd-pc kernel: [    0.433991][ 6] [    T1] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Jun 23 16:37:01 dsd-pc kernel: [    0.434055][ 6] [    T1] ACPI: Added _OSI(Module Device)
Jun 23 16:37:01 dsd-pc kernel: [    0.434056][ 6] [    T1] ACPI: Added _OSI(Processor Device)
Jun 23 16:37:01 dsd-pc systemd[1]: Reached target Basic System.
Jun 23 16:37:01 dsd-pc kernel: [    0.434057][ 6] [    T1] ACPI: Added _OSI(3.0 _SCP Extensions)
Jun 23 16:37:01 dsd-pc kernel: [    0.434057][ 6] [    T1] ACPI: Added _OSI(Processor Aggregator Device)
Jun 23 16:37:01 dsd-pc kernel: [    0.434058][ 6] [    T1] ACPI: Added _OSI(Linux-Dell-Video)
Jun 23 16:37:01 dsd-pc kernel: [    0.434059][ 6] [    T1] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Jun 23 16:37:01 dsd-pc systemd[1]: System is tainted: local-hwclock
Jun 23 16:37:01 dsd-pc kernel: [    0.434059][ 6] [    T1] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Jun 23 16:37:01 dsd-pc systemd[1]: Started optimization service.
Jun 23 16:37:01 dsd-pc kernel: [    0.463918][ 6] [    T1] ACPI: 6 ACPI AML tables successfully acquired and loaded
Jun 23 16:37:01 dsd-pc kernel: [    0.472323][ 6] [    T1] ACPI: Interpreter enabled
Jun 23 16:37:01 dsd-pc kernel: [    0.472340][ 6] [    T1] ACPI: (supports S0 S3 S4 S5)
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Accounts Service...
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Deferred execution scheduler...
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: 找到匹配的设备:VID=1d6b PID=0003
Jun 23 16:37:01 dsd-pc systemd[1]: Started User Desktop audit rule generate service.
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Avahi mDNS/DNS-SD Stack...
Jun 23 16:37:01 dsd-pc OptiDaemon: optitem: item_audit:1 item_avserver:1 item_systemupdater:1 item_powerpolicy:1 item_screensaver:1 item_log:0, item_powersleep:1, item_flistxattr:1, item_bestop:1, item_powervideo:0, item_dirtypage:1
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: 找到匹配的设备:VID=1d6b PID=0002
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Authenticate by human biometric...
Jun 23 16:37:01 dsd-pc systemd[1]: Started kylin os manager daemon.
Jun 23 16:37:01 dsd-pc systemd[1]: Started Regular background program processing daemon.
Jun 23 16:37:01 dsd-pc systemd[1]: Started CUPS Scheduler.
Jun 23 16:37:01 dsd-pc systemd[1]: Started D-Bus System Message Bus.
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Network Manager...
Jun 23 16:37:01 dsd-pc systemd[1]: Started Save initial kernel messages after boot.
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Remove Stale Online ext4 Metadata Check Snapshots...
Jun 23 16:37:01 dsd-pc systemd[1]: Condition check resulted in getty on tty2-tty6 if dbus and logind are not available being skipped.
Jun 23 16:37:01 dsd-pc cron[899]: (CRON) INFO (pidfile fd = 3)
Jun 23 16:37:01 dsd-pc avahi-daemon[882]: Found user 'avahi' (UID 114) and group 'avahi' (GID 124).
Jun 23 16:37:01 dsd-pc kernel: [    0.472341][ 6] [    T1] ACPI: Using IOAPIC for interrupt routing
Jun 23 16:37:01 dsd-pc kernel: [    0.472592][ 6] [    T1] HEST: Table parsing has been initialized.
Jun 23 16:37:01 dsd-pc systemd[1]: Starting LSB: Record successful boot for GRUB...
Jun 23 16:37:01 dsd-pc kernel: [    0.472595][ 6] [    T1] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jun 23 16:37:01 dsd-pc kernel: [    0.475803][ 6] [    T1] ACPI: Power Resource [P0SA] (off)
Jun 23 16:37:01 dsd-pc avahi-daemon[882]: Successfully dropped root privileges.
Jun 23 16:37:01 dsd-pc kernel: [    0.475832][ 6] [    T1] ACPI: Power Resource [P3SA] (off)
Jun 23 16:37:01 dsd-pc kernel: [    0.480544][ 6] [    T1] ACPI: Power Resource [P0SA] (off)
Jun 23 16:37:01 dsd-pc kernel: [    0.480575][ 6] [    T1] ACPI: Power Resource [P3SA] (off)
Jun 23 16:37:01 dsd-pc kernel: [    0.482759][ 6] [    T1] ACPI: Power Resource [P0SA] (off)
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ NOTE] 数据库格式版本为 1.1.0
Jun 23 16:37:01 dsd-pc kernel: [    0.482787][ 6] [    T1] ACPI: Power Resource [P3SA] (off)
Jun 23 16:37:01 dsd-pc kernel: [    0.484973][ 6] [    T1] ACPI: Power Resource [P0SA] (off)
Jun 23 16:37:01 dsd-pc kernel: [    0.485004][ 6] [    T1] ACPI: Power Resource [P3SA] (off)
Jun 23 16:37:01 dsd-pc kernel: [    0.487270][ 6] [    T1] ACPI: Power Resource [P0SA] (off)
Jun 23 16:37:01 dsd-pc kernel: [    0.487299][ 6] [    T1] ACPI: Power Resource [P3SA] (off)
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ NOTE] 数据库格式兼容当前框架
Jun 23 16:37:01 dsd-pc kernel: [    0.489549][ 6] [    T1] ACPI: Power Resource [P0SA] (off)
Jun 23 16:37:01 dsd-pc kernel: [    0.489578][ 6] [    T1] ACPI: Power Resource [P3SA] (off)
Jun 23 16:37:01 dsd-pc avahi-daemon[882]: avahi-daemon 0.7 starting up.
Jun 23 16:37:01 dsd-pc kernel: [    0.491765][ 6] [    T1] ACPI: Power Resource [P0SA] (off)
Jun 23 16:37:01 dsd-pc kernel: [    0.491792][ 6] [    T1] ACPI: Power Resource [P3SA] (off)
Jun 23 16:37:01 dsd-pc kernel: [    0.493989][ 6] [    T1] ACPI: Power Resource [P0SA] (off)
Jun 23 16:37:01 dsd-pc kernel: [    0.494018][ 6] [    T1] ACPI: Power Resource [P3SA] (off)
Jun 23 16:37:01 dsd-pc kernel: [    0.501077][ 6] [    T1] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Jun 23 16:37:01 dsd-pc systemd[1]: Starting kylin dlp control...
Jun 23 16:37:01 dsd-pc kernel: [    0.501083][ 6] [    T1] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jun 23 16:37:01 dsd-pc systemd[1]: Started run kylin_activation_check at boot time.
Jun 23 16:37:01 dsd-pc kernel: [    0.501269][ 6] [    T1] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR]
Jun 23 16:37:01 dsd-pc kernel: [    0.501445][ 6] [    T1] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
Jun 23 16:37:01 dsd-pc kernel: [    0.503085][ 6] [    T1] acpi PNP0A08:00: host bridge window expanded to [io  0x03e0-0x1fff]; [io  0x03e0-0x1fff window] ignored
Jun 23 16:37:01 dsd-pc kernel: [    0.503271][ 6] [    T1] PCI host bridge to bus 0000:00
Jun 23 16:37:01 dsd-pc kernel: [    0.503273][ 6] [    T1] pci_bus 0000:00: root bus resource [io  0x03e0-0x1fff]
Jun 23 16:37:01 dsd-pc systemd-timesyncd[821]: The system is configured to read the RTC time in the local time zone. This mode cannot be fully supported. All system time to RTC updates are disabled.
Jun 23 16:37:01 dsd-pc kernel: [    0.503274][ 6] [    T1] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
Jun 23 16:37:01 dsd-pc systemd[1]: Started kylin-core-dump-monitor.
Jun 23 16:37:01 dsd-pc kernel: [    0.503275][ 6] [    T1] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
Jun 23 16:37:01 dsd-pc kernel: [    0.503276][ 6] [    T1] pci_bus 0000:00: root bus resource [io  0x2000-0xffff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.503277][ 6] [    T1] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.503279][ 6] [    T1] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Kylin fix boot grub...
Jun 23 16:37:01 dsd-pc kernel: [    0.503279][ 6] [    T1] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.503280][ 6] [    T1] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
Jun 23 16:37:01 dsd-pc systemd[1]: Starting kylin-offline-upgrade deamon...
Jun 23 16:37:01 dsd-pc kernel: [    0.503281][ 6] [    T1] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.503282][ 6] [    T1] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
Jun 23 16:37:01 dsd-pc systemd[1]: Starting kylin-system-updater dbus daemon...
Jun 23 16:37:01 dsd-pc kernel: [    0.503283][ 6] [    T1] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.503284][ 6] [    T1] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.503285][ 6] [    T1] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.503286][ 6] [    T1] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
Jun 23 16:37:01 dsd-pc systemd[1]: Starting KYLIN CONF2 DBUS...
Jun 23 16:37:01 dsd-pc kernel: [    0.503287][ 6] [    T1] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.503288][ 6] [    T1] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
Jun 23 16:37:01 dsd-pc systemd[1]: Starting KYLIN SDK SYSTIME DBUS...
Jun 23 16:37:01 dsd-pc kernel: [    0.503289][ 6] [    T1] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.503290][ 6] [    T1] pci_bus 0000:00: root bus resource [mem 0xbb000000-0xfd7fffff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.503291][ 6] [    T1] pci_bus 0000:00: root bus resource [mem 0x90000000-0xbaffffff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.503292][ 6] [    T1] pci_bus 0000:00: root bus resource [mem 0x3cb99000000-0x7fcffffffff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.503293][ 6] [    T1] pci_bus 0000:00: root bus resource [mem 0x10000000000-0x3cb98ffffff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.503294][ 6] [    T1] pci_bus 0000:00: root bus resource [bus 00-ff]
Jun 23 16:37:01 dsd-pc kernel: [    0.503338][ 6] [    T1] pci 0000:00:00.0: [1d94:1450] type 00 class 0x060000
Jun 23 16:37:01 dsd-pc systemd[1]: Starting KYLIN SDK SYSTIME DBUS...
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Switch bios USB status and perform USB device rebind check...
Jun 23 16:37:01 dsd-pc kernel: [    0.503473][ 6] [    T1] pci 0000:00:00.2: [1d94:1451] type 00 class 0x080600
Jun 23 16:37:01 dsd-pc kernel: [    0.503628][ 6] [    T1] pci 0000:00:01.0: [1d94:1452] type 00 class 0x060000
Jun 23 16:37:01 dsd-pc kernel: [    0.503788][ 6] [    T1] pci 0000:00:01.3: [1d94:1453] type 01 class 0x060400
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Initialize hardware monitoring sensors...
Jun 23 16:37:01 dsd-pc kernel: [    0.503837][ 6] [    T1] pci 0000:00:01.3: enabling Extended Tags
Jun 23 16:37:01 dsd-pc systemd[1]: Starting LSB: Load kernel modules needed to enable cpufreq scaling...
Jun 23 16:37:01 dsd-pc kernel: [    0.503959][ 6] [    T1] pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
Jun 23 16:37:01 dsd-pc kernel: [    0.504131][ 6] [    T1] pci 0000:00:02.0: [1d94:1452] type 00 class 0x060000
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: is Not Realtek USB WiFi Device!
Jun 23 16:37:01 dsd-pc kernel: [    0.504264][ 6] [    T1] pci 0000:00:03.0: [1d94:1452] type 00 class 0x060000
Jun 23 16:37:01 dsd-pc kernel: [    0.504418][ 6] [    T1] pci 0000:00:03.1: [1d94:1453] type 01 class 0x060400
Jun 23 16:37:01 dsd-pc systemd[1]: Started check disk to rotate log.
Jun 23 16:37:01 dsd-pc kernel: [    0.504577][ 6] [    T1] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
Jun 23 16:37:01 dsd-pc kernel: [    0.504740][ 6] [    T1] pci 0000:00:04.0: [1d94:1452] type 00 class 0x060000
Jun 23 16:37:01 dsd-pc kernel: [    0.504879][ 6] [    T1] pci 0000:00:07.0: [1d94:1452] type 00 class 0x060000
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: is Not Realtek USB WiFi Device!
Jun 23 16:37:01 dsd-pc kernel: [    0.505033][ 6] [    T1] pci 0000:00:07.1: [1d94:1454] type 01 class 0x060400
Jun 23 16:37:01 dsd-pc kernel: [    0.505078][ 6] [    T1] pci 0000:00:07.1: enabling Extended Tags
Jun 23 16:37:01 dsd-pc kernel: [    0.505186][ 6] [    T1] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Restore /etc/resolv.conf if the system crashed before the ppp link was shut down...
Jun 23 16:37:01 dsd-pc kernel: [    0.505335][ 6] [    T1] pci 0000:00:08.0: [1d94:1452] type 00 class 0x060000
Jun 23 16:37:01 dsd-pc kernel: [    0.505491][ 6] [    T1] pci 0000:00:08.1: [1d94:1454] type 01 class 0x060400
Jun 23 16:37:01 dsd-pc kernel: [    0.505531][ 6] [    T1] pci 0000:00:08.1: enabling Extended Tags
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Mate media control leds daemon...
Jun 23 16:37:01 dsd-pc kernel: [    0.505607][ 6] [    T1] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
Jun 23 16:37:01 dsd-pc kernel: [    0.506036][ 6] [    T1] pci 0000:00:14.0: [1d94:790b] type 00 class 0x0c0500
Jun 23 16:37:01 dsd-pc kernel: [    0.506302][ 6] [    T1] pci 0000:00:14.3: [1d94:790e] type 00 class 0x060100
Jun 23 16:37:01 dsd-pc kernel: [    0.506536][ 6] [    T1] pci 0000:00:18.0: [1d94:1460] type 00 class 0x060000
Jun 23 16:37:01 dsd-pc kernel: [    0.506644][ 6] [    T1] pci 0000:00:18.1: [1d94:1461] type 00 class 0x060000
Jun 23 16:37:01 dsd-pc bash[963]: 执行运行环境检查
Jun 23 16:37:01 dsd-pc kernel: [    0.506754][ 6] [    T1] pci 0000:00:18.2: [1d94:1462] type 00 class 0x060000
Jun 23 16:37:01 dsd-pc kernel: [    0.506862][ 6] [    T1] pci 0000:00:18.3: [1d94:1463] type 00 class 0x060000
Jun 23 16:37:01 dsd-pc kernel: [    0.506970][ 6] [    T1] pci 0000:00:18.4: [1d94:1464] type 00 class 0x060000
Jun 23 16:37:01 dsd-pc kernel: [    0.507077][ 6] [    T1] pci 0000:00:18.5: [1d94:1465] type 00 class 0x060000
Jun 23 16:37:01 dsd-pc kernel: [    0.507185][ 6] [    T1] pci 0000:00:18.6: [1d94:1466] type 00 class 0x060000
Jun 23 16:37:01 dsd-pc systemd[1]: Starting System Logging Service...
Jun 23 16:37:01 dsd-pc kernel: [    0.507294][ 6] [    T1] pci 0000:00:18.7: [1d94:1467] type 00 class 0x060000
Jun 23 16:37:01 dsd-pc kernel: [    0.507484][ 6] [    T1] pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000
Jun 23 16:37:01 dsd-pc kernel: [    0.507506][ 6] [    T1] pci 0000:01:00.0: reg 0x10: [io  0x3000-0x30ff]
Jun 23 16:37:01 dsd-pc cron[899]: (CRON) INFO (Running @reboot jobs)
Jun 23 16:37:01 dsd-pc kernel: [    0.507523][ 6] [    T1] pci 0000:01:00.0: reg 0x18: [mem 0xc0604000-0xc0604fff 64bit]
Jun 23 16:37:01 dsd-pc kernel: [    0.507534][ 6] [    T1] pci 0000:01:00.0: reg 0x20: [mem 0xc0600000-0xc0603fff 64bit]
Jun 23 16:37:01 dsd-pc kernel: [    0.507609][ 6] [    T1] pci 0000:01:00.0: supports D1 D2
Jun 23 16:37:01 dsd-pc kernel: [    0.507610][ 6] [    T1] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Jun 23 16:37:01 dsd-pc bash[963]: 目录存在
Jun 23 16:37:01 dsd-pc kernel: [    0.507727][ 6] [    T1] pci 0000:00:01.3: PCI bridge to [bus 01]
Jun 23 16:37:01 dsd-pc kernel: [    0.507730][ 6] [    T1] pci 0000:00:01.3:   bridge window [io  0x3000-0x3fff]
Jun 23 16:37:01 dsd-pc kernel: [    0.507732][ 6] [    T1] pci 0000:00:01.3:   bridge window [mem 0xc0600000-0xc06fffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.507844][ 6] [    T1] pci 0000:02:00.0: [1ec8:9810] type 00 class 0x030000
Jun 23 16:37:01 dsd-pc kernel: [    0.507870][ 6] [    T1] pci 0000:02:00.0: reg 0x10: [mem 0xbc000000-0xbfffffff 64bit]
Jun 23 16:37:01 dsd-pc kernel: [    0.507880][ 6] [    T1] pci 0000:02:00.0: reg 0x18: [mem 0x10000000000-0x1001fffffff 64bit pref]
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Self Monitoring and Reporting Technology (SMART) Daemon...
Jun 23 16:37:01 dsd-pc kernel: [    0.507887][ 6] [    T1] pci 0000:02:00.0: reg 0x20: [io  0x2000-0x20ff]
Jun 23 16:37:01 dsd-pc kernel: [    0.507900][ 6] [    T1] pci 0000:02:00.0: reg 0x30: [mem 0xc0000000-0xc007ffff pref]
Jun 23 16:37:01 dsd-pc kernel: [    0.507913][ 6] [    T1] pci 0000:02:00.0: BAR 2: assigned to efifb
Jun 23 16:37:01 dsd-pc systemd[1]: Starting app load optimize...
Jun 23 16:37:01 dsd-pc kernel: [    0.507956][ 6] [    T1] pci 0000:02:00.0: supports D1
Jun 23 16:37:01 dsd-pc kernel: [    0.507957][ 6] [    T1] pci 0000:02:00.0: PME# supported from D0 D1 D3hot
Jun 23 16:37:01 dsd-pc pulseaudio-replace-conf[1031]: InnosiliconCard
Jun 23 16:37:01 dsd-pc kernel: [    0.508035][ 6] [    T1] pci 0000:00:03.1: PCI bridge to [bus 02]
Jun 23 16:37:01 dsd-pc kernel: [    0.508038][ 6] [    T1] pci 0000:00:03.1:   bridge window [io  0x2000-0x2fff]
Jun 23 16:37:01 dsd-pc systemd[1]: Started drop cache before S3 if memory available is less than 20%.
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Disk Manager...
Jun 23 16:37:01 dsd-pc logrotate_chkdisk[1027]: chkdisk: ChkIntervalSec:60 RotateLogThresholdSizeM:200 DiskChkLogRatio:75
Jun 23 16:37:01 dsd-pc systemd[1]: Started UKUI Bluetooth service.
Jun 23 16:37:01 dsd-pc pulseaudio-replace-conf[1031]: /usr/bin/pulseaudio-replace-conf: 16: [: /etc/pulse/daemon-PMDK-HDMI.conf: unexpected operator
Jun 23 16:37:01 dsd-pc systemd[1]: Started UKUI-Input-Event-Gather.
Jun 23 16:37:01 dsd-pc systemd[1]: Starting WPA supplicant...
Jun 23 16:37:01 dsd-pc systemd-drop-cache[1050]: machine no need drop cache
Jun 23 16:37:01 dsd-pc systemd[1]: selinux.service: Succeeded.
Jun 23 16:37:01 dsd-pc systemd[1]: Started Deferred execution scheduler.
Jun 23 16:37:01 dsd-pc systemd[1]: kylin-fix-boot-grub.service: Succeeded.
Jun 23 16:37:01 dsd-pc systemd[1]: Finished Kylin fix boot grub.
Jun 23 16:37:01 dsd-pc systemd[1]: pppd-dns.service: Succeeded.
Jun 23 16:37:01 dsd-pc systemd[1]: Finished Restore /etc/resolv.conf if the system crashed before the ppp link was shut down.
Jun 23 16:37:01 dsd-pc sensors[1065]: k10temp-pci-00c3
Jun 23 16:37:01 dsd-pc sensors[1065]: Adapter: PCI adapter
Jun 23 16:37:01 dsd-pc sensors[1065]: Tctl:         +39.4°C
Jun 23 16:37:01 dsd-pc kernel: [    0.508040][ 6] [    T1] pci 0000:00:03.1:   bridge window [mem 0xbc000000-0xc00fffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.508043][ 6] [    T1] pci 0000:00:03.1:   bridge window [mem 0x10000000000-0x1001fffffff 64bit pref]
Jun 23 16:37:01 dsd-pc systemd[1]: Finished Initialize hardware monitoring sensors.
Jun 23 16:37:01 dsd-pc kernel: [    0.508170][ 6] [    T1] pci 0000:03:00.0: [1d94:145a] type 00 class 0x130000
Jun 23 16:37:01 dsd-pc kernel: [    0.508197][ 6] [    T1] pci 0000:03:00.0: enabling Extended Tags
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: dbus[911]: Unknown username "whoopsie" in message bus configuration file
Jun 23 16:37:01 dsd-pc kernel: [    0.508272][ 6] [    T1] pci 0000:03:00.2: [1d94:1456] type 00 class 0x108000
Jun 23 16:37:01 dsd-pc kernel: [    0.508287][ 6] [    T1] pci 0000:03:00.2: reg 0x18: [mem 0xc0400000-0xc04fffff]
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: Device(0bda:5411) insert...
Jun 23 16:37:01 dsd-pc kernel: [    0.508295][ 6] [    T1] pci 0000:03:00.2: reg 0x24: [mem 0xc0500000-0xc0501fff]
Jun 23 16:37:01 dsd-pc kernel: [    0.508301][ 6] [    T1] pci 0000:03:00.2: enabling Extended Tags
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: 找到匹配的设备:VID=0bda PID=5411
Jun 23 16:37:01 dsd-pc kernel: [    0.508379][ 6] [    T1] pci 0000:03:00.3: [1d94:145f] type 00 class 0x0c0330
Jun 23 16:37:01 dsd-pc rsyslogd: imuxsock: Acquired UNIX socket '/run/systemd/journal/syslog' (fd 3) from systemd.  [v8.2001.0]
Jun 23 16:37:01 dsd-pc kernel: [    0.508392][ 6] [    T1] pci 0000:03:00.3: reg 0x10: [mem 0xc0300000-0xc03fffff 64bit]
Jun 23 16:37:01 dsd-pc kernel: [    0.508407][ 6] [    T1] pci 0000:03:00.3: enabling Extended Tags
Jun 23 16:37:01 dsd-pc kernel: [    0.508437][ 6] [    T1] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
Jun 23 16:37:01 dsd-pc kernel: [    0.508518][ 6] [    T1] pci 0000:00:07.1: PCI bridge to [bus 03]
Jun 23 16:37:01 dsd-pc kernel: [    0.508522][ 6] [    T1] pci 0000:00:07.1:   bridge window [mem 0xc0300000-0xc05fffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.508618][ 6] [    T1] pci 0000:04:00.0: [1d94:1455] type 00 class 0x130000
Jun 23 16:37:01 dsd-pc rsyslogd: rsyslogd's groupid changed to 112
Jun 23 16:37:01 dsd-pc kernel: [    0.508645][ 6] [    T1] pci 0000:04:00.0: enabling Extended Tags
Jun 23 16:37:01 dsd-pc systemd[1]: Started System Logging Service.
Jun 23 16:37:01 dsd-pc kernel: [    0.508727][ 6] [    T1] pci 0000:04:00.1: [1d94:1468] type 00 class 0x108000
Jun 23 16:37:01 dsd-pc rsyslogd: rsyslogd's userid changed to 107
Jun 23 16:37:01 dsd-pc kernel: [    0.508742][ 6] [    T1] pci 0000:04:00.1: reg 0x18: [mem 0xc0100000-0xc01fffff]
Jun 23 16:37:01 dsd-pc rsyslogd: [origin software="rsyslogd" swVersion="8.2001.0" x-pid="1034" x-info="https://www.rsyslog.com"] start
Jun 23 16:37:01 dsd-pc kernel: [    0.508751][ 6] [    T1] pci 0000:04:00.1: reg 0x24: [mem 0xc0200000-0xc0201fff]
Jun 23 16:37:01 dsd-pc kernel: [    0.508757][ 6] [    T1] pci 0000:04:00.1: enabling Extended Tags
Jun 23 16:37:01 dsd-pc kernel: [    0.508840][ 6] [    T1] pci 0000:04:00.2: [1d94:7901] type 00 class 0x010601
Jun 23 16:37:01 dsd-pc kernel: [    0.508868][ 6] [    T1] pci 0000:04:00.2: reg 0x24: [mem 0xc0202000-0xc0202fff]
Jun 23 16:37:01 dsd-pc kernel: [    0.508875][ 6] [    T1] pci 0000:04:00.2: enabling Extended Tags
Jun 23 16:37:01 dsd-pc kernel: [    0.508906][ 6] [    T1] pci 0000:04:00.2: PME# supported from D3hot D3cold
Jun 23 16:37:01 dsd-pc kernel: [    0.508990][ 6] [    T1] pci 0000:00:08.1: PCI bridge to [bus 04]
Jun 23 16:37:01 dsd-pc kernel: [    0.508995][ 6] [    T1] pci 0000:00:08.1:   bridge window [mem 0xc0100000-0xc02fffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.509096][ 6] [    T1] pci_bus 0000:00: on NUMA node 0
Jun 23 16:37:01 dsd-pc kernel: [    0.513273][ 6] [    T1] ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11 14 15) *0, disabled.
Jun 23 16:37:01 dsd-pc kernel: [    0.513340][ 6] [    T1] ACPI: PCI Interrupt Link [LNKB] (IRQs 10 11 14 15) *0, disabled.
Jun 23 16:37:01 dsd-pc kernel: [    0.513406][ 6] [    T1] ACPI: PCI Interrupt Link [LNKC] (IRQs 10 11 14 15) *0, disabled.
Jun 23 16:37:01 dsd-pc kernel: [    0.513472][ 6] [    T1] ACPI: PCI Interrupt Link [LNKD] (IRQs 10 11 14 15) *0, disabled.
Jun 23 16:37:01 dsd-pc kernel: [    0.513538][ 6] [    T1] ACPI: PCI Interrupt Link [LNKE] (IRQs 10 11 14 15) *0, disabled.
Jun 23 16:37:01 dsd-pc kernel: [    0.513603][ 6] [    T1] ACPI: PCI Interrupt Link [LNKF] (IRQs 10 11 14 15) *0, disabled.
Jun 23 16:37:01 dsd-pc kernel: [    0.513669][ 6] [    T1] ACPI: PCI Interrupt Link [LNKG] (IRQs 10 11 14 15) *0, disabled.
Jun 23 16:37:01 dsd-pc kernel: [    0.513735][ 6] [    T1] ACPI: PCI Interrupt Link [LNKH] (IRQs 10 11 14 15) *0, disabled.
Jun 23 16:37:01 dsd-pc kernel: [    0.516467][ 6] [    T1] iommu: Default domain type: Translated 
Jun 23 16:37:01 dsd-pc kernel: [    0.517950][ 6] [    T1] libata version 3.00 loaded.
Jun 23 16:37:01 dsd-pc kernel: [    0.517993][ 6] [    T1] SCSI subsystem initialized
Jun 23 16:37:01 dsd-pc kernel: [    0.518007][ 6] [    T1] pci 0000:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
Jun 23 16:37:01 dsd-pc kernel: [    0.518007][ 6] [    T1] pci 0000:02:00.0: vgaarb: bridge control possible
Jun 23 16:37:01 dsd-pc kernel: [    0.518007][ 6] [    T1] pci 0000:02:00.0: vgaarb: setting as boot device
Jun 23 16:37:01 dsd-pc kernel: [    0.518007][ 6] [    T1] vgaarb: loaded
Jun 23 16:37:01 dsd-pc kernel: [    0.518007][ 6] [    T1] ACPI: bus type USB registered
Jun 23 16:37:01 dsd-pc kernel: [    0.518007][ 6] [    T1] usbcore: registered new interface driver usbfs
Jun 23 16:37:01 dsd-pc kernel: [    0.518007][ 6] [    T1] usbcore: registered new interface driver hub
Jun 23 16:37:01 dsd-pc kernel: [    0.518039][ 6] [    T1] usbcore: registered new device driver usb
Jun 23 16:37:01 dsd-pc kernel: [    0.518076][ 6] [    T1] mc: Linux media interface: v0.10
Jun 23 16:37:01 dsd-pc kernel: [    0.518081][ 6] [    T1] videodev: Linux video capture interface: v2.00
Jun 23 16:37:01 dsd-pc kernel: [    0.518094][ 6] [    T1] pps_core: LinuxPPS API ver. 1 registered
Jun 23 16:37:01 dsd-pc kernel: [    0.518094][ 6] [    T1] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jun 23 16:37:01 dsd-pc kernel: [    0.518096][ 6] [    T1] PTP clock support registered
Jun 23 16:37:01 dsd-pc kernel: [    0.518127][ 6] [    T1] EDAC MC: Ver: 3.0.0
Jun 23 16:37:01 dsd-pc kernel: [    0.518127][ 6] [    T1] Registered efivars operations
Jun 23 16:37:01 dsd-pc kernel: [    0.518127][ 6] [    T1] Advanced Linux Sound Architecture Driver Initialized.
Jun 23 16:37:01 dsd-pc kernel: [    0.518127][ 6] [    T1] PCI: Using ACPI for IRQ routing
Jun 23 16:37:01 dsd-pc kernel: [    0.534352][ 6] [    T1] PCI: pci_cache_line_size set to 64 bytes
Jun 23 16:37:01 dsd-pc kernel: [    0.534395][ 6] [    T1] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.534396][ 6] [    T1] e820: reserve RAM buffer [mem 0x4b000000-0x4bffffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.534397][ 6] [    T1] e820: reserve RAM buffer [mem 0x54c00018-0x57ffffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.534397][ 6] [    T1] e820: reserve RAM buffer [mem 0x5ed94000-0x5fffffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.534398][ 6] [    T1] e820: reserve RAM buffer [mem 0x6ea8f000-0x6fffffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.534398][ 6] [    T1] e820: reserve RAM buffer [mem 0x7e000000-0x7fffffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.534399][ 6] [    T1] e820: reserve RAM buffer [mem 0x17f380000-0x17fffffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.534515][ 6] [    T1] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
Jun 23 16:37:01 dsd-pc kernel: [    0.534515][ 6] [    T1] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
Jun 23 16:37:01 dsd-pc kernel: [    0.538158][ 6] [    T1] clocksource: Switched to clocksource tsc-early
Jun 23 16:37:01 dsd-pc kernel: [    0.555584][ 6] [    T1] VFS: Disk quotas dquot_6.6.0
Jun 23 16:37:01 dsd-pc kernel: [    0.555610][ 6] [    T1] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun 23 16:37:01 dsd-pc kernel: [    0.555680][ 6] [    T1] Init box entries under sysfs SUCCESS!
Jun 23 16:37:01 dsd-pc kernel: [    0.555748][ 6] [    T1] KYSEC: Init kysecfs SUCCESS!
Jun 23 16:37:01 dsd-pc kernel: [    0.555831][ 6] [    T1] pnp: PnP ACPI init
Jun 23 16:37:01 dsd-pc kernel: [    0.556077][ 6] [    T1] system 00:00: [mem 0xfec00000-0xfec01fff] could not be reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.556079][ 6] [    T1] system 00:00: [mem 0xfee00000-0xfee00fff] has been reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.556080][ 6] [    T1] system 00:00: [mem 0xff000000-0xffffffff] has been reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.556085][ 6] [    T1] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 23 16:37:01 dsd-pc kernel: [    0.556360][ 6] [    T1] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
Jun 23 16:37:01 dsd-pc kernel: [    0.556401][ 6] [    T1] system 00:02: [io  0x0400-0x04cf] has been reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.556402][ 6] [    T1] system 00:02: [io  0x04d0-0x04d1] has been reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.556403][ 6] [    T1] system 00:02: [io  0x04d6] has been reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.556404][ 6] [    T1] system 00:02: [io  0x0c00-0x0c01] has been reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.556405][ 6] [    T1] system 00:02: [io  0x0c14] has been reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.556406][ 6] [    T1] system 00:02: [io  0x0c50-0x0c52] has been reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.556407][ 6] [    T1] system 00:02: [io  0x0c6c] has been reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.556408][ 6] [    T1] system 00:02: [io  0x0c6f] has been reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.556409][ 6] [    T1] system 00:02: [io  0x0cd0-0x0cdb] has been reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.556412][ 6] [    T1] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 23 16:37:01 dsd-pc kernel: [    0.556484][ 6] [    T1] system 00:03: [mem 0x000e0000-0x000fffff] could not be reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.556486][ 6] [    T1] system 00:03: [mem 0xff000000-0xffffffff] has been reserved
Jun 23 16:37:01 dsd-pc kernel: [    0.556489][ 6] [    T1] system 00:03: Plug and Play ACPI device, IDs PNP0c01 (active)
Jun 23 16:37:01 dsd-pc kernel: [    0.556749][ 6] [    T1] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
Jun 23 16:37:01 dsd-pc kernel: [    0.556988][ 6] [    T1] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active)
Jun 23 16:37:01 dsd-pc kernel: [    0.557930][ 6] [    T1] pnp: PnP ACPI: found 6 devices
Jun 23 16:37:01 dsd-pc kernel: [    0.559481][ 6] [    T1] thermal_sys: Registered thermal governor 'fair_share'
Jun 23 16:37:01 dsd-pc kernel: [    0.559482][ 6] [    T1] thermal_sys: Registered thermal governor 'bang_bang'
Jun 23 16:37:01 dsd-pc kernel: [    0.559482][ 6] [    T1] thermal_sys: Registered thermal governor 'step_wise'
Jun 23 16:37:01 dsd-pc kernel: [    0.559483][ 6] [    T1] thermal_sys: Registered thermal governor 'user_space'
Jun 23 16:37:01 dsd-pc kernel: [    0.559483][ 6] [    T1] thermal_sys: Registered thermal governor 'power_allocator'
Jun 23 16:37:01 dsd-pc kernel: [    0.563998][ 6] [    T1] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jun 23 16:37:01 dsd-pc kernel: [    0.564037][ 6] [    T1] pci 0000:00:01.3: PCI bridge to [bus 01]
Jun 23 16:37:01 dsd-pc kernel: [    0.564040][ 6] [    T1] pci 0000:00:01.3:   bridge window [io  0x3000-0x3fff]
Jun 23 16:37:01 dsd-pc kernel: [    0.564043][ 6] [    T1] pci 0000:00:01.3:   bridge window [mem 0xc0600000-0xc06fffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.564081][ 6] [    T1] pci 0000:00:03.1: PCI bridge to [bus 02]
Jun 23 16:37:01 dsd-pc kernel: [    0.564082][ 6] [    T1] pci 0000:00:03.1:   bridge window [io  0x2000-0x2fff]
Jun 23 16:37:01 dsd-pc kernel: [    0.564084][ 6] [    T1] pci 0000:00:03.1:   bridge window [mem 0xbc000000-0xc00fffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.564087][ 6] [    T1] pci 0000:00:03.1:   bridge window [mem 0x10000000000-0x1001fffffff 64bit pref]
Jun 23 16:37:01 dsd-pc kernel: [    0.564112][ 6] [    T1] pci 0000:00:07.1: PCI bridge to [bus 03]
Jun 23 16:37:01 dsd-pc kernel: [    0.564114][ 6] [    T1] pci 0000:00:07.1:   bridge window [mem 0xc0300000-0xc05fffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.564130][ 6] [    T1] pci 0000:00:08.1: PCI bridge to [bus 04]
Jun 23 16:37:01 dsd-pc kernel: [    0.564133][ 6] [    T1] pci 0000:00:08.1:   bridge window [mem 0xc0100000-0xc02fffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.564138][ 6] [    T1] pci_bus 0000:00: resource 4 [io  0x03e0-0x1fff]
Jun 23 16:37:01 dsd-pc kernel: [    0.564140][ 6] [    T1] pci_bus 0000:00: resource 5 [io  0x0000-0x03af window]
Jun 23 16:37:01 dsd-pc kernel: [    0.564141][ 6] [    T1] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
Jun 23 16:37:01 dsd-pc kernel: [    0.564142][ 6] [    T1] pci_bus 0000:00: resource 7 [io  0x2000-0xffff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.564143][ 6] [    T1] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.564144][ 6] [    T1] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000c3fff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.564145][ 6] [    T1] pci_bus 0000:00: resource 10 [mem 0x000c4000-0x000c7fff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.564146][ 6] [    T1] pci_bus 0000:00: resource 11 [mem 0x000c8000-0x000cbfff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.564147][ 6] [    T1] pci_bus 0000:00: resource 12 [mem 0x000cc000-0x000cffff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.564148][ 6] [    T1] pci_bus 0000:00: resource 13 [mem 0x000d0000-0x000d3fff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.564149][ 6] [    T1] pci_bus 0000:00: resource 14 [mem 0x000d4000-0x000d7fff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.564150][ 6] [    T1] pci_bus 0000:00: resource 15 [mem 0x000d8000-0x000dbfff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.564151][ 6] [    T1] pci_bus 0000:00: resource 16 [mem 0x000dc000-0x000dffff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.564152][ 6] [    T1] pci_bus 0000:00: resource 17 [mem 0x000e0000-0x000e3fff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.564153][ 6] [    T1] pci_bus 0000:00: resource 18 [mem 0x000e4000-0x000e7fff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.564154][ 6] [    T1] pci_bus 0000:00: resource 19 [mem 0x000e8000-0x000ebfff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.564155][ 6] [    T1] pci_bus 0000:00: resource 20 [mem 0x000ec000-0x000effff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.564156][ 6] [    T1] pci_bus 0000:00: resource 21 [mem 0xbb000000-0xfd7fffff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.564157][ 6] [    T1] pci_bus 0000:00: resource 22 [mem 0x90000000-0xbaffffff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.564158][ 6] [    T1] pci_bus 0000:00: resource 23 [mem 0x3cb99000000-0x7fcffffffff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.564159][ 6] [    T1] pci_bus 0000:00: resource 24 [mem 0x10000000000-0x3cb98ffffff window]
Jun 23 16:37:01 dsd-pc kernel: [    0.564160][ 6] [    T1] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
Jun 23 16:37:01 dsd-pc kernel: [    0.564161][ 6] [    T1] pci_bus 0000:01: resource 1 [mem 0xc0600000-0xc06fffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.564162][ 6] [    T1] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
Jun 23 16:37:01 dsd-pc kernel: [    0.564163][ 6] [    T1] pci_bus 0000:02: resource 1 [mem 0xbc000000-0xc00fffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.564164][ 6] [    T1] pci_bus 0000:02: resource 2 [mem 0x10000000000-0x1001fffffff 64bit pref]
Jun 23 16:37:01 dsd-pc kernel: [    0.564165][ 6] [    T1] pci_bus 0000:03: resource 1 [mem 0xc0300000-0xc05fffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.564166][ 6] [    T1] pci_bus 0000:04: resource 1 [mem 0xc0100000-0xc02fffff]
Jun 23 16:37:01 dsd-pc kernel: [    0.564243][ 6] [    T1] NET: Registered protocol family 2
Jun 23 16:37:01 dsd-pc kernel: [    0.564337][ 6] [    T1] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
Jun 23 16:37:01 dsd-pc kernel: [    0.564811][ 6] [    T1] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
Jun 23 16:37:01 dsd-pc kernel: [    0.564821][ 6] [    T1] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
Jun 23 16:37:01 dsd-pc kernel: [    0.564871][ 6] [    T1] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
Jun 23 16:37:01 dsd-pc kernel: [    0.564952][ 6] [    T1] TCP: Hash tables configured (established 32768 bind 32768)
Jun 23 16:37:01 dsd-pc kernel: [    0.565011][ 6] [    T1] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
Jun 23 16:37:01 dsd-pc kernel: [    0.565025][ 6] [    T1] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
Jun 23 16:37:01 dsd-pc kernel: [    0.565089][ 6] [    T1] NET: Registered protocol family 1
Jun 23 16:37:01 dsd-pc kernel: [    0.565094][ 6] [    T1] NET: Registered protocol family 44
Jun 23 16:37:01 dsd-pc kernel: [    0.565223][ 6] [    T1] pci 0000:03:00.3: enabling device (0000 -> 0002)
Jun 23 16:37:01 dsd-pc kernel: [    0.565309][ 6] [    T1] PCI: CLS 64 bytes, default 64
Jun 23 16:37:01 dsd-pc kernel: [    0.565354][ 6] [    T1] Trying to unpack rootfs image as initramfs...
Jun 23 16:37:01 dsd-pc kernel: [    0.751065][ 6] [    T1] Freeing initrd memory: 81476K
Jun 23 16:37:01 dsd-pc kernel: [    0.751168][ 6] [    T1] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
Jun 23 16:37:01 dsd-pc kernel: [    0.751594][ 6] [    T1] pci 0000:00:01.0: Adding to iommu group 0
Jun 23 16:37:01 dsd-pc kernel: [    0.751782][ 6] [    T1] pci 0000:00:01.3: Adding to iommu group 1
Jun 23 16:37:01 dsd-pc kernel: [    0.751947][ 6] [    T1] pci 0000:00:02.0: Adding to iommu group 2
Jun 23 16:37:01 dsd-pc kernel: [    0.752092][ 6] [    T1] pci 0000:00:03.0: Adding to iommu group 3
Jun 23 16:37:01 dsd-pc kernel: [    0.752248][ 6] [    T1] pci 0000:00:03.1: Adding to iommu group 4
Jun 23 16:37:01 dsd-pc kernel: [    0.752395][ 6] [    T1] pci 0000:00:04.0: Adding to iommu group 5
Jun 23 16:37:01 dsd-pc kernel: [    0.752546][ 6] [    T1] pci 0000:00:07.0: Adding to iommu group 6
Jun 23 16:37:01 dsd-pc kernel: [    0.752691][ 6] [    T1] pci 0000:00:07.1: Adding to iommu group 7
Jun 23 16:37:01 dsd-pc kernel: [    0.752856][ 6] [    T1] pci 0000:00:08.0: Adding to iommu group 8
Jun 23 16:37:01 dsd-pc kernel: [    0.753002][ 6] [    T1] pci 0000:00:08.1: Adding to iommu group 9
Jun 23 16:37:01 dsd-pc kernel: [    0.753151][ 6] [    T1] pci 0000:00:14.0: Adding to iommu group 10
Jun 23 16:37:01 dsd-pc kernel: [    0.753165][ 6] [    T1] pci 0000:00:14.3: Adding to iommu group 10
Jun 23 16:37:01 dsd-pc kernel: [    0.753325][ 6] [    T1] pci 0000:00:18.0: Adding to iommu group 11
Jun 23 16:37:01 dsd-pc kernel: [    0.753343][ 6] [    T1] pci 0000:00:18.1: Adding to iommu group 11
Jun 23 16:37:01 dsd-pc kernel: [    0.753356][ 6] [    T1] pci 0000:00:18.2: Adding to iommu group 11
Jun 23 16:37:01 dsd-pc kernel: [    0.753370][ 6] [    T1] pci 0000:00:18.3: Adding to iommu group 11
Jun 23 16:37:01 dsd-pc kernel: [    0.753384][ 6] [    T1] pci 0000:00:18.4: Adding to iommu group 11
Jun 23 16:37:01 dsd-pc kernel: [    0.753397][ 6] [    T1] pci 0000:00:18.5: Adding to iommu group 11
Jun 23 16:37:01 dsd-pc kernel: [    0.753410][ 6] [    T1] pci 0000:00:18.6: Adding to iommu group 11
Jun 23 16:37:01 dsd-pc kernel: [    0.753423][ 6] [    T1] pci 0000:00:18.7: Adding to iommu group 11
Jun 23 16:37:01 dsd-pc kernel: [    0.753568][ 6] [    T1] pci 0000:01:00.0: Adding to iommu group 12
Jun 23 16:37:01 dsd-pc kernel: [    0.753715][ 6] [    T1] pci 0000:02:00.0: Adding to iommu group 13
Jun 23 16:37:01 dsd-pc kernel: [    0.753858][ 6] [    T1] pci 0000:03:00.0: Adding to iommu group 14
Jun 23 16:37:01 dsd-pc kernel: [    0.754000][ 6] [    T1] pci 0000:03:00.2: Adding to iommu group 15
Jun 23 16:37:01 dsd-pc kernel: [    0.754145][ 6] [    T1] pci 0000:03:00.3: Adding to iommu group 16
Jun 23 16:37:01 dsd-pc kernel: [    0.754291][ 6] [    T1] pci 0000:04:00.0: Adding to iommu group 17
Jun 23 16:37:01 dsd-pc kernel: [    0.754436][ 6] [    T1] pci 0000:04:00.1: Adding to iommu group 18
Jun 23 16:37:01 dsd-pc kernel: [    0.754586][ 6] [    T1] pci 0000:04:00.2: Adding to iommu group 19
Jun 23 16:37:01 dsd-pc kernel: [    0.755008][ 6] [    T1] pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
Jun 23 16:37:01 dsd-pc kernel: [    0.755009][ 6] [    T1] pci 0000:00:00.2: AMD-Vi: Extended features (0xf77ef22294ada):
Jun 23 16:37:01 dsd-pc kernel: [    0.755009][ 6] [    T1]  PPR NX GT IA GA PC GA_vAPIC
Jun 23 16:37:01 dsd-pc kernel: [    0.755013][ 6] [    T1] AMD-Vi: Interrupt remapping enabled
Jun 23 16:37:01 dsd-pc kernel: [    0.755014][ 6] [    T1] AMD-Vi: Virtual APIC enabled
Jun 23 16:37:01 dsd-pc kernel: [    0.755165][ 6] [    T1] AMD-Vi: Lazy IO/TLB flushing enabled
Jun 23 16:37:01 dsd-pc kernel: [    0.756352][ 6] [    T1] amd_uncore: HYGON NB counters detected
Jun 23 16:37:01 dsd-pc kernel: [    0.756358][ 6] [    T1] amd_uncore: HYGON LLC counters detected
Jun 23 16:37:01 dsd-pc kernel: [    0.756613][ 6] [    T1] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
Jun 23 16:37:01 dsd-pc kernel: [    0.756674][ 6] [    T1] check: Scanning for low memory corruption every 60 seconds
Jun 23 16:37:01 dsd-pc kernel: [    0.758581][ 6] [    T1] Initialise system trusted keyrings
Jun 23 16:37:01 dsd-pc kernel: [    0.758596][ 6] [    T1] Key type blacklist registered
Jun 23 16:37:01 dsd-pc kernel: [    0.758646][ 6] [    T1] workingset: timestamp_bits=36 max_order=20 bucket_order=0
Jun 23 16:37:01 dsd-pc kernel: [    0.760092][ 6] [    T1] zbud: loaded
Jun 23 16:37:01 dsd-pc kernel: [    0.760535][ 6] [    T1] squashfs: version 4.0 (2009/01/31) Phillip Lougher
Jun 23 16:37:01 dsd-pc kernel: [    0.760690][ 6] [    T1] fuse: init (API version 7.31)
Jun 23 16:37:01 dsd-pc kernel: [    0.765465][ 6] [    T1] Key type asymmetric registered
Jun 23 16:37:01 dsd-pc kernel: [    0.765467][ 6] [    T1] Asymmetric key parser 'x509' registered
Jun 23 16:37:01 dsd-pc kernel: [    0.765479][ 6] [    T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
Jun 23 16:37:01 dsd-pc kernel: [    0.765546][ 6] [    T1] io scheduler mq-deadline registered
Jun 23 16:37:01 dsd-pc kernel: [    0.765586][ 6] [    T1] io scheduler bfq registered
Jun 23 16:37:01 dsd-pc kernel: [    0.766787][ 6] [    T7] pcieport 0000:00:01.3: PME: Signaling with IRQ 26
Jun 23 16:37:01 dsd-pc kernel: [    0.766849][ 6] [    T7] pcieport 0000:00:01.3: AER: enabled with IRQ 26
Jun 23 16:37:01 dsd-pc kernel: [    0.766890][ 6] [    T7] pcieport 0000:00:01.3: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 6, DL_ActiveErr+
Jun 23 16:37:01 dsd-pc kernel: [    0.767154][ 6] [    T7] pcieport 0000:00:03.1: PME: Signaling with IRQ 27
Jun 23 16:37:01 dsd-pc kernel: [    0.767201][ 6] [    T7] pcieport 0000:00:03.1: AER: enabled with IRQ 27
Jun 23 16:37:01 dsd-pc kernel: [    0.767250][ 6] [    T7] pcieport 0000:00:03.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 6, DL_ActiveErr+
Jun 23 16:37:01 dsd-pc kernel: [    0.767499][ 6] [    T7] pcieport 0000:00:07.1: PME: Signaling with IRQ 28
Jun 23 16:37:01 dsd-pc kernel: [    0.767553][ 6] [    T7] pcieport 0000:00:07.1: AER: enabled with IRQ 28
Jun 23 16:37:01 dsd-pc kernel: [    0.767873][ 6] [    T7] pcieport 0000:00:08.1: PME: Signaling with IRQ 30
Jun 23 16:37:01 dsd-pc kernel: [    0.767937][ 6] [    T7] pcieport 0000:00:08.1: AER: enabled with IRQ 30
Jun 23 16:37:01 dsd-pc kernel: [    0.768014][ 6] [    T1] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jun 23 16:37:01 dsd-pc kernel: [    0.768093][ 6] [    T1] efifb: probing for efifb
Jun 23 16:37:01 dsd-pc kernel: [    0.768110][ 6] [    T1] efifb: framebuffer at 0x10000000000, using 3072k, total 3072k
Jun 23 16:37:01 dsd-pc kernel: [    0.768110][ 6] [    T1] efifb: mode is 1024x768x32, linelength=4096, pages=1
Jun 23 16:37:01 dsd-pc kernel: [    0.768111][ 6] [    T1] efifb: scrolling: redraw
Jun 23 16:37:01 dsd-pc kernel: [    0.768112][ 6] [    T1] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Jun 23 16:37:01 dsd-pc kernel: [    0.768199][ 6] [    T1] Console: switching to colour frame buffer device 128x48
Jun 23 16:37:01 dsd-pc kernel: [    0.769658][ 6] [    T1] fb0: EFI VGA frame buffer device
Jun 23 16:37:01 dsd-pc kernel: [    0.769851][ 6] [    T1] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Jun 23 16:37:01 dsd-pc kernel: [    0.769869][ 6] [    T1] ACPI: Power Button [PWRB]
Jun 23 16:37:01 dsd-pc kernel: [    0.769927][ 6] [    T1] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Jun 23 16:37:01 dsd-pc kernel: [    0.769958][ 6] [    T1] ACPI: Power Button [PWRF]
Jun 23 16:37:01 dsd-pc kernel: [    0.770829][ 6] [    T1] GHES: APEI firmware first mode is enabled by APEI bit.
Jun 23 16:37:01 dsd-pc kernel: [    0.770914][ 6] [    T1] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jun 23 16:37:01 dsd-pc kernel: [    0.791783][ 6] [    T1] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Jun 23 16:37:01 dsd-pc kernel: [    0.812684][ 6] [    T1] 00:05: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
Jun 23 16:37:01 dsd-pc kernel: [    0.814142][ 6] [    T1] Linux agpgart interface v0.103
Jun 23 16:37:01 dsd-pc kernel: [    0.817345][ 6] [    T1] loop: module loaded
Jun 23 16:37:01 dsd-pc kernel: [    0.817544][ 6] [    T1] libphy: Fixed MDIO Bus: probed
Jun 23 16:37:01 dsd-pc kernel: [    0.817544][ 6] [    T1] tun: Universal TUN/TAP device driver, 1.6
Jun 23 16:37:01 dsd-pc kernel: [    0.817572][ 6] [    T1] PPP generic driver version 2.4.2
Jun 23 16:37:01 dsd-pc kernel: [    0.817619][ 6] [    T1] VFIO - User Level meta-driver version: 0.3
Jun 23 16:37:01 dsd-pc kernel: [    0.817681][ 6] [    T1] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jun 23 16:37:01 dsd-pc kernel: [    0.817685][ 6] [    T1] ehci-pci: EHCI PCI platform driver
Jun 23 16:37:01 dsd-pc kernel: [    0.817695][ 6] [    T1] ehci-platform: EHCI generic platform driver
Jun 23 16:37:01 dsd-pc kernel: [    0.817714][ 6] [    T1] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jun 23 16:37:01 dsd-pc kernel: [    0.817716][ 6] [    T1] ohci-pci: OHCI PCI platform driver
Jun 23 16:37:01 dsd-pc kernel: [    0.817723][ 6] [    T1] ohci-platform: OHCI generic platform driver
Jun 23 16:37:01 dsd-pc kernel: [    0.817737][ 6] [    T1] uhci_hcd: USB Universal Host Controller Interface driver
Jun 23 16:37:01 dsd-pc kernel: [    0.817835][ 6] [    T7] xhci_hcd 0000:03:00.3: xHCI Host Controller
Jun 23 16:37:01 dsd-pc kernel: [    0.817841][ 6] [    T7] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
Jun 23 16:37:01 dsd-pc kernel: [    0.817947][ 6] [    T7] xhci_hcd 0000:03:00.3: hcc params 0x0270fe65 hci version 0x110 quirks 0x0000000000000010
Jun 23 16:37:01 dsd-pc kernel: [    0.818258][ 6] [    T7] xhci_hcd 0000:03:00.3: xHCI Host Controller
Jun 23 16:37:01 dsd-pc kernel: [    0.818261][ 6] [    T7] xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
Jun 23 16:37:01 dsd-pc kernel: [    0.818263][ 6] [    T7] xhci_hcd 0000:03:00.3: Host supports USB 3.0 SuperSpeed
Jun 23 16:37:01 dsd-pc kernel: [    0.818314][ 6] [    T7] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04
Jun 23 16:37:01 dsd-pc kernel: [    0.818315][ 6] [    T7] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 23 16:37:01 dsd-pc kernel: [    0.818316][ 6] [    T7] usb usb1: Product: xHCI Host Controller
Jun 23 16:37:01 dsd-pc kernel: [    0.818317][ 6] [    T7] usb usb1: Manufacturer: Linux 5.4.18-164-generic xhci-hcd
Jun 23 16:37:01 dsd-pc kernel: [    0.818318][ 6] [    T7] usb usb1: SerialNumber: 0000:03:00.3
Jun 23 16:37:01 dsd-pc kernel: [    0.818400][ 6] [    T7] hub 1-0:1.0: USB hub found
Jun 23 16:37:01 dsd-pc kernel: [    0.818408][ 6] [    T7] hub 1-0:1.0: 4 ports detected
Jun 23 16:37:01 dsd-pc kernel: [    0.818539][ 6] [    T7] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
Jun 23 16:37:01 dsd-pc kernel: [    0.818560][ 6] [    T7] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.04
Jun 23 16:37:01 dsd-pc kernel: [    0.818561][ 6] [    T7] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 23 16:37:01 dsd-pc kernel: [    0.818562][ 6] [    T7] usb usb2: Product: xHCI Host Controller
Jun 23 16:37:01 dsd-pc kernel: [    0.818563][ 6] [    T7] usb usb2: Manufacturer: Linux 5.4.18-164-generic xhci-hcd
Jun 23 16:37:01 dsd-pc kernel: [    0.818564][ 6] [    T7] usb usb2: SerialNumber: 0000:03:00.3
Jun 23 16:37:01 dsd-pc kernel: [    0.818635][ 6] [    T7] hub 2-0:1.0: USB hub found
Jun 23 16:37:01 dsd-pc kernel: [    0.818642][ 6] [    T7] hub 2-0:1.0: 4 ports detected
Jun 23 16:37:01 dsd-pc kernel: [    0.818760][ 6] [    T1] i8042: PNP: No PS/2 controller found.
Jun 23 16:37:01 dsd-pc kernel: [    0.818761][ 6] [    T1] i8042: Probing ports directly.
Jun 23 16:37:01 dsd-pc kernel: [    1.336088][ 6] [    T1] i8042: Can't read CTR while initializing i8042
Jun 23 16:37:01 dsd-pc kernel: [    1.336092][ 6] [    T1] i8042: probe of i8042 failed with error -5
Jun 23 16:37:01 dsd-pc kernel: [    1.336160][ 6] [    T1] mousedev: PS/2 mouse device common for all mice
Jun 23 16:37:01 dsd-pc kernel: [    1.336236][ 6] [    T1] rtc_cmos 00:01: RTC can wake from S4
Jun 23 16:37:01 dsd-pc kernel: [    1.336484][ 6] [    T1] rtc_cmos 00:01: registered as rtc0
Jun 23 16:37:01 dsd-pc kernel: [    1.336529][ 6] [    T1] rtc_cmos 00:01: setting system clock to 2026-06-23T16:36:56 UTC (1782232616)
Jun 23 16:37:01 dsd-pc kernel: [    1.336547][ 6] [    T1] rtc_cmos 00:01: alarms up to one month, 114 bytes nvram, hpet irqs
Jun 23 16:37:01 dsd-pc kernel: [    1.336571][ 6] [    T1] i2c /dev entries driver
Jun 23 16:37:01 dsd-pc kernel: [    1.336613][ 6] [    T1] device-mapper: uevent: version 1.0.3
Jun 23 16:37:01 dsd-pc kernel: [    1.336664][ 6] [    T1] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com
Jun 23 16:37:01 dsd-pc kernel: [    1.336681][ 6] [    T1] platform eisa.0: Probing EISA bus 0
Jun 23 16:37:01 dsd-pc kernel: [    1.336682][ 6] [    T1] platform eisa.0: EISA: Cannot allocate resource for mainboard
Jun 23 16:37:01 dsd-pc kernel: [    1.336683][ 6] [    T1] platform eisa.0: Cannot allocate resource for EISA slot 1
Jun 23 16:37:01 dsd-pc kernel: [    1.336684][ 6] [    T1] platform eisa.0: Cannot allocate resource for EISA slot 2
Jun 23 16:37:01 dsd-pc kernel: [    1.336685][ 6] [    T1] platform eisa.0: Cannot allocate resource for EISA slot 3
Jun 23 16:37:01 dsd-pc kernel: [    1.336686][ 6] [    T1] platform eisa.0: Cannot allocate resource for EISA slot 4
Jun 23 16:37:01 dsd-pc kernel: [    1.336687][ 6] [    T1] platform eisa.0: Cannot allocate resource for EISA slot 5
Jun 23 16:37:01 dsd-pc kernel: [    1.336688][ 6] [    T1] platform eisa.0: Cannot allocate resource for EISA slot 6
Jun 23 16:37:01 dsd-pc kernel: [    1.336688][ 6] [    T1] platform eisa.0: Cannot allocate resource for EISA slot 7
Jun 23 16:37:01 dsd-pc kernel: [    1.336689][ 6] [    T1] platform eisa.0: Cannot allocate resource for EISA slot 8
Jun 23 16:37:01 dsd-pc kernel: [    1.336690][ 6] [    T1] platform eisa.0: EISA: Detected 0 cards
Jun 23 16:37:01 dsd-pc kernel: [    1.336817][ 6] [    T1] ledtrig-cpu: registered to indicate activity on CPUs
Jun 23 16:37:01 dsd-pc kernel: [    1.336823][ 6] [    T1] EFI Variables Facility v0.08 2004-May-17
Jun 23 16:37:01 dsd-pc kernel: [    1.340545][ 6] [  T233] ccp 0000:03:00.2: enabling device (0000 -> 0002)
Jun 23 16:37:01 dsd-pc kernel: [    1.340641][ 6] [  T233] ccp 0000:03:00.2: no command queues available
Jun 23 16:37:01 dsd-pc kernel: [    1.340662][ 6] [  T233] ccp 0000:04:00.1: enabling device (0000 -> 0002)
Jun 23 16:37:01 dsd-pc kernel: [    1.341144][ 6] [  T233] ccp 0000:04:00.1: ccp enabled
Jun 23 16:37:01 dsd-pc kernel: [    1.341506][ 6] [    T1] drop_monitor: Initializing network drop monitor service
Jun 23 16:37:01 dsd-pc kernel: [    1.341681][ 6] [    T1] NET: Registered protocol family 10
Jun 23 16:37:01 dsd-pc kernel: [    1.348325][ 6] [    T1] Segment Routing with IPv6
Jun 23 16:37:01 dsd-pc kernel: [    1.348343][ 6] [    T1] NET: Registered protocol family 17
Jun 23 16:37:01 dsd-pc kernel: [    1.348387][ 6] [    T1] Key type dns_resolver registered
Jun 23 16:37:01 dsd-pc kernel: [    1.349473][ 6] [    T1] RAS: Correctable Errors collector initialized.
Jun 23 16:37:01 dsd-pc kernel: [    1.349504][ 6] [    C0] microcode: CPU0: patch_level=0x80901047
Jun 23 16:37:01 dsd-pc kernel: [    1.349509][ 6] [    C1] microcode: CPU1: patch_level=0x80901047
Jun 23 16:37:01 dsd-pc kernel: [    1.349516][ 6] [    C2] microcode: CPU2: patch_level=0x80901047
Jun 23 16:37:01 dsd-pc kernel: [    1.349521][ 6] [    C3] microcode: CPU3: patch_level=0x80901047
Jun 23 16:37:01 dsd-pc kernel: [    1.349527][ 6] [    C4] microcode: CPU4: patch_level=0x80901047
Jun 23 16:37:01 dsd-pc kernel: [    1.349533][ 6] [    C5] microcode: CPU5: patch_level=0x80901047
Jun 23 16:37:01 dsd-pc kernel: [    1.349539][ 6] [    C6] microcode: CPU6: patch_level=0x80901047
Jun 23 16:37:01 dsd-pc kernel: [    1.349545][ 6] [    C7] microcode: CPU7: patch_level=0x80901047
Jun 23 16:37:01 dsd-pc kernel: [    1.349549][ 6] [    C8] microcode: CPU8: patch_level=0x80901047
Jun 23 16:37:01 dsd-pc kernel: [    1.349552][ 6] [    T1] microcode: CPU9: patch_level=0x80901047
Jun 23 16:37:01 dsd-pc kernel: [    1.349555][ 6] [   C10] microcode: CPU10: patch_level=0x80901047
Jun 23 16:37:01 dsd-pc kernel: [    1.349559][ 6] [   C11] microcode: CPU11: patch_level=0x80901047
Jun 23 16:37:01 dsd-pc kernel: [    1.349565][ 6] [   C12] microcode: CPU12: patch_level=0x80901047
Jun 23 16:37:01 dsd-pc kernel: [    1.349570][ 6] [   C13] microcode: CPU13: patch_level=0x80901047
Jun 23 16:37:01 dsd-pc kernel: [    1.349574][ 6] [   C14] microcode: CPU14: patch_level=0x80901047
Jun 23 16:37:01 dsd-pc kernel: [    1.349578][ 6] [   C15] microcode: CPU15: patch_level=0x80901047
Jun 23 16:37:01 dsd-pc kernel: [    1.349606][ 6] [    T1] microcode: Microcode Update Driver: v2.2.
Jun 23 16:37:01 dsd-pc kernel: [    1.349610][ 6] [    T1] IPI shorthand broadcast: enabled
Jun 23 16:37:01 dsd-pc kernel: [    1.349620][ 6] [    T1] sched_clock: Marking stable (1283109163, 66491298)->(1351927430, -2326969)
Jun 23 16:37:01 dsd-pc kernel: [    1.349696][ 6] [    T1] registered taskstats version 1
Jun 23 16:37:01 dsd-pc kernel: [    1.349708][ 6] [    T1] Loading compiled-in X.509 certificates
Jun 23 16:37:01 dsd-pc kernel: [    1.351276][ 6] [    T1] Loaded X.509 cert 'Build time autogenerated kernel key: ad02194698ae4b12a8ec8b5d0845eaf0137989e3'
Jun 23 16:37:01 dsd-pc kernel: [    1.351304][ 6] [    T1] zswap: loaded using pool lzo/zbud
Jun 23 16:37:01 dsd-pc kernel: [    1.351450][ 6] [    T1] Key type ._fscrypt registered
Jun 23 16:37:01 dsd-pc kernel: [    1.351451][ 6] [    T1] Key type .fscrypt registered
Jun 23 16:37:01 dsd-pc kernel: [    1.357362][ 6] [    T1] Key type big_key registered
Jun 23 16:37:01 dsd-pc kernel: [    1.360276][ 6] [    T1] Key type encrypted registered
Jun 23 16:37:01 dsd-pc kernel: [    1.360289][ 6] [    T1] ima: No TPM chip found, activating TPM-bypass!
Jun 23 16:37:01 dsd-pc kernel: [    1.360295][ 6] [    T1] ima: Allocated hash algorithm: sha256
Jun 23 16:37:01 dsd-pc kernel: [    1.360302][ 6] [    T1] ima: No architecture policies found
Jun 23 16:37:01 dsd-pc kernel: [    1.360313][ 6] [    T1] evm: Initialising EVM extended attributes:
Jun 23 16:37:01 dsd-pc kernel: [    1.360313][ 6] [    T1] evm: security.selinux
Jun 23 16:37:01 dsd-pc kernel: [    1.360314][ 6] [    T1] evm: security.apparmor
Jun 23 16:37:01 dsd-pc kernel: [    1.360314][ 6] [    T1] evm: security.ima
Jun 23 16:37:01 dsd-pc kernel: [    1.360315][ 6] [    T1] evm: security.capability
Jun 23 16:37:01 dsd-pc kernel: [    1.360315][ 6] [    T1] evm: HMAC attrs: 0x1
Jun 23 16:37:01 dsd-pc kernel: [    1.360392][ 6] [    T1] KYCP: Init kycp entries under securityfs SUCCESS!
Jun 23 16:37:01 dsd-pc kernel: [    1.360728][ 6] [    T1] PM:   Magic number: 14:8:642
Jun 23 16:37:01 dsd-pc kernel: [    1.361229][ 6] [    T1] acpi_cpufreq: overriding BIOS provided _PSD data
Jun 23 16:37:01 dsd-pc kernel: [    1.361897][ 6] [    T1] ALSA device list:
Jun 23 16:37:01 dsd-pc kernel: [    1.361899][ 6] [    T1]   No soundcards found.
Jun 23 16:37:01 dsd-pc kernel: [    1.363387][ 6] [    T1] Freeing unused decrypted memory: 2036K
Jun 23 16:37:01 dsd-pc kernel: [    1.363946][ 6] [    T1] Freeing unused kernel image memory: 2768K
Jun 23 16:37:01 dsd-pc kernel: [    1.405951][ 6] [    T1] Write protecting the kernel read-only data: 24576k
Jun 23 16:37:01 dsd-pc kernel: [    1.406458][ 6] [    T1] Freeing unused kernel image memory: 2008K
Jun 23 16:37:01 dsd-pc kernel: [    1.406619][ 6] [    T1] Freeing unused kernel image memory: 716K
Jun 23 16:37:01 dsd-pc kernel: [    1.416848][ 6] [    T1] x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jun 23 16:37:01 dsd-pc kernel: [    1.416855][ 6] [    T1] Run /init as init process
Jun 23 16:37:01 dsd-pc kernel: [    1.457957][ 6] [  T235] usb 1-1: new high-speed USB device number 2 using xhci_hcd
Jun 23 16:37:01 dsd-pc kernel: [    1.512490][ 6] [  T233] r8169 0000:01:00.0: enabling device (0400 -> 0403)
Jun 23 16:37:01 dsd-pc kernel: [    1.513699][ 6] [    T7] ahci 0000:04:00.2: version 3.0
Jun 23 16:37:01 dsd-pc kernel: [    1.513836][ 6] [    T7] ahci 0000:04:00.2: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
Jun 23 16:37:01 dsd-pc kernel: [    1.513839][ 6] [    T7] ahci 0000:04:00.2: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
Jun 23 16:37:01 dsd-pc kernel: [    1.514073][ 6] [    T7] scsi host0: ahci
Jun 23 16:37:01 dsd-pc kernel: [    1.514175][ 6] [    T7] ata1: SATA max UDMA/133 abar m4096@0xc0202000 port 0xc0202100 irq 46
Jun 23 16:37:01 dsd-pc kernel: [    1.518955][ 6] [  T313] cryptd: max_cpu_qlen set to 1000
Jun 23 16:37:01 dsd-pc kernel: [    1.523856][ 6] [  T322] AVX2 version of gcm_enc/dec engaged.
Jun 23 16:37:01 dsd-pc kernel: [    1.523857][ 6] [  T322] AES CTR mode by8 optimization enabled
Jun 23 16:37:01 dsd-pc kernel: [    1.528725][ 6] [  T233] libphy: r8169: probed
Jun 23 16:37:01 dsd-pc kernel: [    1.529007][ 6] [  T233] r8169 0000:01:00.0 eth0: RTL8168h/8111h, a4:17:91:3f:ea:4b, XID 541, IRQ 47
Jun 23 16:37:01 dsd-pc kernel: [    1.529009][ 6] [  T233] r8169 0000:01:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jun 23 16:37:01 dsd-pc kernel: [    1.536614][ 6] [  T334] r8169 0000:01:00.0 eno1: renamed from eth0
Jun 23 16:37:01 dsd-pc kernel: [    1.608291][ 6] [  T235] usb 1-1: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.01
Jun 23 16:37:01 dsd-pc kernel: [    1.608293][ 6] [  T235] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun 23 16:37:01 dsd-pc kernel: [    1.608295][ 6] [  T235] usb 1-1: Product: USB2.1 Hub
Jun 23 16:37:01 dsd-pc kernel: [    1.608296][ 6] [  T235] usb 1-1: Manufacturer: Generic
Jun 23 16:37:01 dsd-pc kernel: [    1.650572][ 6] [  T235] hub 1-1:1.0: USB hub found
Jun 23 16:37:01 dsd-pc kernel: [    1.651417][ 6] [  T235] hub 1-1:1.0: 4 ports detected
Jun 23 16:37:01 dsd-pc kernel: [    1.718102][ 6] [   T49] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
Jun 23 16:37:01 dsd-pc kernel: [    1.743542][ 6] [   T49] usb 2-1: New USB device found, idVendor=0bda, idProduct=0411, bcdDevice= 1.01
Jun 23 16:37:01 dsd-pc kernel: [    1.743544][ 6] [   T49] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun 23 16:37:01 dsd-pc kernel: [    1.743545][ 6] [   T49] usb 2-1: Product: USB3.2 Hub
Jun 23 16:37:01 dsd-pc kernel: [    1.743545][ 6] [   T49] usb 2-1: Manufacturer: Generic
Jun 23 16:37:01 dsd-pc kernel: [    1.762563][ 6] [   T49] hub 2-1:1.0: USB hub found
Jun 23 16:37:01 dsd-pc kernel: [    1.763541][ 6] [   T49] hub 2-1:1.0: 4 ports detected
Jun 23 16:37:01 dsd-pc kernel: [    1.777955][ 6] [  T215] tsc: Refined TSC clocksource calibration: 3000.000 MHz
Jun 23 16:37:01 dsd-pc kernel: [    1.777964][ 6] [  T215] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2b3e459bf4c, max_idle_ns: 440795289890 ns
Jun 23 16:37:01 dsd-pc kernel: [    1.778003][ 6] [  T215] clocksource: Switched to clocksource tsc
Jun 23 16:37:01 dsd-pc kernel: [    1.857944][ 6] [  T235] usb 1-3: new high-speed USB device number 3 using xhci_hcd
Jun 23 16:37:01 dsd-pc kernel: [    1.981954][ 6] [  T319] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Jun 23 16:37:01 dsd-pc kernel: [    1.985990][ 6] [  T319] ata1.00: ATA-11: kimtigo SSD 512GB, SN17721, max UDMA/133
Jun 23 16:37:01 dsd-pc kernel: [    1.985992][ 6] [  T319] ata1.00: 1000215216 sectors, multi 1: LBA48 NCQ (depth 32), AA
Jun 23 16:37:01 dsd-pc kernel: [    1.988163][ 6] [  T319] ata1.00: configured for UDMA/133
Jun 23 16:37:01 dsd-pc kernel: [    1.988287][ 6] [  T118] scsi 0:0:0:0: Direct-Access     ATA      kimtigo SSD 512G 721  PQ: 0 ANSI: 5
Jun 23 16:37:01 dsd-pc kernel: [    1.988438][ 6] [  T118] sd 0:0:0:0: Attached scsi generic sg0 type 0
Jun 23 16:37:01 dsd-pc kernel: [    1.988533][ 6] [    T8] sd 0:0:0:0: [sda] 1000215216 512-byte logical blocks: (512 GB/477 GiB)
Jun 23 16:37:01 dsd-pc kernel: [    1.988546][ 6] [    T8] sd 0:0:0:0: [sda] Write Protect is off
Jun 23 16:37:01 dsd-pc kernel: [    1.988548][ 6] [    T8] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jun 23 16:37:01 dsd-pc kernel: [    1.988565][ 6] [    T8] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jun 23 16:37:01 dsd-pc kernel: [    2.015141][ 6] [    T8]  sda: sda1 sda2 sda3 sda4 sda5 sda6
Jun 23 16:37:01 dsd-pc kernel: [    2.015688][ 6] [    T8] sd 0:0:0:0: [sda] Attached SCSI disk
Jun 23 16:37:01 dsd-pc kernel: [    2.114106][ 6] [   T49] usb 2-4: new SuperSpeed USB device number 3 using xhci_hcd
Jun 23 16:37:01 dsd-pc kernel: [    2.139419][ 6] [   T49] usb 2-4: New USB device found, idVendor=0bda, idProduct=0411, bcdDevice= 1.01
Jun 23 16:37:01 dsd-pc kernel: [    2.139421][ 6] [   T49] usb 2-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun 23 16:37:01 dsd-pc kernel: [    2.139422][ 6] [   T49] usb 2-4: Product: USB3.2 Hub
Jun 23 16:37:01 dsd-pc kernel: [    2.139423][ 6] [   T49] usb 2-4: Manufacturer: Generic
Jun 23 16:37:01 dsd-pc kernel: [    2.162568][ 6] [   T49] hub 2-4:1.0: USB hub found
Jun 23 16:37:01 dsd-pc kernel: [    2.163664][ 6] [   T49] hub 2-4:1.0: 4 ports detected
Jun 23 16:37:01 dsd-pc kernel: [    2.205948][ 6] [  T109] usb 1-1.1: new high-speed USB device number 4 using xhci_hcd
Jun 23 16:37:01 dsd-pc kernel: [    2.297167][ 6] [  T109] usb 1-1.1: New USB device found, idVendor=1934, idProduct=1202, bcdDevice= 1.00
Jun 23 16:37:01 dsd-pc kernel: [    2.297169][ 6] [  T109] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun 23 16:37:01 dsd-pc kernel: [    2.297170][ 6] [  T109] usb 1-1.1: Product: Fintek U4U F81534 AA66
Jun 23 16:37:01 dsd-pc kernel: [    2.297171][ 6] [  T109] usb 1-1.1: Manufacturer: FINTEK Co Ltd 
Jun 23 16:37:01 dsd-pc kernel: [    2.297172][ 6] [  T109] usb 1-1.1: SerialNumber: 20140416-01.12
Jun 23 16:37:01 dsd-pc kernel: [    2.340918][ 6] [  T235] usb 1-3: New USB device found, idVendor=1e0b, idProduct=d01e, bcdDevice= 0.00
Jun 23 16:37:01 dsd-pc kernel: [    2.340920][ 6] [  T235] usb 1-3: New USB device strings: Mfr=3, Product=1, SerialNumber=0
Jun 23 16:37:01 dsd-pc kernel: [    2.340921][ 6] [  T235] usb 1-3: Product: USB Audio
Jun 23 16:37:01 dsd-pc kernel: [    2.340922][ 6] [  T235] usb 1-3: Manufacturer: Generic
Jun 23 16:37:01 dsd-pc kernel: [    2.369944][ 6] [  T109] usb 1-1.2: new high-speed USB device number 5 using xhci_hcd
Jun 23 16:37:01 dsd-pc kernel: [    2.475666][ 6] [  T109] usb 1-1.2: New USB device found, idVendor=1a40, idProduct=0101, bcdDevice= 1.11
Jun 23 16:37:01 dsd-pc kernel: [    2.475667][ 6] [  T109] usb 1-1.2: New USB device strings: Mfr=0, Product=1, SerialNumber=0
Jun 23 16:37:01 dsd-pc kernel: [    2.475668][ 6] [  T109] usb 1-1.2: Product: USB 2.0 Hub
Jun 23 16:37:01 dsd-pc kernel: [    2.514443][ 6] [  T109] hub 1-1.2:1.0: USB hub found
Jun 23 16:37:01 dsd-pc kernel: [    2.514790][ 6] [  T109] hub 1-1.2:1.0: 4 ports detected
Jun 23 16:37:01 dsd-pc kernel: [    2.593948][ 6] [  T235] usb 1-4: new high-speed USB device number 6 using xhci_hcd
Jun 23 16:37:01 dsd-pc kernel: [    2.740542][ 6] [  T235] usb 1-4: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.01
Jun 23 16:37:01 dsd-pc kernel: [    2.740543][ 6] [  T235] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun 23 16:37:01 dsd-pc kernel: [    2.740544][ 6] [  T235] usb 1-4: Product: USB2.1 Hub
Jun 23 16:37:01 dsd-pc kernel: [    2.740545][ 6] [  T235] usb 1-4: Manufacturer: Generic
Jun 23 16:37:01 dsd-pc kernel: [    2.802566][ 6] [  T235] hub 1-4:1.0: USB hub found
Jun 23 16:37:01 dsd-pc kernel: [    2.803417][ 6] [  T235] hub 1-4:1.0: 4 ports detected
Jun 23 16:37:01 dsd-pc kernel: [    2.917950][ 6] [  T109] usb 1-1.2.2: new full-speed USB device number 7 using xhci_hcd
Jun 23 16:37:01 dsd-pc kernel: [    3.146915][ 6] [  T109] usb 1-1.2.2: New USB device found, idVendor=3151, idProduct=3120, bcdDevice= 0.02
Jun 23 16:37:01 dsd-pc kernel: [    3.146917][ 6] [  T109] usb 1-1.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun 23 16:37:01 dsd-pc kernel: [    3.146918][ 6] [  T109] usb 1-1.2.2: Product: 2.4G Receiver
Jun 23 16:37:01 dsd-pc kernel: [    3.146919][ 6] [  T109] usb 1-1.2.2: Manufacturer: YICHIP
Jun 23 16:37:01 dsd-pc kernel: [    3.146920][ 6] [  T109] usb 1-1.2.2: SerialNumber: b120300001
Jun 23 16:37:01 dsd-pc kernel: [    3.209944][ 6] [  T370] usb 1-4.2: new high-speed USB device number 8 using xhci_hcd
Jun 23 16:37:01 dsd-pc kernel: [    3.226601][ 6] [  T308] hidraw: raw HID events driver (C) Jiri Kosina
Jun 23 16:37:01 dsd-pc kernel: [    3.255197][ 6] [  T308] usbcore: registered new interface driver usbhid
Jun 23 16:37:01 dsd-pc kernel: [    3.255198][ 6] [  T308] usbhid: USB HID core driver
Jun 23 16:37:01 dsd-pc kernel: [    3.258543][ 6] [  T313] input: YICHIP 2.4G Receiver as /devices/pci0000:00/0000:00:07.1/0000:03:00.3/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.0/0003:3151:3120.0001/input/input2
Jun 23 16:37:01 dsd-pc kernel: [    3.308416][ 6] [  T370] usb 1-4.2: New USB device found, idVendor=0781, idProduct=5567, bcdDevice= 1.00
Jun 23 16:37:01 dsd-pc kernel: [    3.308418][ 6] [  T370] usb 1-4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun 23 16:37:01 dsd-pc kernel: [    3.308419][ 6] [  T370] usb 1-4.2: Product: Cruzer Blade
Jun 23 16:37:01 dsd-pc kernel: [    3.308419][ 6] [  T370] usb 1-4.2: Manufacturer: SanDisk
Jun 23 16:37:01 dsd-pc kernel: [    3.308420][ 6] [  T370] usb 1-4.2: SerialNumber: 00014030010124130721
Jun 23 16:37:01 dsd-pc kernel: [    3.311990][ 6] [  T315] usb-storage 1-4.2:1.0: USB Mass Storage device detected
Jun 23 16:37:01 dsd-pc kernel: [    3.312089][ 6] [  T315] scsi host1: usb-storage 1-4.2:1.0
Jun 23 16:37:01 dsd-pc kernel: [    3.312155][ 6] [  T315] usbcore: registered new interface driver usb-storage
Jun 23 16:37:01 dsd-pc kernel: [    3.313044][ 6] [  T315] usbcore: registered new interface driver uas
Jun 23 16:37:01 dsd-pc kernel: [    3.314018][ 6] [  T313] hid-generic 0003:3151:3120.0001: input,hidraw0: USB HID v2.00 Keyboard [YICHIP 2.4G Receiver] on usb-0000:03:00.3-1.2.2/input0
Jun 23 16:37:01 dsd-pc kernel: [    3.314244][ 6] [  T313] input: YICHIP 2.4G Receiver Mouse as /devices/pci0000:00/0000:00:07.1/0000:03:00.3/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.1/0003:3151:3120.0002/input/input3
Jun 23 16:37:01 dsd-pc kernel: [    3.314312][ 6] [  T313] input: YICHIP 2.4G Receiver System Control as /devices/pci0000:00/0000:00:07.1/0000:03:00.3/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.1/0003:3151:3120.0002/input/input4
Jun 23 16:37:01 dsd-pc kernel: [    3.370010][ 6] [  T313] input: YICHIP 2.4G Receiver Consumer Control as /devices/pci0000:00/0000:00:07.1/0000:03:00.3/usb1/1-1/1-1.2/1-1.2.2/1-1.2.2:1.1/0003:3151:3120.0002/input/input5
Jun 23 16:37:01 dsd-pc kernel: [    3.370089][ 6] [  T313] hid-generic 0003:3151:3120.0002: input,hiddev0,hidraw1: USB HID v2.00 Mouse [YICHIP 2.4G Receiver] on usb-0000:03:00.3-1.2.2/input1
Jun 23 16:37:01 dsd-pc kernel: [    4.338362][ 6] [    T8] scsi 1:0:0:0: Direct-Access     SanDisk  Cruzer Blade     1.00 PQ: 0 ANSI: 6
Jun 23 16:37:01 dsd-pc kernel: [    4.339621][ 6] [    T8] sd 1:0:0:0: Attached scsi generic sg1 type 0
Jun 23 16:37:01 dsd-pc kernel: [    4.340339][ 6] [  T118] sd 1:0:0:0: [sdb] 61341696 512-byte logical blocks: (31.4 GB/29.3 GiB)
Jun 23 16:37:01 dsd-pc kernel: [    4.340588][ 6] [  T118] sd 1:0:0:0: [sdb] Write Protect is off
Jun 23 16:37:01 dsd-pc kernel: [    4.340589][ 6] [  T118] sd 1:0:0:0: [sdb] Mode Sense: 43 00 00 00
Jun 23 16:37:01 dsd-pc kernel: [    4.340833][ 6] [  T118] sd 1:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Jun 23 16:37:01 dsd-pc kernel: [    4.372259][ 6] [  T118]  sdb: sdb1 sdb2
Jun 23 16:37:01 dsd-pc kernel: [    4.375612][ 6] [  T118] sd 1:0:0:0: [sdb] Attached SCSI removable disk
Jun 23 16:37:01 dsd-pc kernel: [    4.744597][ 6] [  T500] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
Jun 23 16:37:01 dsd-pc kernel: [    4.756212][ 6] [  T518] EXT4-fs (sda3): re-mounted. Opts: (null)
Jun 23 16:37:01 dsd-pc kernel: [    4.782687][ 6] [  T545] EXT4-fs (sda3): re-mounted. Opts: (null)
Jun 23 16:37:01 dsd-pc kernel: [    4.822442][ 6] [  T108] audit: type=1451 audit(1782232619.981:2): status=2 old_status=4  loginuid=4294967295 uid=0 gid=0 session=4294967295 lsm=kysec res=warn
Jun 23 16:37:01 dsd-pc kernel: [    4.822812][ 6] [  T108] audit: type=1450 audit(1782232619.981:3): status=0 old_status=2  loginuid=4294967295 uid=0 gid=0 session=4294967295 lsm=kysec res=warn
Jun 23 16:37:01 dsd-pc kernel: [    4.823524][ 6] [  T108] audit: type=1452 audit(1782232619.981:4): status=0 old_status=1  loginuid=4294967295 uid=0 gid=0 session=4294967295 lsm=kysec res=warn
Jun 23 16:37:01 dsd-pc kernel: [    4.823894][ 6] [  T108] audit: type=1454 audit(1782232619.981:5): status=0 old_status=1  loginuid=4294967295 uid=0 gid=0 session=4294967295 lsm=kysec res=warn
Jun 23 16:37:01 dsd-pc kernel: [    4.826765][ 6] [  T580] EXT4-fs (sda3): re-mounted. Opts: (null)
Jun 23 16:37:01 dsd-pc kernel: [    4.836192][ 6] [  T585] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
Jun 23 16:37:01 dsd-pc kernel: [    4.845677][ 6] [  T585] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
Jun 23 16:37:01 dsd-pc kernel: [    4.971303][ 6] [    T1] systemd[1]: RTC configured in localtime, applying delta of 480 minutes to system time.
Jun 23 16:37:01 dsd-pc kernel: [    4.988182][ 6] [    T1] systemd[1]: Inserted module 'autofs4'
Jun 23 16:37:01 dsd-pc kernel: [    5.009576][ 6] [    T1] systemd[1]: systemd 245.4-4kylin3.20k4.12 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
Jun 23 16:37:01 dsd-pc kernel: [    5.009697][ 6] [    T1] systemd[1]: Detected architecture x86-64.
Jun 23 16:37:01 dsd-pc kernel: [    5.031372][ 6] [    T1] systemd[1]: Set hostname to <dsd-pc>.
Jun 23 16:37:01 dsd-pc kernel: [    5.116792][ 6] [    T1] systemd[1]: Configuration file /run/systemd/system/netplan-ovs-cleanup.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
Jun 23 16:37:01 dsd-pc kernel: [    5.136122][ 6] [    T1] systemd[1]: Configuration file /lib/systemd/system/serviceavserver.service is marked executable. Please remove executable permission bits. Proceeding anyway.
Jun 23 16:37:01 dsd-pc kernel: [    5.148791][ 6] [    T1] systemd[1]: Configuration file /lib/systemd/system/kyfs-fuse.service is marked executable. Please remove executable permission bits. Proceeding anyway.
Jun 23 16:37:01 dsd-pc kernel: [    5.149768][ 6] [    T1] systemd[1]: Configuration file /lib/systemd/system/kybima.service is marked executable. Please remove executable permission bits. Proceeding anyway.
Jun 23 16:37:01 dsd-pc kernel: [    5.179368][ 6] [    T1] systemd[1]: root.mount: Unit is bound to inactive unit dev-sda5.device. Stopping, too.
Jun 23 16:37:01 dsd-pc kernel: [    5.179426][ 6] [    T1] systemd[1]: boot.mount: Unit is bound to inactive unit dev-sda2.device. Stopping, too.
Jun 23 16:37:01 dsd-pc kernel: [    5.179460][ 6] [    T1] systemd[1]: boot-efi.mount: Unit is bound to inactive unit dev-sda1.device. Stopping, too.
Jun 23 16:37:01 dsd-pc kernel: [    5.181176][ 6] [    T1] systemd[1]: Created slice system-modprobe.slice.
Jun 23 16:37:01 dsd-pc kernel: [    5.181392][ 6] [    T1] systemd[1]: Created slice User and Session Slice.
Jun 23 16:37:01 dsd-pc kernel: [    5.181446][ 6] [    T1] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Jun 23 16:37:01 dsd-pc kernel: [    5.181822][ 6] [    T1] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Jun 23 16:37:01 dsd-pc kernel: [    5.181873][ 6] [    T1] systemd[1]: Reached target User and Group Name Lookups.
Jun 23 16:37:01 dsd-pc kernel: [    5.181884][ 6] [    T1] systemd[1]: Reached target Remote File Systems.
Jun 23 16:37:01 dsd-pc kernel: [    5.181896][ 6] [    T1] systemd[1]: Reached target Slices.
Jun 23 16:37:01 dsd-pc kernel: [    5.181996][ 6] [    T1] systemd[1]: Listening on Device-mapper event daemon FIFOs.
Jun 23 16:37:01 dsd-pc kernel: [    5.182079][ 6] [    T1] systemd[1]: Listening on LVM2 poll daemon socket.
Jun 23 16:37:01 dsd-pc kernel: [    5.182157][ 6] [    T1] systemd[1]: Listening on Syslog Socket.
Jun 23 16:37:01 dsd-pc kernel: [    5.183115][ 6] [    T1] systemd[1]: Listening on Process Core Dump Socket.
Jun 23 16:37:01 dsd-pc kernel: [    5.183187][ 6] [    T1] systemd[1]: Listening on fsck to fsckd communication Socket.
Jun 23 16:37:01 dsd-pc kernel: [    5.183237][ 6] [    T1] systemd[1]: Listening on initctl Compatibility Named Pipe.
Jun 23 16:37:01 dsd-pc kernel: [    5.183383][ 6] [    T1] systemd[1]: Listening on Journal Audit Socket.
Jun 23 16:37:01 dsd-pc kernel: [    5.183465][ 6] [    T1] systemd[1]: Listening on Journal Socket (/dev/log).
Jun 23 16:37:01 dsd-pc kernel: [    5.183563][ 6] [    T1] systemd[1]: Listening on Journal Socket.
Jun 23 16:37:01 dsd-pc kernel: [    5.183649][ 6] [    T1] systemd[1]: Listening on udev Control Socket.
Jun 23 16:37:01 dsd-pc kernel: [    5.183712][ 6] [    T1] systemd[1]: Listening on udev Kernel Socket.
Jun 23 16:37:01 dsd-pc kernel: [    5.184501][ 6] [    T1] systemd[1]: Mounting Huge Pages File System...
Jun 23 16:37:01 dsd-pc kernel: [    5.185415][ 6] [    T1] systemd[1]: Mounting POSIX Message Queue File System...
Jun 23 16:37:01 dsd-pc kernel: [    5.186302][ 6] [    T1] systemd[1]: Mounting Kernel Debug File System...
Jun 23 16:37:01 dsd-pc kernel: [    5.187214][ 6] [    T1] systemd[1]: Mounting Kernel Trace File System...
Jun 23 16:37:01 dsd-pc kernel: [    5.188514][ 6] [    T1] systemd[1]: Starting Journal Service...
Jun 23 16:37:01 dsd-pc kernel: [    5.189335][ 6] [    T1] systemd[1]: Starting Availability of block devices...
Jun 23 16:37:01 dsd-pc kernel: [    5.190160][ 6] [    T1] systemd[1]: Starting KYLIN CONF2 UPDATE DB...
Jun 23 16:37:01 dsd-pc kernel: [    5.191277][ 6] [    T1] systemd[1]: Starting Set the console keyboard layout...
Jun 23 16:37:01 dsd-pc kernel: [    5.192231][ 6] [    T1] systemd[1]: Starting Create list of static device nodes for the current kernel...
Jun 23 16:37:01 dsd-pc kernel: [    5.193141][ 6] [    T1] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Jun 23 16:37:01 dsd-pc kernel: [    5.194049][ 6] [    T1] systemd[1]: Starting Load Kernel Module chromeos_pstore...
Jun 23 16:37:01 dsd-pc kernel: [    5.194980][ 6] [    T1] systemd[1]: Starting Load Kernel Module drm...
Jun 23 16:37:01 dsd-pc kernel: [    5.195772][ 6] [    T1] systemd[1]: Starting Load Kernel Module efi_pstore...
Jun 23 16:37:01 dsd-pc kernel: [    5.196900][ 6] [    T1] systemd[1]: Starting Load Kernel Module pstore_blk...
Jun 23 16:37:01 dsd-pc kernel: [    5.198173][ 6] [    T1] systemd[1]: Starting Load Kernel Module pstore_zone...
Jun 23 16:37:01 dsd-pc kernel: [    5.200236][ 6] [    T1] systemd[1]: Starting Load Kernel Module ramoops...
Jun 23 16:37:01 dsd-pc kernel: [    5.206270][ 6] [    T1] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Jun 23 16:37:01 dsd-pc kernel: [    5.206320][ 6] [    T1] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
Jun 23 16:37:01 dsd-pc kernel: [    5.208627][ 6] [    T1] systemd[1]: Starting Load Kernel Modules...
Jun 23 16:37:01 dsd-pc kernel: [    5.209848][ 6] [    T1] systemd[1]: Starting Remount Root and Kernel File Systems...
Jun 23 16:37:01 dsd-pc kernel: [    5.210004][ 6] [  T666] pstore: Registered efi as persistent store backend
Jun 23 16:37:01 dsd-pc kernel: [    5.211165][ 6] [    T1] systemd[1]: Starting udev Coldplug all Devices...
Jun 23 16:37:01 dsd-pc kernel: [    5.214496][ 6] [    T1] systemd[1]: Mounted Huge Pages File System.
Jun 23 16:37:01 dsd-pc kernel: [    5.214731][ 6] [    T1] systemd[1]: Mounted POSIX Message Queue File System.
Jun 23 16:37:01 dsd-pc kernel: [    5.214944][ 6] [    T1] systemd[1]: Mounted Kernel Debug File System.
Jun 23 16:37:01 dsd-pc kernel: [    5.215101][ 6] [    T1] systemd[1]: Mounted Kernel Trace File System.
Jun 23 16:37:01 dsd-pc kernel: [    5.215866][ 6] [    T1] systemd[1]: Finished Availability of block devices.
Jun 23 16:37:01 dsd-pc kernel: [    5.216602][ 6] [    T1] systemd[1]: Finished Create list of static device nodes for the current kernel.
Jun 23 16:37:01 dsd-pc kernel: [    5.216910][ 6] [    T1] systemd[1]: modprobe@efi_pstore.service: Succeeded.
Jun 23 16:37:01 dsd-pc kernel: [    5.217339][ 6] [    T1] systemd[1]: Finished Load Kernel Module efi_pstore.
Jun 23 16:37:01 dsd-pc kernel: [    5.217684][ 6] [    T1] systemd[1]: modprobe@pstore_blk.service: Succeeded.
Jun 23 16:37:01 dsd-pc kernel: [    5.218115][ 6] [    T1] systemd[1]: Finished Load Kernel Module pstore_blk.
Jun 23 16:37:01 dsd-pc kernel: [    5.218382][ 6] [    T1] systemd[1]: modprobe@pstore_zone.service: Succeeded.
Jun 23 16:37:01 dsd-pc kernel: [    5.218677][ 6] [    T1] systemd[1]: Finished Load Kernel Module pstore_zone.
Jun 23 16:37:01 dsd-pc kernel: [    5.218927][ 6] [    T1] systemd[1]: modprobe@ramoops.service: Succeeded.
Jun 23 16:37:01 dsd-pc kernel: [    5.219364][ 6] [    T1] systemd[1]: Finished Load Kernel Module ramoops.
Jun 23 16:37:01 dsd-pc kernel: [    5.219493][ 6] [  T678] EXT4-fs (sda3): re-mounted. Opts: (null)
Jun 23 16:37:01 dsd-pc kernel: [    5.221774][ 6] [    T1] systemd[1]: Finished Remount Root and Kernel File Systems.
Jun 23 16:37:01 dsd-pc kernel: [    5.222108][ 6] [    T1] systemd[1]: modprobe@drm.service: Succeeded.
Jun 23 16:37:01 dsd-pc kernel: [    5.222435][ 6] [    T1] systemd[1]: Finished Load Kernel Module drm.
Jun 23 16:37:01 dsd-pc kernel: [    5.223032][ 6] [    T1] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
Jun 23 16:37:01 dsd-pc kernel: [    5.224204][ 6] [    T1] systemd[1]: Starting Load/Save Random Seed...
Jun 23 16:37:01 dsd-pc kernel: [    5.225367][ 6] [    T1] systemd[1]: Starting Create System Users...
Jun 23 16:37:01 dsd-pc kernel: [    5.226481][ 6] [  T675] lp: driver loaded but no devices found
Jun 23 16:37:01 dsd-pc kernel: [    5.232257][ 6] [  T675] ppdev: user-space parallel port driver
Jun 23 16:37:01 dsd-pc kernel: [    5.241597][ 6] [    T1] systemd[1]: Finished Load/Save Random Seed.
Jun 23 16:37:01 dsd-pc kernel: [    5.247202][ 6] [    T1] systemd[1]: Finished Create System Users.
Jun 23 16:37:01 dsd-pc kernel: [    5.248093][ 6] [    T1] systemd[1]: Starting Create Static Device Nodes in /dev...
Jun 23 16:37:01 dsd-pc kernel: [    5.257685][ 6] [    T1] systemd[1]: Finished Create Static Device Nodes in /dev.
Jun 23 16:37:01 dsd-pc kernel: [    5.268653][ 6] [    T1] systemd[1]: Started Journal Service.
Jun 23 16:37:01 dsd-pc kernel: [    5.390834][ 6] [  T675] ky_dlp: loading out-of-tree module taints kernel.
Jun 23 16:37:01 dsd-pc kernel: [    5.390856][ 6] [  T675] ky_dlp: module verification failed: signature and/or required key missing - tainting kernel
Jun 23 16:37:01 dsd-pc kernel: [    5.391006][ 6] [  T675] ky_dlp module initializing.
Jun 23 16:37:01 dsd-pc kernel: [    5.391012][ 6] [  T675] Security Module ky_dlp loaded with 4 hooks
Jun 23 16:37:01 dsd-pc kernel: [    5.391012][ 6] [  T675] ky_dlp kernel module add LSM hooks successfully.
Jun 23 16:37:01 dsd-pc kernel: [    5.391024][ 6] [  T675] ky_dlp kernel module sysfs init successfully.
Jun 23 16:37:01 dsd-pc kernel: [    5.717898][ 6] [  T108] audit: type=1455 audit(1782203820.874:6): { rename /udev/data/+pci:0000:04:00.0 } for pid=725 comm='systemd-udevd' ssid=0x01 osid=0x00 loginuid=4294967295 session=4294967295 kysec_status=2 lsm=kysec res=warn
Jun 23 16:37:01 dsd-pc kernel: [    5.732188][ 6] [  T233] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
Jun 23 16:37:01 dsd-pc kernel: [    5.732191][ 6] [  T233] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
Jun 23 16:37:01 dsd-pc kernel: [    5.760486][ 6] [  T721] asus_wmi: ASUS WMI generic driver loaded
Jun 23 16:37:01 dsd-pc kernel: [    5.761904][ 6] [  T721] asus_wmi: Initialization: 0x1
Jun 23 16:37:01 dsd-pc kernel: [    5.762020][ 6] [  T721] asus_wmi: BIOS WMI version: 0.1
Jun 23 16:37:01 dsd-pc kernel: [    5.762110][ 6] [  T721] asus_wmi: SFUN value: 0x1
Jun 23 16:37:01 dsd-pc kernel: [    5.762114][ 6] [  T721] eeepc-wmi eeepc-wmi: Detected DSDWMI, not ASUSWMI, use DSTS
Jun 23 16:37:01 dsd-pc kernel: [    5.763236][ 6] [  T721] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input7
Jun 23 16:37:01 dsd-pc kernel: [    5.766689][ 6] [  T233] inno-drv 0000:02:00.0: [pcie][_pci_load:1271]vendor: 1ec8, device: 9810
Jun 23 16:37:01 dsd-pc kernel: [    5.766744][ 6] [  T233] inno-drv 0000:02:00.0: enabling device (0006 -> 0007)
Jun 23 16:37:01 dsd-pc kernel: [    5.773430][ 6] [  T233] inno-drv 0000:02:00.0: [pcie][hw_check_notice:1058]pcie_stat: 0x311, ddr_stat: 0x4, dbg_reserved_6: 0x1
Jun 23 16:37:01 dsd-pc kernel: [    5.773540][ 6] [  T233] inno-drv 0000:02:00.0: [hal][hal_mcufw_status_check:2915]ddr init f_count:0 and paddr:0000010000d031fa, ddr retrain count:0 and paddr:0000010000d031f8, pcie_stat: 0x311, ddr_stat: 0x4, dbg_reserved_6: 0x1
Jun 23 16:37:01 dsd-pc kernel: [    5.833975][ 6] [  T783] Adding 4540412k swap on /dev/sda6.  Priority:-2 extents:1 across:4540412k SSFS
Jun 23 16:37:01 dsd-pc kernel: [    5.868802][ 6] [  T740] kvm: Nested Virtualization enabled
Jun 23 16:37:01 dsd-pc kernel: [    5.868829][ 6] [  T740] kvm: Nested Paging enabled
Jun 23 16:37:01 dsd-pc kernel: [    5.868830][ 6] [  T740] SVM: Virtual VMLOAD VMSAVE supported
Jun 23 16:37:01 dsd-pc kernel: [    5.875907][ 6] [  T738] MCE: In-kernel MCE decoding enabled.
Jun 23 16:37:01 dsd-pc kernel: [    5.878272][ 6] [  T733] EDAC amd64: F18h detected (node 0).
Jun 23 16:37:01 dsd-pc kernel: [    5.878330][ 6] [  T733] EDAC MC: UMC0 chip selects:
Jun 23 16:37:01 dsd-pc kernel: [    5.878331][ 6] [  T733] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:01 dsd-pc kernel: [    5.878332][ 6] [  T733] EDAC amd64: MC: 2:  4096MB 3:     0MB
Jun 23 16:37:01 dsd-pc kernel: [    5.878335][ 6] [  T733] EDAC MC: UMC1 chip selects:
Jun 23 16:37:01 dsd-pc kernel: [    5.878336][ 6] [  T733] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:01 dsd-pc kernel: [    5.878337][ 6] [  T733] EDAC amd64: MC: 2:     0MB 3:     0MB
Jun 23 16:37:01 dsd-pc kernel: [    5.878338][ 6] [  T733] EDAC amd64: using x4 syndromes.
Jun 23 16:37:01 dsd-pc kernel: [    5.878342][ 6] [  T733] EDAC amd64: Node 0: DRAM ECC disabled.
Jun 23 16:37:01 dsd-pc kernel: [    5.878343][ 6] [  T733] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Jun 23 16:37:01 dsd-pc kernel: [    5.878343][ 6] [  T733]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
Jun 23 16:37:01 dsd-pc kernel: [    5.878343][ 6] [  T733]  (Note that use of the override may cause unknown side effects.)
Jun 23 16:37:01 dsd-pc kernel: [    5.909165][ 6] [  T730] PVR_K:  730: Read BVNC 35.4.1632.23 from HW device registers
Jun 23 16:37:01 dsd-pc kernel: [    5.909173][ 6] [  T730] PVR_K:  730: RGX Device registered BVNC 35.4.1632.23 with 1 core in the system
Jun 23 16:37:01 dsd-pc kernel: [    5.909565][ 6] [  T730] inno-pdp-drm inno-pdp-drm.13.auto: bound inno-gpu.5.auto (ops s_innogpu_pvr_ops [innogpu])
Jun 23 16:37:01 dsd-pc kernel: [    5.909569][ 6] [  T730] inno-audio inno-audio.12.auto: bind audio device
Jun 23 16:37:01 dsd-pc kernel: [    5.909999][ 6] [  T730] inno-pdp-drm inno-pdp-drm.13.auto: bound inno-audio.12.auto (ops innoaudio_component_ops [innogpu])
Jun 23 16:37:01 dsd-pc kernel: [    5.914318][ 6] [  T730] inno-pdp-drm inno-pdp-drm.13.auto: bound inno-pdp-hdmi.6.auto (ops s_inno_hdmi_ops [innogpu])
Jun 23 16:37:01 dsd-pc kernel: [    5.915243][ 6] [  T730] inno-pdp-drm inno-pdp-drm.13.auto: bound inno-pdp-vga.7.auto (ops s_inno_vga_ops [innogpu])
Jun 23 16:37:01 dsd-pc kernel: [    5.915723][ 6] [  T730] inno-pdp-drm inno-pdp-drm.13.auto: bound inno-pdp-dpu.8.auto (ops innodpu_ops [innogpu])
Jun 23 16:37:01 dsd-pc kernel: [    5.916191][ 6] [  T730] inno-pdp-drm inno-pdp-drm.13.auto: bound inno-pdp-dpu.9.auto (ops innodpu_ops [innogpu])
Jun 23 16:37:01 dsd-pc kernel: [    5.916649][ 6] [  T730] inno-pdp-drm inno-pdp-drm.13.auto: bound inno-pdp-dpu.10.auto (ops innodpu_ops [innogpu])
Jun 23 16:37:01 dsd-pc kernel: [    5.916825][ 6] [  T730] inno-pdp-drm inno-pdp-drm.13.auto: bound inno-pdp-dpu.11.auto (ops innodpu_ops [innogpu])
Jun 23 16:37:01 dsd-pc kernel: [    5.923997][ 6] [  T730] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Jun 23 16:37:01 dsd-pc kernel: [    5.924000][ 6] [  T730] [drm] No driver support for vblank timestamp query.
Jun 23 16:37:01 dsd-pc kernel: [    5.925684][ 6] [  T730] [drm] Initialized innogpu 2.19.198109986 20210625 for 0000:02:00.0 on minor 0
Jun 23 16:37:01 dsd-pc kernel: [    5.925765][ 6] [  T730] checking generic (10000000000 300000) vs hw (0 ffffffffffffffff)
Jun 23 16:37:01 dsd-pc kernel: [    5.925766][ 6] [  T730] fb0: switching to innodrmfb from EFI VGA
Jun 23 16:37:01 dsd-pc kernel: [    5.925890][ 6] [  T730] Console: switching to colour dummy device 80x25
Jun 23 16:37:01 dsd-pc kernel: [    6.000378][ 6] [  T730] fbcon: innogpudrmfb (fb0) is primary device
Jun 23 16:37:01 dsd-pc kernel: [    6.000445][ 6] [  T730] Console: switching to colour frame buffer device 240x67
Jun 23 16:37:01 dsd-pc kernel: [    6.000452][ 6] [  T730] inno-drv 0000:02:00.0: fb0: innogpudrmfb frame buffer device
Jun 23 16:37:01 dsd-pc kernel: [    6.038778][ 6] [  T735] EDAC amd64: F18h detected (node 0).
Jun 23 16:37:01 dsd-pc kernel: [    6.038829][ 6] [  T735] EDAC MC: UMC0 chip selects:
Jun 23 16:37:01 dsd-pc kernel: [    6.038830][ 6] [  T735] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:01 dsd-pc kernel: [    6.038831][ 6] [  T735] EDAC amd64: MC: 2:  4096MB 3:     0MB
Jun 23 16:37:01 dsd-pc kernel: [    6.038834][ 6] [  T735] EDAC MC: UMC1 chip selects:
Jun 23 16:37:01 dsd-pc kernel: [    6.038834][ 6] [  T735] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:01 dsd-pc kernel: [    6.038835][ 6] [  T735] EDAC amd64: MC: 2:     0MB 3:     0MB
Jun 23 16:37:01 dsd-pc kernel: [    6.038835][ 6] [  T735] EDAC amd64: using x4 syndromes.
Jun 23 16:37:01 dsd-pc kernel: [    6.038839][ 6] [  T735] EDAC amd64: Node 0: DRAM ECC disabled.
Jun 23 16:37:01 dsd-pc kernel: [    6.038840][ 6] [  T735] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Jun 23 16:37:01 dsd-pc kernel: [    6.038840][ 6] [  T735]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
Jun 23 16:37:01 dsd-pc kernel: [    6.038840][ 6] [  T735]  (Note that use of the override may cause unknown side effects.)
Jun 23 16:37:01 dsd-pc systemd[1]: systemd-app-load-opt.service: Succeeded.
Jun 23 16:37:01 dsd-pc systemd[1]: Started app load optimize.
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: is Not Realtek USB WiFi Device!
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: Device(1e0b:d01e) insert...
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: 找到匹配的设备:VID=1e0b PID=d01e
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: dbus[911]: Unknown username "secadm" in message bus configuration file
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: dbus[911]: Unknown username "geoclue" in message bus configuration file
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: is Not Realtek USB WiFi Device!
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: Device(0bda:5411) insert...
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: 找到匹配的设备:VID=0bda PID=5411
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: Device(1934:1202) insert...
Jun 23 16:37:01 dsd-pc systemd-resolved[820]: Positive Trust Anchors:
Jun 23 16:37:01 dsd-pc systemd-resolved[820]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
Jun 23 16:37:01 dsd-pc systemd-resolved[820]: Negative trust anchors: 10.in-addr.arpa 16.172.in-addr.arpa 17.172.in-addr.arpa 18.172.in-addr.arpa 19.172.in-addr.arpa 20.172.in-addr.arpa 21.172.in-addr.arpa 22.172.in-addr.arpa 23.172.in-addr.arpa 24.172.in-addr.arpa 25.172.in-addr.arpa 26.172.in-addr.arpa 27.172.in-addr.arpa 28.172.in-addr.arpa 29.172.in-addr.arpa 30.172.in-addr.arpa 31.172.in-addr.arpa 168.192.in-addr.arpa d.f.ip6.arpa corp home internal intranet lan local private test
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: is Not Realtek USB WiFi Device!
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: 找到匹配的设备:VID=1934 PID=1202
Jun 23 16:37:01 dsd-pc systemd-resolved[820]: Using system hostname 'dsd-pc'.
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: Device(1a40:0101) insert...
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: is Not Realtek USB WiFi Device!
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: 找到匹配的设备:VID=1a40 PID=0101
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kde.kscreen.service" should have been named "org.kde.KScreen.service" and will not work with system bus activation
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.ukui.freedesktop.Notification.service" should have been named "org.freedesktop.Notifications.service" and will not work with system bus activation
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/com.ukui.search.appdb.service" should have been named "com.ukui.search.appdb.service.service" and will not work with system bus activation
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/com.ukui.search.fileindex.service" should have been named "com.ukui.search.fileindex.service.service" and will not work with system bus activation
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.ukui.freedesktop.FileManager1.service" should have been named "org.freedesktop.FileManager1.service" and will not work with system bus activation
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: is Not Realtek USB WiFi Device!
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/com.kylin.cloud-sync.service" should have been named "org.kylinssoclient.dbus.service" and will not work with system bus activation
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: capng_update executed
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: capng trace p 1, e 1
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: capng dacrs p 1, e 1
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]system bus, limit control initializing....
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert dbus.conf successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:parse dbus.conf file, list busdebug, Debug switch is 0
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:parse dbus.conf file, list dispatchdebug, Debug switch is 0
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]limit control parse dbus.conf completed
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]Initializing... kylin global config table created
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]Constructing global config map: now /etc/dbus-1/dbus-security.conf will be parse!!!
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]Constructing global config map: now /etc/kylin-config/basic/dbus-security.conf will be parse!!!
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]limit control parse dbus-security.conf completed
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] init_inotify_ext executed succeed
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]bus_set_watched_limit_control_files initialize completed
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]limit control configs setup watch completed
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:dbus daemon init limit control map
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.file.system.fuse.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.kysdk.CDControl.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.boxmanage.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.kysdk.ListControl.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.kysdk.netflowcount.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.systemupgrade.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.system.proxy.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc pulseaudio-replace-conf[1062]: 正在将用户“root”从“audio”组中删除
Jun 23 16:37:01 dsd-pc pulseaudio-replace-conf[1062]: gpasswd:用户“root”不是“audio”的成员
Jun 23 16:37:01 dsd-pc pulseaudio-replace-conf[1031]: root
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.daq.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.kysdk.StorageControl.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.kysdk.PhoneControl.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc smartd[1047]: smartd 7.1 2019-12-30 r5022 [x86_64-linux-5.4.18-164-generic] (local build)
Jun 23 16:37:01 dsd-pc smartd[1047]: Copyright (C) 2002-19, Bruce Allen, Christian Franke, www.smartmontools.org
Jun 23 16:37:01 dsd-pc smartd[1047]: Opened configuration file /etc/smartd.conf
Jun 23 16:37:01 dsd-pc pulseaudio-replace-conf[1460]: 正在将用户“dsd”从“audio”组中删除
Jun 23 16:37:01 dsd-pc pulseaudio-replace-conf[1460]: gpasswd:用户“dsd”不是“audio”的成员
Jun 23 16:37:01 dsd-pc pulseaudio-replace-conf[1031]: dsd
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.networkCtrol.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc smartd[1047]: Drive: DEVICESCAN, implied '-a' Directive on line 21 of file /etc/smartd.conf
Jun 23 16:37:01 dsd-pc smartd[1047]: Configuration file /etc/smartd.conf was parsed, found DEVICESCAN, scanning devices
Jun 23 16:37:01 dsd-pc systemd[1]: pulseaudio-adapt-conf.service: Succeeded.
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.systemtreasurebox.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc systemd[1]: Finished Mate media control leds daemon.
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.ksc.vulnerability.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc smartd[1047]: Device: /dev/sda, type changed from 'scsi' to 'sat'
Jun 23 16:37:01 dsd-pc smartd[1047]: Device: /dev/sda [SAT], opened
Jun 23 16:37:01 dsd-pc smartd[1047]: Device: /dev/sda [SAT], kimtigo SSD 512GB, S/N:HYSA246976N 0400001, WWN:5-000000-000000001, FW:SN17721, 512 GB
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kysec.auth.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.kylinusbcreator.systemdbus.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc smartd[1047]: Device: /dev/sda [SAT], not found in smartd database.
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.kysdk.netIsolationctl.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc smartd[1047]: Device: /dev/sda [SAT], can't monitor Current_Pending_Sector count - no Attribute 197
Jun 23 16:37:01 dsd-pc smartd[1047]: Device: /dev/sda [SAT], can't monitor Offline_Uncorrectable count - no Attribute 198
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.mdm.checkinoutnet.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.network.qt.systemdbus.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc smartd[1047]: Device: /dev/sda [SAT], is SMART capable. Adding to "monitor" list.
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.kim.domain.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc smartd[1047]: Device: /dev/sda [SAT], state read from /var/lib/smartmontools/smartd.kimtigo_SSD_512GB-HYSA246976N_0400001.ata.state
Jun 23 16:37:01 dsd-pc smartd[1047]: Monitoring 1 ATA/SATA, 0 SCSI/SAS and 0 NVMe devices
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.connectivity.manager.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.kysdk.applicationsec.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: Device(0781:5567) insert...
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: 找到匹配的设备:VID=0781 PID=5567
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.kysdk.softwarectlsystem.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc smartd[1047]: Device: /dev/sda [SAT], state written to /var/lib/smartmontools/smartd.kimtigo_SSD_512GB-HYSA246976N_0400001.ata.state
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.backup.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc systemd[1]: Started Self Monitoring and Reporting Technology (SMART) Daemon.
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.kysdk.InputControl.hid.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.kydevmonit.domainhook.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.control.center.qt.systemdbus.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file org.ukui.samba.share.config.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file org.ukui.Biometric.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.kysdk.devicesec.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc kernel: [    6.278907][ 7] [  T738] EDAC amd64: F18h detected (node 0).
Jun 23 16:37:01 dsd-pc kernel: [    6.278997][ 7] [  T738] EDAC MC: UMC0 chip selects:
Jun 23 16:37:01 dsd-pc kernel: [    6.278999][ 7] [  T738] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:01 dsd-pc kernel: [    6.279000][ 7] [  T738] EDAC amd64: MC: 2:  4096MB 3:     0MB
Jun 23 16:37:01 dsd-pc kernel: [    6.279003][ 7] [  T738] EDAC MC: UMC1 chip selects:
Jun 23 16:37:01 dsd-pc kernel: [    6.279004][ 7] [  T738] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:01 dsd-pc kernel: [    6.279005][ 7] [  T738] EDAC amd64: MC: 2:     0MB 3:     0MB
Jun 23 16:37:01 dsd-pc kernel: [    6.279006][ 7] [  T738] EDAC amd64: using x4 syndromes.
Jun 23 16:37:01 dsd-pc kernel: [    6.279014][ 7] [  T738] EDAC amd64: Node 0: DRAM ECC disabled.
Jun 23 16:37:01 dsd-pc kernel: [    6.279017][ 7] [  T738] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Jun 23 16:37:01 dsd-pc kernel: [    6.279017][ 7] [  T738]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
Jun 23 16:37:01 dsd-pc kernel: [    6.279017][ 7] [  T738]  (Note that use of the override may cause unknown side effects.)
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: Device(3151:3120) insert...
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.ksc.virus.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.miracast.uibcctl.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.mdm.monitor.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.ukui.search.qt.systemdbus.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc udisksd[1052]: udisks daemon version 2.8.4 starting
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: 找到匹配的设备:VID=3151 PID=3120
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: is Not Realtek USB WiFi Device!
Jun 23 16:37:01 dsd-pc kernel: [    6.332280][ 7] [  T727] usbcore: registered new interface driver usbserial_generic
Jun 23 16:37:01 dsd-pc kernel: [    6.332287][ 7] [  T727] usbserial: USB Serial support registered for generic
Jun 23 16:37:01 dsd-pc kernel: [    6.345766][ 7] [  T727] usbcore: registered new interface driver f81534
Jun 23 16:37:01 dsd-pc kernel: [    6.345783][ 7] [  T727] usbserial: USB Serial support registered for Fintek F81532/F81534
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: is Not Realtek USB WiFi Device!
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.screen.rotation.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.secriskbox.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file org.kylin.KprBackend.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.disk.encrypt.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.ProcessManagerDaemon.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.processMonitor.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.ksc.scan.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file org.ukui.groupmanager.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.ksc.defender.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.logview.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file org.freedesktop.miracle.wifi.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.ukui.bluetooth.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:limit config org.ukui.GreeterDaemon.limit is corrupted, whitelist invalid. Update or reinstall corresponding software package!
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.backupserver.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc kernel: [    6.385417][ 7] [  T727] f81534 1-1.1:1.0: Fintek F81532/F81534 converter detected
Jun 23 16:37:01 dsd-pc kernel: [    6.388101][ 7] [  T727] usb 1-1.1: Fintek F81532/F81534 converter now attached to ttyUSB0
Jun 23 16:37:01 dsd-pc kernel: [    6.390710][ 8] [  T727] usb 1-1.1: Fintek F81532/F81534 converter now attached to ttyUSB1
Jun 23 16:37:01 dsd-pc kernel: [    6.393380][ 8] [  T727] usb 1-1.1: Fintek F81532/F81534 converter now attached to ttyUSB2
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.assistant.systemdaemon.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc grub-common[954]:  * Recording successful boot for GRUB
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.UpgradeStrategies.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc loadcpufreq[1025]:  * Loading cpufreq kernel modules...
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.kysdk.netflowcontrol.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.preinstall.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc kernel: [    6.396021][ 9] [  T727] usb 1-1.1: Fintek F81532/F81534 converter now attached to ttyUSB3
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“upekts”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.dlp.TransControl.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.kydoctor.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file org.ukui.libinput.proxy.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.kysdk.hotPointControl.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.kysdk.netcardcontrol.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.ksc.kysdkinit.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin-os-manager.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.kysdk.processsec.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file org.ukui.KSplash.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Insert new file com.kylin.network.enhancement.optimization.limit to limit-config-map successful
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:dbus daemon init limit control map completed
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtlTP]:dbus daemon init third-party limit-config-map
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:dbus daemon init third-party limit control map completed
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: message repeated 3 times: [ [system] [limitCtl]:service integrity check skiped: integrity map missing]
Jun 23 16:37:01 dsd-pc systemd[1]: Started Avahi mDNS/DNS-SD Stack.
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:01 dsd-pc systemd[1]: Started WPA supplicant.
Jun 23 16:37:01 dsd-pc avahi-daemon[882]: Successfully called chroot().
Jun 23 16:37:01 dsd-pc avahi-daemon[882]: Successfully dropped remaining capabilities.
Jun 23 16:37:01 dsd-pc avahi-daemon[882]: No service file found in /etc/avahi/services.
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:01 dsd-pc systemd[1]: Started kylin-offline-upgrade deamon.
Jun 23 16:37:01 dsd-pc avahi-daemon[882]: Joining mDNS multicast group on interface with address.
Jun 23 16:37:01 dsd-pc avahi-daemon[882]: New relevant interface for mDNS.
Jun 23 16:37:01 dsd-pc avahi-daemon[882]: Joining mDNS multicast group on interface with address.
Jun 23 16:37:01 dsd-pc avahi-daemon[882]: New relevant interface for mDNS.
Jun 23 16:37:01 dsd-pc avahi-daemon[882]: Network interface enumeration completed.
Jun 23 16:37:01 dsd-pc avahi-daemon[882]: Registering new address record for on *.
Jun 23 16:37:01 dsd-pc avahi-daemon[882]: Registering new address record for on IPv4.
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“uru4000”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] Activating via systemd: service name='com.kylin.kysec' unit='kysec-daemon.service' requested by ':1.10' (uid=0 pid=1015 comm="/usr/sbin/kysec-sync --usb_rb --kid_policy " label="")
Jun 23 16:37:01 dsd-pc grub-common[954]:    ...done.
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:01 dsd-pc kernel: [    6.418626][ 9] [  T725] EDAC amd64: F18h detected (node 0).
Jun 23 16:37:01 dsd-pc kernel: [    6.418684][ 9] [  T725] EDAC MC: UMC0 chip selects:
Jun 23 16:37:01 dsd-pc kernel: [    6.418688][ 9] [  T725] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:01 dsd-pc kernel: [    6.418694][ 9] [  T725] EDAC amd64: MC: 2:  4096MB 3:     0MB
Jun 23 16:37:01 dsd-pc kernel: [    6.418703][ 9] [  T725] EDAC MC: UMC1 chip selects:
Jun 23 16:37:01 dsd-pc kernel: [    6.418704][ 9] [  T725] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:01 dsd-pc kernel: [    6.418705][ 9] [  T725] EDAC amd64: MC: 2:     0MB 3:     0MB
Jun 23 16:37:01 dsd-pc kernel: [    6.418706][ 9] [  T725] EDAC amd64: using x4 syndromes.
Jun 23 16:37:01 dsd-pc kernel: [    6.418711][ 9] [  T725] EDAC amd64: Node 0: DRAM ECC disabled.
Jun 23 16:37:01 dsd-pc kernel: [    6.418712][ 9] [  T725] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Jun 23 16:37:01 dsd-pc kernel: [    6.418712][ 9] [  T725]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
Jun 23 16:37:01 dsd-pc kernel: [    6.418712][ 9] [  T725]  (Note that use of the override may cause unknown side effects.)
Jun 23 16:37:01 dsd-pc systemd[1]: Started LSB: Record successful boot for GRUB.
Jun 23 16:37:01 dsd-pc systemd[1]: Started KYLIN SDK SYSTIME DBUS.
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“aes4000”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc systemd[1]: Starting GRUB failed boot detection...
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Kysec daemon dbus service...
Jun 23 16:37:01 dsd-pc systemd[1]: grub-initrd-fallback.service: Succeeded.
Jun 23 16:37:01 dsd-pc systemd[1]: Finished GRUB failed boot detection.
Jun 23 16:37:01 dsd-pc loadcpufreq[1025]:    ...done.
Jun 23 16:37:01 dsd-pc systemd[1]: Started LSB: Load kernel modules needed to enable cpufreq scaling.
Jun 23 16:37:01 dsd-pc systemd[1]: Starting LSB: set CPUFreq kernel parameters...
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“aes2501”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“upektc”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc kysec-daemon[1684]: kysec-daemon
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“aes1610”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“fdu2000”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc cpufrequtils[1703]:  * CPUFreq Utilities: Setting performance CPUFreq governor...
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“vcom5s”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“upeksonly”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc cpufrequtils[1703]:  * CPU0...
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by ':1.12' (uid=0 pid=1052 comm="/usr/lib/udisks2/udisksd " label="")
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: Device(0bda:0411) insert...
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“vfs101”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc cpufrequtils[1703]:  * CPU1...
Jun 23 16:37:01 dsd-pc cpufrequtils[1703]:  * CPU2...
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Authorization Manager...
Jun 23 16:37:01 dsd-pc cpufrequtils[1703]:  * CPU3...
Jun 23 16:37:01 dsd-pc cpufrequtils[1703]:  * CPU4...
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: Device(0bda:0411) insert...
Jun 23 16:37:01 dsd-pc cpufrequtils[1703]:  * CPU5...
Jun 23 16:37:01 dsd-pc CRON[1732]: (root) CMD (bash /etc/logview/cleanlog.sh check)
Jun 23 16:37:01 dsd-pc CRON[1731]: (root) CMD (/usr/bin/timermanager)
Jun 23 16:37:01 dsd-pc cpufrequtils[1703]:  * CPU6...
Jun 23 16:37:01 dsd-pc cpufrequtils[1703]:  * CPU7...
Jun 23 16:37:01 dsd-pc cpufrequtils[1703]:  * CPU8...
Jun 23 16:37:01 dsd-pc cpufrequtils[1703]:  * CPU9...
Jun 23 16:37:01 dsd-pc cpufrequtils[1703]:  * CPU10...
Jun 23 16:37:01 dsd-pc cpufrequtils[1703]:  * CPU11...
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“vfs301”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:01 dsd-pc cpufrequtils[1703]:  * CPU12...
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'com.kylin.kysec'
Jun 23 16:37:01 dsd-pc systemd[1]: Started Kysec daemon dbus service.
Jun 23 16:37:01 dsd-pc cpufrequtils[1703]:  * CPU13...
Jun 23 16:37:01 dsd-pc cpufrequtils[1703]:  * CPU14...
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [kysdk-conf2] _get_schemas ->  :open /home/messagebus/.config/kylin-config/user.db failed : unable to open database file! try to open /etc/kylin-config/user.db.
Jun 23 16:37:01 dsd-pc cpufrequtils[1703]:  * CPU15...
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“aes2550”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc cpufrequtils[1703]:    ...done.
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: 找到匹配的设备:VID=0bda PID=0411
Jun 23 16:37:01 dsd-pc systemd[1]: Started LSB: set CPUFreq kernel parameters.
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“aes1660”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] Activating service name='com.kylin.software.properties' requested by ':1.15' (uid=0 pid=1739 comm="/usr/bin/timermanager " label="") (using servicehelper)
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“aes2660”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: 找到匹配的设备:VID=0bda PID=0411
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“aes3500”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc polkitd[1724]: started daemon version 0.105 using authority implementation `local' version `0.105'
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Jun 23 16:37:01 dsd-pc systemd[1]: Started Authorization Manager.
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“upektc_img”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc CRON[1039]: (CRON) info (No MTA installed, discarding output)
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“etes603”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc accounts-daemon[874]: started daemon version 0.6.55
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:01 dsd-pc systemd[1]: Started Accounts Service.
Jun 23 16:37:01 dsd-pc accounts-daemon[874]: load_autologin fail to load /etc/lightdm/lightdm.conf file
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:01 dsd-pc systemd[1]: Started KYLIN CONF2 DBUS.
Jun 23 16:37:01 dsd-pc systemd[1]: Starting KYLIN CONF2 SYNC DBUS...
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Login Service...
Jun 23 16:37:01 dsd-pc systemd[1]: Finished Switch bios USB status and perform USB device rebind check.
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: is Not Realtek USB WiFi Device!
Jun 23 16:37:01 dsd-pc realtek-usb-wifi: is Not Realtek USB WiFi Device!
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'com.kylin.software.properties'
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“vfs5011”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: ESP
Jun 23 16:37:01 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: ESP
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“vfs0050”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“elan”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:01 dsd-pc systemd[1]: Started Network Manager.
Jun 23 16:37:01 dsd-pc systemd[1]: Reached target Network.
Jun 23 16:37:01 dsd-pc systemd[1]: Starting dnsmasq - A lightweight DHCP and caching DNS server...
Jun 23 16:37:01 dsd-pc kysdk-logrotate[1008]: begin
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Init whitelist...
Jun 23 16:37:01 dsd-pc systemd[1]: Starting OpenVPN service...
Jun 23 16:37:01 dsd-pc systemd[1]: Condition check resulted in fast remote file copy program daemon being skipped.
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.19' (uid=0 pid=929 comm="/usr/sbin/NetworkManager --no-daemon " label="")
Jun 23 16:37:01 dsd-pc systemd[1]: Starting qianxin pks daemon...
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Permit User Sessions...
Jun 23 16:37:01 dsd-pc systemd[1]: Started enable vulnerability repair daemon.
Jun 23 16:37:01 dsd-pc systemd[1]: Finished OpenVPN service.
Jun 23 16:37:01 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: UEFI_NTFS
Jun 23 16:37:01 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: UEFI_NTFS
Jun 23 16:37:01 dsd-pc systemd[1]: Started kylin dlp control.
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] Activating service name='com.ksc.vulnerability' requested by ':1.21' (uid=0 pid=1903 comm="//usr/bin/dbus-send --system --dest=org.freedeskto" label="") (using servicehelper)
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Hostname Service...
Jun 23 16:37:01 dsd-pc systemd[1]: Finished Permit User Sessions.
Jun 23 16:37:01 dsd-pc ukui-input-gather[1060]: Starting daemon server...
Jun 23 16:37:01 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: ESP
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Light Display Manager...
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Hold until boot process finishes up...
Jun 23 16:37:01 dsd-pc ukui-input-gather[1060]: LibinputEventGather(0x7ffeb4f999d0)
Jun 23 16:37:01 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: UEFI_NTFS
Jun 23 16:37:01 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: ESP
Jun 23 16:37:01 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: UEFI_NTFS
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:01 dsd-pc udisksd[1052]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Jun 23 16:37:01 dsd-pc systemd[1]: Started Disk Manager.
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] Activating via systemd: service name='com.kylin.secriskbox' unit='dbus-com.kylin.secriskbox.system.service' requested by ':1.23' (uid=0 pid=1907 comm="/usr/sbin/ksc-vulnerability-repair-daemon " label="")
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:01 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: UEFI_NTFS
Jun 23 16:37:01 dsd-pc kysec-wlinit[1897]: new index created on rec field 0 into slot 103912 and 0 data rows inserted
Jun 23 16:37:01 dsd-pc kysec-wlinit[1897]: new index created on rec field 1 into slot 104056 and 0 data rows inserted
Jun 23 16:37:01 dsd-pc kysec-wlinit[1897]: new index created on rec field 2 into slot 104200 and 0 data rows inserted
Jun 23 16:37:01 dsd-pc kysec-wlinit[1897]: new index created on rec field 3 into slot 104344 and 0 data rows inserted
Jun 23 16:37:01 dsd-pc kysec-wlinit[1897]: new index created on rec field 4 into slot 104488 and 0 data rows inserted
Jun 23 16:37:01 dsd-pc kysec-wlinit[1897]: new index created on rec field 5 into slot 104632 and 0 data rows inserted
Jun 23 16:37:01 dsd-pc kysec-wlinit[1897]: new index created on rec field 6 into slot 104776 and 0 data rows inserted
Jun 23 16:37:01 dsd-pc systemd[1]: Started KYLIN SDK SYSTIME DBUS.
Jun 23 16:37:01 dsd-pc systemd[1]: Starting com.kylin.secriskbox.service...
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“synaptics”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc kernel: [    6.662624][11] [  T715] EDAC amd64: F18h detected (node 0).
Jun 23 16:37:01 dsd-pc kernel: [    6.662695][11] [  T715] EDAC MC: UMC0 chip selects:
Jun 23 16:37:01 dsd-pc kernel: [    6.662696][11] [  T715] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:01 dsd-pc kernel: [    6.662697][11] [  T715] EDAC amd64: MC: 2:  4096MB 3:     0MB
Jun 23 16:37:01 dsd-pc kernel: [    6.662700][11] [  T715] EDAC MC: UMC1 chip selects:
Jun 23 16:37:01 dsd-pc kernel: [    6.662701][11] [  T715] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:01 dsd-pc kernel: [    6.662701][11] [  T715] EDAC amd64: MC: 2:     0MB 3:     0MB
Jun 23 16:37:01 dsd-pc kernel: [    6.662702][11] [  T715] EDAC amd64: using x4 syndromes.
Jun 23 16:37:01 dsd-pc kernel: [    6.662708][11] [  T715] EDAC amd64: Node 0: DRAM ECC disabled.
Jun 23 16:37:01 dsd-pc kernel: [    6.662712][11] [  T715] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Jun 23 16:37:01 dsd-pc kernel: [    6.662712][11] [  T715]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
Jun 23 16:37:01 dsd-pc kernel: [    6.662712][11] [  T715]  (Note that use of the override may cause unknown side effects.)
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“elanmoc”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc lightdm: [lightdm:1921] start begin!!
Jun 23 16:37:01 dsd-pc biometric-authenticationd[887]: [ WARN] Get AES Key File Error[3]: 键文件在组“goodixmoc”中没有键“AESKey”, use default Key.
Jun 23 16:37:01 dsd-pc udisksd[1052]: Cleaning up mount point /media/dsd/C20C-9A63 (device 8:17 is not mounted)
Jun 23 16:37:01 dsd-pc kysdk-logrotate[1008]: end
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:01 dsd-pc systemd[1]: Started KYLIN CONF2 SYNC DBUS.
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'org.freedesktop.hostname1'
Jun 23 16:37:01 dsd-pc systemd[1]: Started Hostname Service.
Jun 23 16:37:01 dsd-pc udisksd[1052]: Cleaning up mount point /media/dsd/UEFI_NTFS (device 8:18 is not mounted)
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgLoad][338]load /etc/NetworkManager/kylin_nm_ctrl.ini
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgLoad][366]name type value
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgLoad][377][IPV4] type value ret:1
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgLoad][377]netIPV4ModifyCtrol b false ret:3
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgSetItem][156]set modname:IPV4 itemName:netIPV4ModifyCtrol success!
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgLoad][377][IPV6] b false ret:1
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgLoad][377]netIPV6ModifyCtrol b false ret:3
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgSetItem][156]set modname:IPV6 itemName:netIPV6ModifyCtrol success!
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgLoad][377][DNS] b false ret:1
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgLoad][377]netDNSModifyCtrol b false ret:3
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgSetItem][156]set modname:DNS itemName:netDNSModifyCtrol success!
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgLoad][377][Connect] b false ret:1
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgLoad][377]netWireWirelessSyncConnectCtrol b false ret:3
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgSetItem][156]set modname:Connect itemName:netWireWirelessSyncConnectCtrol success!
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgShow][477]###################################
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgShow][483][IPV4]
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgShow][493]netIPV4ModifyCtrol b false
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgShow][483][IPV6]
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgShow][493]netIPV6ModifyCtrol b false
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgShow][483][DNS]
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgShow][493]netDNSModifyCtrol b false
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgShow][483][Connect]
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgShow][493]netWireWirelessSyncConnectCtrol b false
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinCfgShow][496]###################################
Jun 23 16:37:01 dsd-pc NetworkManager: [kylinNetCtrolInit][291]kylin net ctrl success!
Jun 23 16:37:01 dsd-pc lightdm: kdkconf2 switch-user:1:True
Jun 23 16:37:01 dsd-pc lightdm: kdkconf2 greeter-hide-users:0:False
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:01 dsd-pc bash[1905]: D-Bus服务已启用
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] Activating via systemd: service name='org.freedesktop.login1' unit='dbus-org.freedesktop.login1.service' requested by ':1.29' (uid=0 pid=1921 comm="/usr/sbin/lightdm " label="")
Jun 23 16:37:01 dsd-pc systemd[1]: Condition check resulted in Load Kernel Module drm being skipped.
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'org.freedesktop.login1'
Jun 23 16:37:01 dsd-pc systemd[1]: Started Login Service.
Jun 23 16:37:01 dsd-pc systemd[1]: Started active user service.
Jun 23 16:37:01 dsd-pc dbus-daemon[911]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.19' (uid=0 pid=929 comm="/usr/sbin/NetworkManager --no-daemon " label="")
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Network Manager Script Dispatcher Service...
Jun 23 16:37:01 dsd-pc systemd[1]: Condition check resulted in Manage Sound Card State (restore and store) being skipped.
Jun 23 16:37:01 dsd-pc systemd[1]: Starting Save/Restore Sound Card State...
Jun 23 16:37:01 dsd-pc dnsmasq[1896]: dnsmasq: syntax check OK.
Jun 23 16:37:02 dsd-pc kernel: [    6.847179][13] [  T729] EDAC amd64: F18h detected (node 0).
Jun 23 16:37:02 dsd-pc kernel: [    6.847270][13] [  T729] EDAC MC: UMC0 chip selects:
Jun 23 16:37:02 dsd-pc kernel: [    6.847271][13] [  T729] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:02 dsd-pc kernel: [    6.847273][13] [  T729] EDAC amd64: MC: 2:  4096MB 3:     0MB
Jun 23 16:37:02 dsd-pc kernel: [    6.847276][13] [  T729] EDAC MC: UMC1 chip selects:
Jun 23 16:37:02 dsd-pc kernel: [    6.847277][13] [  T729] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:02 dsd-pc kernel: [    6.847278][13] [  T729] EDAC amd64: MC: 2:     0MB 3:     0MB
Jun 23 16:37:02 dsd-pc kernel: [    6.847278][13] [  T729] EDAC amd64: using x4 syndromes.
Jun 23 16:37:02 dsd-pc kernel: [    6.847283][13] [  T729] EDAC amd64: Node 0: DRAM ECC disabled.
Jun 23 16:37:02 dsd-pc kernel: [    6.847285][13] [  T729] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Jun 23 16:37:02 dsd-pc kernel: [    6.847285][13] [  T729]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
Jun 23 16:37:02 dsd-pc kernel: [    6.847285][13] [  T729]  (Note that use of the override may cause unknown side effects.)
Jun 23 16:37:02 dsd-pc kernel: [    6.854013][ 4] [  T929] Generic FE-GE Realtek PHY r8169-100:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-100:00, irq=IGNORE)
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Jun 23 16:37:02 dsd-pc systemd[1]: Started Network Manager Script Dispatcher Service.
Jun 23 16:37:02 dsd-pc systemd[1]: Finished Save/Restore Sound Card State.
Jun 23 16:37:02 dsd-pc systemd[1]: Reached target Sound Card.
Jun 23 16:37:02 dsd-pc secRiskBox[1922]: iType = 0
Jun 23 16:37:02 dsd-pc secRiskBox[1922]:  
Jun 23 16:37:02 dsd-pc kernel: [    7.026399][ 4] [  T722] EDAC amd64: F18h detected (node 0).
Jun 23 16:37:02 dsd-pc kernel: [    7.026470][ 4] [  T722] EDAC MC: UMC0 chip selects:
Jun 23 16:37:02 dsd-pc kernel: [    7.026473][ 4] [  T722] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:02 dsd-pc kernel: [    7.026474][ 4] [  T722] EDAC amd64: MC: 2:  4096MB 3:     0MB
Jun 23 16:37:02 dsd-pc kernel: [    7.026478][ 4] [  T722] EDAC MC: UMC1 chip selects:
Jun 23 16:37:02 dsd-pc kernel: [    7.026480][ 4] [  T722] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:02 dsd-pc kernel: [    7.026480][ 4] [  T722] EDAC amd64: MC: 2:     0MB 3:     0MB
Jun 23 16:37:02 dsd-pc kernel: [    7.026482][ 4] [  T722] EDAC amd64: using x4 syndromes.
Jun 23 16:37:02 dsd-pc kernel: [    7.026486][ 4] [  T722] EDAC amd64: Node 0: DRAM ECC disabled.
Jun 23 16:37:02 dsd-pc kernel: [    7.026488][ 4] [  T722] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Jun 23 16:37:02 dsd-pc kernel: [    7.026488][ 4] [  T722]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
Jun 23 16:37:02 dsd-pc kernel: [    7.026488][ 4] [  T722]  (Note that use of the override may cause unknown side effects.)
Jun 23 16:37:02 dsd-pc systemd[1]: plymouth-quit-wait.service: Succeeded.
Jun 23 16:37:02 dsd-pc lightdm: [lightdm:1921] start X server begin:0!!
Jun 23 16:37:02 dsd-pc systemd[1]: Finished Hold until boot process finishes up.
Jun 23 16:37:02 dsd-pc lightdm: [lightdm:1921] started!!
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:02 dsd-pc systemd[1]: Starting Set console scheme...
Jun 23 16:37:02 dsd-pc systemd[1]: Started Light Display Manager.
Jun 23 16:37:02 dsd-pc systemd[1]: Starting Init kylin security center configure to system...
Jun 23 16:37:02 dsd-pc systemd[1]: Starting kylin file system base fuse...
Jun 23 16:37:02 dsd-pc systemd[1]: Starting kylin process manager daemon...
Jun 23 16:37:02 dsd-pc systemd[1]: Starting KYLIN SDK SYSTIME DBUS...
Jun 23 16:37:02 dsd-pc systemd[1]: Started Kysec message and notify sync daemon.
Jun 23 16:37:02 dsd-pc dnsmasq[2036]: started, version 2.90 cachesize 1000
Jun 23 16:37:02 dsd-pc dnsmasq[2036]: compile time options: IPv6 GNU-getopt DBus no-UBus i18n IDN DHCP DHCPv6 no-Lua TFTP conntrack ipset no-nftset auth cryptohash DNSSEC loop-detect inotify dumpfile
Jun 23 16:37:02 dsd-pc dnsmasq[2036]: no servers found in /etc/resolv.conf, will retry
Jun 23 16:37:02 dsd-pc dnsmasq[2036]: read /etc/hosts - 8 names
Jun 23 16:37:02 dsd-pc kernel: [    7.050130][10] [    T8] r8169 0000:01:00.0 eno1: Link is Down
Jun 23 16:37:02 dsd-pc systemd[1]: Started update duration after shutdown or reboot.
Jun 23 16:37:02 dsd-pc systemd[1]: Starting kylin network enhancement optimization...
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'com.kylin.secriskbox'
Jun 23 16:37:02 dsd-pc systemd[1]: Started Mate media control leds daemon.
Jun 23 16:37:02 dsd-pc kysdk-logrotate[1008]: begin
Jun 23 16:37:02 dsd-pc NetworkManager[929]: g_key_file_free: assertion 'key_file != NULL' failed
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:02 dsd-pc systemd[1]: Finished Set console scheme.
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:02 dsd-pc systemd[1]: Started com.kylin.secriskbox.service.
Jun 23 16:37:02 dsd-pc kyfs-service: kyfs_fuse_init
Jun 23 16:37:02 dsd-pc systemd[1]: Started KYLIN SDK SYSTIME DBUS.
Jun 23 16:37:02 dsd-pc systemd[1]: Started kylin file system base fuse.
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] Activating service name='com.kylin.networkCtrol' requested by ':1.19' (uid=0 pid=929 comm="/usr/sbin/NetworkManager --no-daemon " label="") (using servicehelper)
Jun 23 16:37:02 dsd-pc systemd[1]: Created slice system-getty.slice.
Jun 23 16:37:02 dsd-pc systemd[1]: Started Getty on tty1.
Jun 23 16:37:02 dsd-pc systemd[1]: Reached target Login Prompts.
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'com.ksc.vulnerability'
Jun 23 16:37:02 dsd-pc systemd[1]: Started dnsmasq - A lightweight DHCP and caching DNS server.
Jun 23 16:37:02 dsd-pc systemd[1]: Reached target Host and Network Name Lookups.
Jun 23 16:37:02 dsd-pc kysdk-logrotate[1008]: end
Jun 23 16:37:02 dsd-pc kysdk-logrotate[1008]: begin
Jun 23 16:37:02 dsd-pc kysdk-logrotate[1008]: end
Jun 23 16:37:02 dsd-pc dnsmasq[2036]: read /etc/hosts.d/kylin.hosts - 0 names
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:02 dsd-pc systemd[1]: Started kylin process manager daemon.
Jun 23 16:37:02 dsd-pc nm-enhance-optimization: 服务管理进程启动,开始拉起默认服务
Jun 23 16:37:02 dsd-pc nm-enhance-optimization: 主进程开始注册信号监听,接收异常退出!
Jun 23 16:37:02 dsd-pc nm-enhance-optimization: 拉起DBUS服务以注册IPC渠道
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:02 dsd-pc nm-enhance-optimization: DBUS服务启动成功,进入DBUS消息循环监听状态...
Jun 23 16:37:02 dsd-pc systemd[1]: Started kylin network enhancement optimization.
Jun 23 16:37:02 dsd-pc nm-enhance-optimization: con monitor pthread_create
Jun 23 16:37:02 dsd-pc nm-enhance-optimization: file monitor pthread_create
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgLoad][336]load /etc/NetworkManager/kylin_nm_ctrl.ini
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgLoad][364]name type value
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgLoad][375][IPV4] type value ret:1
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgLoad][375]netIPV4ModifyCtrol b false ret:3
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgSetItem][154]set modname:IPV4 itemName:netIPV4ModifyCtrol success!
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgLoad][375][IPV6] b false ret:1
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgLoad][375]netIPV6ModifyCtrol b false ret:3
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgSetItem][154]set modname:IPV6 itemName:netIPV6ModifyCtrol success!
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgLoad][375][DNS] b false ret:1
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgLoad][375]netDNSModifyCtrol b false ret:3
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgSetItem][154]set modname:DNS itemName:netDNSModifyCtrol success!
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgLoad][375][Connect] b false ret:1
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgLoad][375]netWireWirelessSyncConnectCtrol b false ret:3
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgSetItem][154]set modname:Connect itemName:netWireWirelessSyncConnectCtrol success!
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgShow][476]###################################
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgShow][482][IPV4]
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgShow][492]netIPV4ModifyCtrol b false
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgShow][482][IPV6]
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgShow][492]netIPV6ModifyCtrol b false
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgShow][482][DNS]
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgShow][492]netDNSModifyCtrol b false
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgShow][482][Connect]
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgShow][492]netWireWirelessSyncConnectCtrol b false
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgShow][495]###################################
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'com.kylin.networkCtrol'
Jun 23 16:37:02 dsd-pc sys-dbus-netctrl[2049]: [registerService][125]registerObject /com/kylin/networkCtrol success!
Jun 23 16:37:02 dsd-pc NetworkManager: [dbusReadyCb][223]kylin net ctrl dbus ready!
Jun 23 16:37:02 dsd-pc captive-portal: dispatcher script triggered on connectivity change: NONE
Jun 23 16:37:02 dsd-pc nm-dispatcher[2072]: <15>Jun 23 16:37:02 captive-portal: dispatcher script triggered on connectivity change: NONE
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] Activating service name='com.ksc.defender' requested by ':1.42' (uid=0 pid=2027 comm="/usr/sbin/ksc-defender-init " label="") (using servicehelper)
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'com.ksc.defender'
Jun 23 16:37:02 dsd-pc com.ksc.defender[2075]: gogogo
Jun 23 16:37:02 dsd-pc avahi-daemon[882]: Server startup complete. Host name is. Local service cookie is.
Jun 23 16:37:02 dsd-pc com.ksc.defender[2075]: TRUSTED_GetCurrentUseTrustMode:
Jun 23 16:37:02 dsd-pc com.ksc.defender[2075]: TRUSTED_GetCurrentUseTrustMode:
Jun 23 16:37:02 dsd-pc ksc-defender-init[2027]: write_allMeasureLogToFile
Jun 23 16:37:02 dsd-pc systemd[1]: Finished Init kylin security center configure to system.
Jun 23 16:37:02 dsd-pc systemd[1]: Finished Init whitelist.
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:02 dsd-pc kernel: [    7.468650][11] [  T740] EDAC amd64: F18h detected (node 0).
Jun 23 16:37:02 dsd-pc kernel: [    7.468712][11] [  T740] EDAC MC: UMC0 chip selects:
Jun 23 16:37:02 dsd-pc kernel: [    7.468713][11] [  T740] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:02 dsd-pc kernel: [    7.468713][11] [  T740] EDAC amd64: MC: 2:  4096MB 3:     0MB
Jun 23 16:37:02 dsd-pc kernel: [    7.468716][11] [  T740] EDAC MC: UMC1 chip selects:
Jun 23 16:37:02 dsd-pc kernel: [    7.468717][11] [  T740] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:02 dsd-pc kernel: [    7.468717][11] [  T740] EDAC amd64: MC: 2:     0MB 3:     0MB
Jun 23 16:37:02 dsd-pc kernel: [    7.468718][11] [  T740] EDAC amd64: using x4 syndromes.
Jun 23 16:37:02 dsd-pc kernel: [    7.468722][11] [  T740] EDAC amd64: Node 0: DRAM ECC disabled.
Jun 23 16:37:02 dsd-pc kernel: [    7.468723][11] [  T740] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Jun 23 16:37:02 dsd-pc kernel: [    7.468723][11] [  T740]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
Jun 23 16:37:02 dsd-pc kernel: [    7.468723][11] [  T740]  (Note that use of the override may cause unknown side effects.)
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:02 dsd-pc kconf2: [kysdk-conf2] kdk_conf2_set_value -> Set the key 'enable' of kylin-update-frontend.notification to true
Jun 23 16:37:02 dsd-pc kconf2: [kysdk-conf2] kdk_conf2_set_value -> Set value finished. Return true
Jun 23 16:37:02 dsd-pc kconf2: [kysdk-conf2] kdk_conf2_set_value -> Set the key 'enable' of kylin-update-frontend.autodownload to true
Jun 23 16:37:02 dsd-pc kconf2: [kysdk-conf2] kdk_conf2_set_value -> Set value finished. Return true
Jun 23 16:37:02 dsd-pc systemd[1]: e2scrub_reap.service: Succeeded.
Jun 23 16:37:02 dsd-pc systemd[1]: Finished Remove Stale Online ext4 Metadata Check Snapshots.
Jun 23 16:37:02 dsd-pc bluetoothService[1054]: Program running.....
Jun 23 16:37:02 dsd-pc kernel: [    7.530276][ 8] [ T2021] PVR_K:  2021: AXI fabric coherency (RGX_CR_SOC_AXI): 0xc
Jun 23 16:37:02 dsd-pc kernel: [    7.533223][ 8] [ T2021] PVR_K:  2021: RGX Firmware image 'innogpu/fh2m.fw' loaded
Jun 23 16:37:02 dsd-pc kernel: [    7.536673][ 8] [ T2021] PVR_K:  2021: Shader binary image 'innogpu/fh2m.sh' loaded
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:02 dsd-pc obexd[2215]: OBEX daemon 5.62
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/main.c:main() Entering main loop
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/manager.c:manager_init() 
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/plugin.c:plugin_init() Loading builtin plugins
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/mimetype.c:obex_mime_type_driver_register() driver 0x47b3c0 mimetype x-obex/folder-listing registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/mimetype.c:obex_mime_type_driver_register() driver 0x47b440 mimetype x-obex/capability registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/mimetype.c:obex_mime_type_driver_register() driver 0x47b340 mimetype x-obex/folder-listing registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/mimetype.c:obex_mime_type_driver_register() driver 0x47b4c0 mimetype (null) registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/plugin.c:add_plugin() Plugin filesystem loaded
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/transport.c:obex_transport_driver_register() driver 0x47b560 transport bluetooth registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/plugin.c:add_plugin() Plugin bluetooth loaded
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/service.c:obex_service_driver_register() driver 0x47b640 service Nokia OBEX PC Suite Services registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/mimetype.c:obex_mime_type_driver_register() driver 0x47b5c0 mimetype application/vnd.nokia-backup registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/plugin.c:add_plugin() Plugin pcsuite loaded
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/service.c:obex_service_driver_register() driver 0x47b700 service Object Push server registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/plugin.c:add_plugin() Plugin opp loaded
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/service.c:obex_service_driver_register() driver 0x47b7c0 service File Transfer server registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/plugin.c:add_plugin() Plugin ftp loaded
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/plugins/irmc.c:irmc_init() 
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/mimetype.c:obex_mime_type_driver_register() driver 0x47b920 mimetype (null) registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/service.c:obex_service_driver_register() driver 0x47b880 service IRMC Sync server registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/plugin.c:add_plugin() Plugin irmc loaded
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/mimetype.c:obex_mime_type_driver_register() driver 0x47bac0 mimetype x-bt/phonebook registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/mimetype.c:obex_mime_type_driver_register() driver 0x47ba40 mimetype x-bt/vcard-listing registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/mimetype.c:obex_mime_type_driver_register() driver 0x47b9c0 mimetype x-bt/vcard registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/service.c:obex_service_driver_register() driver 0x47bb40 service Phonebook Access server registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/plugin.c:add_plugin() Plugin pbap loaded
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/mimetype.c:obex_mime_type_driver_register() driver 0x47c040 mimetype x-bt/MAP-event-report registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/service.c:obex_service_driver_register() driver 0x47c0c0 service Message Notification server registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/plugin.c:add_plugin() Plugin mns loaded
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/src/plugin.c:plugin_init() Loading plugins /usr/lib/x86_64-linux-gnu/obex/plugins
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/client/bluetooth.c:bluetooth_init() 
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/client/transport.c:obc_transport_register() transport 0x47c4c0 name Bluetooth registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/client/manager.c:client_manager_init() Module bluetooth loaded
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/client/opp.c:opp_init() 
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/client/driver.c:obc_driver_register() driver 0x47c600 service OPP registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/client/manager.c:client_manager_init() Module opp loaded
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/client/ftp.c:ftp_init() 
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/client/driver.c:obc_driver_register() driver 0x47c5c0 service FTP registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/client/driver.c:obc_driver_register() driver 0x47c580 service PCSUITE registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/client/manager.c:client_manager_init() Module ftp loaded
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/client/pbap.c:pbap_init() 
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/client/driver.c:obc_driver_register() driver 0x47c540 service PBAP registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/client/manager.c:client_manager_init() Module pbap loaded
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/client/sync.c:sync_init() 
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/client/driver.c:obc_driver_register() driver 0x47c500 service SYNC registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/client/manager.c:client_manager_init() Module sync loaded
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/client/map.c:map_init() 
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/client/driver.c:obc_driver_register() driver 0x47c640 service MAP registered
Jun 23 16:37:02 dsd-pc obexd[2215]: obexd/client/manager.c:client_manager_init() Module map loaded
Jun 23 16:37:02 dsd-pc systemd[1]: kylin-activation-check.service: Succeeded.
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:02 dsd-pc systemd[1]: Started kylin-system-updater dbus daemon.
Jun 23 16:37:02 dsd-pc systemd[1]: Started Unattended Upgrades Shutdown.
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] Activating service name='com.kylin.UpgradeStrategies' requested by ':1.46' (uid=0 pid=990 comm="/usr/bin/python3 /usr/share/kylin-system-updater/k" label="") (using servicehelper)
Jun 23 16:37:02 dsd-pc kernel: [    7.672420][ 8] [  T736] usbcore: registered new interface driver snd-usb-audio
Jun 23 16:37:02 dsd-pc kernel: [    7.710887][ 8] [  T743] EDAC amd64: F18h detected (node 0).
Jun 23 16:37:02 dsd-pc kernel: [    7.710946][ 8] [  T743] EDAC MC: UMC0 chip selects:
Jun 23 16:37:02 dsd-pc kernel: [    7.710947][ 8] [  T743] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:02 dsd-pc kernel: [    7.710948][ 8] [  T743] EDAC amd64: MC: 2:  4096MB 3:     0MB
Jun 23 16:37:02 dsd-pc kernel: [    7.710950][ 8] [  T743] EDAC MC: UMC1 chip selects:
Jun 23 16:37:02 dsd-pc kernel: [    7.710951][ 8] [  T743] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:02 dsd-pc kernel: [    7.710952][ 8] [  T743] EDAC amd64: MC: 2:     0MB 3:     0MB
Jun 23 16:37:02 dsd-pc kernel: [    7.710952][ 8] [  T743] EDAC amd64: using x4 syndromes.
Jun 23 16:37:02 dsd-pc kernel: [    7.710958][ 8] [  T743] EDAC amd64: Node 0: DRAM ECC disabled.
Jun 23 16:37:02 dsd-pc kernel: [    7.710960][ 8] [  T743] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Jun 23 16:37:02 dsd-pc kernel: [    7.710960][ 8] [  T743]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
Jun 23 16:37:02 dsd-pc kernel: [    7.710960][ 8] [  T743]  (Note that use of the override may cause unknown side effects.)
Jun 23 16:37:02 dsd-pc dbus-daemon[911]: [system] Activating service name='com.kylin.assistant.systemdaemon' requested by ':1.48' (uid=0 pid=890 comm="/usr/bin/kylin-os-manager-daemon " label="") (using servicehelper)
Jun 23 16:37:03 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:03 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'com.kylin.assistant.systemdaemon'
Jun 23 16:37:03 dsd-pc biometric-authenticationd[2312]: flags#011#011: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate sme ssbd csv ibpb vmmcall csv2 fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca
Jun 23 16:37:03 dsd-pc biometric-authenticationd[2312]: message repeated 15 times: [ flags#011#011: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb hw_pstate sme ssbd csv ibpb vmmcall csv2 fsgsbase bmi1 avx2 smep bmi2 rdseed adx smap clflushopt sha_ni xsaveopt xsavec xgetbv1 xsaves clzero irperf xsaveerptr arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif overflow_recov succor smca]
Jun 23 16:37:03 dsd-pc kconf2: [kysdk-conf2] kdk_conf2_set_value -> Set the key 'enable' of kylin-update-frontend.notification to true
Jun 23 16:37:03 dsd-pc kconf2: [kysdk-conf2] kdk_conf2_set_value -> Set value finished. Return true
Jun 23 16:37:03 dsd-pc kconf2: [kysdk-conf2] kdk_conf2_set_value -> Set the key 'enable' of kylin-update-frontend.autodownload to true
Jun 23 16:37:03 dsd-pc kconf2: [kysdk-conf2] kdk_conf2_set_value -> Set value finished. Return true
Jun 23 16:37:03 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:03 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'com.kylin.UpgradeStrategies'
Jun 23 16:37:03 dsd-pc systemd[1]: Started qianxin pks daemon.
Jun 23 16:37:03 dsd-pc obexd[2215]: obexd/src/manager.c:register_agent() Agent registered
Jun 23 16:37:03 dsd-pc kernel: [    8.214579][11] [  T720] EDAC amd64: F18h detected (node 0).
Jun 23 16:37:03 dsd-pc kernel: [    8.214665][11] [  T720] EDAC MC: UMC0 chip selects:
Jun 23 16:37:03 dsd-pc kernel: [    8.214667][11] [  T720] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:03 dsd-pc kernel: [    8.214668][11] [  T720] EDAC amd64: MC: 2:  4096MB 3:     0MB
Jun 23 16:37:03 dsd-pc kernel: [    8.214670][11] [  T720] EDAC MC: UMC1 chip selects:
Jun 23 16:37:03 dsd-pc kernel: [    8.214672][11] [  T720] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:03 dsd-pc kernel: [    8.214673][11] [  T720] EDAC amd64: MC: 2:     0MB 3:     0MB
Jun 23 16:37:03 dsd-pc kernel: [    8.214674][11] [  T720] EDAC amd64: using x4 syndromes.
Jun 23 16:37:03 dsd-pc kernel: [    8.214679][11] [  T720] EDAC amd64: Node 0: DRAM ECC disabled.
Jun 23 16:37:03 dsd-pc kernel: [    8.214681][11] [  T720] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Jun 23 16:37:03 dsd-pc kernel: [    8.214681][11] [  T720]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
Jun 23 16:37:03 dsd-pc kernel: [    8.214681][11] [  T720]  (Note that use of the override may cause unknown side effects.)
Jun 23 16:37:03 dsd-pc biometric-authenticationd[2388]: ls: 无法访问'/dev/video0': 没有那个文件或目录
Jun 23 16:37:03 dsd-pc biometric-authenticationd[887]: [ NOTE] not find device
Jun 23 16:37:03 dsd-pc biometric-authenticationd[887]: [ NOTE] 当前驱动列表:r301[F] -> bio_drv_mhukey[T] -> upekts[F] -> uru4000[F] -> aes4000[F] -> aes2501[F] -> upektc[F] -> aes1610[F] -> fdu2000[F] -> vcom5s[F] -> upeksonly[F] -> vfs101[F] -> vfs301[F] -> aes2550[F] -> aes1660[F] -> aes2660[F] -> aes3500[F] -> upektc_img[F] -> etes603[F] -> vfs5011[F] -> vfs0050[F] -> elan[F] -> synaptics[F] -> elanmoc[F] -> goodixmoc[F] -> aratek_trustfinger[F] -> wechat_driver[T] -> bio_drv_facedetect[F] -> NULL
Jun 23 16:37:03 dsd-pc biometric-authenticationd[887]: [ NOTE] 当前设备列表:wechat_driver[1] -> NULL
Jun 23 16:37:03 dsd-pc biometric-authenticationd[887]: [ NOTE] InitDBusCommunicationServer: Server started
Jun 23 16:37:03 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:03 dsd-pc biometric-authenticationd[887]: [ NOTE] name_acquired_cb called, Acquired bus name: org.ukui.Biometric
Jun 23 16:37:03 dsd-pc systemd[1]: Started Authenticate by human biometric.
Jun 23 16:37:03 dsd-pc systemd[1]: Reached target Multi-User System.
Jun 23 16:37:03 dsd-pc systemd[1]: Reached target Graphical Interface.
Jun 23 16:37:03 dsd-pc systemd[1]: Starting Update UTMP about System Runlevel Changes...
Jun 23 16:37:03 dsd-pc systemd[1]: systemd-update-utmp-runlevel.service: Succeeded.
Jun 23 16:37:03 dsd-pc systemd[1]: Finished Update UTMP about System Runlevel Changes.
Jun 23 16:37:03 dsd-pc systemd[1]: Startup finished in 28min 40.337s (firmware) + 2.949s (loader) + 4.901s (kernel) + 3.277s (userspace) = 28min 51.466s.
Jun 23 16:37:03 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:03 dsd-pc python3[1939]: :1.65
Jun 23 16:37:03 dsd-pc python3[1939]: activeUser :  None
Jun 23 16:37:03 dsd-pc systemd[1]: dmesg.service: Succeeded.
Jun 23 16:37:03 dsd-pc kernel: [    8.478740][10] [  T724] EDAC amd64: F18h detected (node 0).
Jun 23 16:37:03 dsd-pc kernel: [    8.478800][10] [  T724] EDAC MC: UMC0 chip selects:
Jun 23 16:37:03 dsd-pc kernel: [    8.478801][10] [  T724] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:03 dsd-pc kernel: [    8.478802][10] [  T724] EDAC amd64: MC: 2:  4096MB 3:     0MB
Jun 23 16:37:03 dsd-pc kernel: [    8.478804][10] [  T724] EDAC MC: UMC1 chip selects:
Jun 23 16:37:03 dsd-pc kernel: [    8.478805][10] [  T724] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:03 dsd-pc kernel: [    8.478806][10] [  T724] EDAC amd64: MC: 2:     0MB 3:     0MB
Jun 23 16:37:03 dsd-pc kernel: [    8.478806][10] [  T724] EDAC amd64: using x4 syndromes.
Jun 23 16:37:03 dsd-pc kernel: [    8.478810][10] [  T724] EDAC amd64: Node 0: DRAM ECC disabled.
Jun 23 16:37:03 dsd-pc kernel: [    8.478811][10] [  T724] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Jun 23 16:37:03 dsd-pc kernel: [    8.478811][10] [  T724]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
Jun 23 16:37:03 dsd-pc kernel: [    8.478811][10] [  T724]  (Note that use of the override may cause unknown side effects.)
Jun 23 16:37:03 dsd-pc kconf2: [kysdk-conf2] kdk_conf2_get_value -> Get value start
Jun 23 16:37:03 dsd-pc kconf2: [kysdk-conf2] kdk_conf2_get_value -> Get value end
Jun 23 16:37:03 dsd-pc kconf2: [kysdk-conf2] kdk_conf2_get_value -> Get value start
Jun 23 16:37:03 dsd-pc kconf2: [kysdk-conf2] kdk_conf2_get_value -> Get value end
Jun 23 16:37:03 dsd-pc kconf2: [kysdk-conf2] kdk_conf2_get_value -> Get value start
Jun 23 16:37:03 dsd-pc kconf2: [kysdk-conf2] kdk_conf2_get_value -> Get value end
Jun 23 16:37:03 dsd-pc kconf2: [kysdk-conf2] kdk_conf2_get_value -> Get value start
Jun 23 16:37:03 dsd-pc kconf2: [kysdk-conf2] kdk_conf2_get_value -> Get value end
Jun 23 16:37:04 dsd-pc kernel: [    8.902693][10] [  T739] EDAC amd64: F18h detected (node 0).
Jun 23 16:37:04 dsd-pc kernel: [    8.902752][10] [  T739] EDAC MC: UMC0 chip selects:
Jun 23 16:37:04 dsd-pc kernel: [    8.902754][10] [  T739] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:04 dsd-pc kernel: [    8.902755][10] [  T739] EDAC amd64: MC: 2:  4096MB 3:     0MB
Jun 23 16:37:04 dsd-pc kernel: [    8.902758][10] [  T739] EDAC MC: UMC1 chip selects:
Jun 23 16:37:04 dsd-pc kernel: [    8.902759][10] [  T739] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:04 dsd-pc kernel: [    8.902760][10] [  T739] EDAC amd64: MC: 2:     0MB 3:     0MB
Jun 23 16:37:04 dsd-pc kernel: [    8.902760][10] [  T739] EDAC amd64: using x4 syndromes.
Jun 23 16:37:04 dsd-pc kernel: [    8.902765][10] [  T739] EDAC amd64: Node 0: DRAM ECC disabled.
Jun 23 16:37:04 dsd-pc kernel: [    8.902767][10] [  T739] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Jun 23 16:37:04 dsd-pc kernel: [    8.902767][10] [  T739]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
Jun 23 16:37:04 dsd-pc kernel: [    8.902767][10] [  T739]  (Note that use of the override may cause unknown side effects.)
Jun 23 16:37:04 dsd-pc kernel: [    8.952767][10] [ T2467] st: Version 20160209, fixed bufsize 32768, s/g segs 256
Jun 23 16:37:04 dsd-pc lightdm: [lightdm:1921] Got X server signal started:0!!
Jun 23 16:37:04 dsd-pc ukui-login-sound: usr info file path: /home/dsd/.config/audio.json.
Jun 23 16:37:04 dsd-pc ukui-login-sound: autoLoginUser:, lastLoginUser:dsd
Jun 23 16:37:04 dsd-pc ukui-login-sound: card hw:1 support hardware volume control.
Jun 23 16:37:04 dsd-pc ukui-login-sound: play system sound effects on the device:hw:CARD=Audio,DEV=2 at volume:100.
Jun 23 16:37:04 dsd-pc ukui-login-sound: start open hw:CARD=Audio,DEV=2 device...
Jun 23 16:37:04 dsd-pc ukui-login-sound: start play /usr/share/ukui/ukui-session-manager/startup.wav file...
Jun 23 16:37:04 dsd-pc lightdm[2484]: Signed 16 bit Little Endian, Rate 48000 Hz, Stereo
Jun 23 16:37:04 dsd-pc systemd[1]: Accepting user/group name '1000', which does not match strict user/group name rules.
Jun 23 16:37:04 dsd-pc systemd[1]: Created slice User Slice of UID 1000.
Jun 23 16:37:04 dsd-pc systemd[1]: Starting User Runtime Directory /run/user/1000...
Jun 23 16:37:04 dsd-pc python3[1939]: createSess :  3
Jun 23 16:37:04 dsd-pc systemd[1]: Finished User Runtime Directory /run/user/1000.
Jun 23 16:37:04 dsd-pc systemd[1]: Starting User Manager for UID 1000...
Jun 23 16:37:04 dsd-pc python3[1939]: sess[3]: user<dsd> Remote<0> Active<1> Service<lightdm-autologin>
Jun 23 16:37:04 dsd-pc python3[1939]: sess num :  1
Jun 23 16:37:04 dsd-pc python3[1939]: emit ActiveUserChange signal
Jun 23 16:37:04 dsd-pc python3[1939]: activeUser :  dsd
Jun 23 16:37:04 dsd-pc systemd[2496]: Started Timed recycling mode automatic synchronization activation status.
Jun 23 16:37:04 dsd-pc systemd[2496]: Started activation.
Jun 23 16:37:04 dsd-pc systemd[2496]: Started System upgrade timing detection.
Jun 23 16:37:04 dsd-pc systemd[2496]: Started Silent update timing detection.
Jun 23 16:37:04 dsd-pc systemd[2496]: Started Run uksc remoter daemon.
Jun 23 16:37:04 dsd-pc systemd[2496]: Started reactivation.
Jun 23 16:37:04 dsd-pc systemd[2496]: Reached target Paths.
Jun 23 16:37:04 dsd-pc systemd[2496]: Reached target Timers.
Jun 23 16:37:04 dsd-pc systemd[2496]: Starting D-Bus User Message Bus Socket.
Jun 23 16:37:04 dsd-pc systemd[2496]: Listening on GnuPG network certificate management daemon.
Jun 23 16:37:04 dsd-pc systemd[2496]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jun 23 16:37:04 dsd-pc systemd[2496]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Jun 23 16:37:04 dsd-pc systemd[2496]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jun 23 16:37:04 dsd-pc systemd[2496]: Listening on GnuPG cryptographic agent and passphrase cache.
Jun 23 16:37:04 dsd-pc systemd[2496]: Listening on Sound System.
Jun 23 16:37:04 dsd-pc systemd[2496]: Listening on D-Bus User Message Bus Socket.
Jun 23 16:37:04 dsd-pc systemd[2496]: Reached target Sockets.
Jun 23 16:37:04 dsd-pc systemd[2496]: Reached target Basic System.
Jun 23 16:37:04 dsd-pc systemd[1]: Started User Manager for UID 1000.
Jun 23 16:37:04 dsd-pc systemd[2496]: Started preprocessing data Service.
Jun 23 16:37:04 dsd-pc systemd[2496]: Reached target Main User Target.
Jun 23 16:37:04 dsd-pc systemd[2496]: Startup finished in 164ms.
Jun 23 16:37:04 dsd-pc systemd[1]: Started Session 3 of user dsd.
Jun 23 16:37:04 dsd-pc kernel: [    9.458973][10] [  T714] EDAC amd64: F18h detected (node 0).
Jun 23 16:37:04 dsd-pc kernel: [    9.459041][10] [  T714] EDAC MC: UMC0 chip selects:
Jun 23 16:37:04 dsd-pc kernel: [    9.459042][10] [  T714] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:04 dsd-pc kernel: [    9.459043][10] [  T714] EDAC amd64: MC: 2:  4096MB 3:     0MB
Jun 23 16:37:04 dsd-pc kernel: [    9.459046][10] [  T714] EDAC MC: UMC1 chip selects:
Jun 23 16:37:04 dsd-pc kernel: [    9.459047][10] [  T714] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:04 dsd-pc kernel: [    9.459048][10] [  T714] EDAC amd64: MC: 2:     0MB 3:     0MB
Jun 23 16:37:04 dsd-pc kernel: [    9.459048][10] [  T714] EDAC amd64: using x4 syndromes.
Jun 23 16:37:04 dsd-pc kernel: [    9.459053][10] [  T714] EDAC amd64: Node 0: DRAM ECC disabled.
Jun 23 16:37:04 dsd-pc kernel: [    9.459055][10] [  T714] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Jun 23 16:37:04 dsd-pc kernel: [    9.459055][10] [  T714]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
Jun 23 16:37:04 dsd-pc kernel: [    9.459055][10] [  T714]  (Note that use of the override may cause unknown side effects.)
Jun 23 16:37:04 dsd-pc kylin-software-center-plugin-preprocessing[2525]: /usr/bin/kylin-software-center-plugin-preprocessing
Jun 23 16:37:04 dsd-pc kylin-software-center-plugin-preprocessing[2525]: normal start
Jun 23 16:37:04 dsd-pc kernel: [    9.654586][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 644 (reg 5154, index 13) beyond range (645, 1539)
Jun 23 16:37:04 dsd-pc kernel: [    9.654589][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.655053][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 644 (reg 5158, index 14) beyond range (645, 1539)
Jun 23 16:37:04 dsd-pc kernel: [    9.655055][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.655057][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 644 (reg 5158, index 15) beyond range (645, 1539)
Jun 23 16:37:04 dsd-pc kernel: [    9.655058][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.656094][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 645 (reg 5166, index 16) beyond range (646, 1540)
Jun 23 16:37:04 dsd-pc kernel: [    9.656095][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.657133][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 645 (reg 5174, index 17) beyond range (647, 1541)
Jun 23 16:37:04 dsd-pc kernel: [    9.657133][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.658172][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 645 (reg 5183, index 18) beyond range (649, 1542)
Jun 23 16:37:04 dsd-pc kernel: [    9.658173][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.659022][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 645 (reg 5189, index 19) beyond range (649, 1543)
Jun 23 16:37:04 dsd-pc kernel: [    9.659023][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.659589][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 645 (reg 5194, index 20) beyond range (650, 1544)
Jun 23 16:37:04 dsd-pc kernel: [    9.659590][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.659591][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 645 (reg 5194, index 21) beyond range (650, 1544)
Jun 23 16:37:04 dsd-pc kernel: [    9.659592][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.659593][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 645 (reg 5194, index 22) beyond range (650, 1544)
Jun 23 16:37:04 dsd-pc kernel: [    9.659594][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.659596][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 645 (reg 5194, index 23) beyond range (650, 1544)
Jun 23 16:37:04 dsd-pc kernel: [    9.659596][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.659598][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 646 (reg 5194, index 24) beyond range (650, 1544)
Jun 23 16:37:04 dsd-pc kernel: [    9.659598][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.659600][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 646 (reg 5194, index 25) beyond range (650, 1544)
Jun 23 16:37:04 dsd-pc kernel: [    9.659601][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.659602][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 646 (reg 5194, index 26) beyond range (650, 1544)
Jun 23 16:37:04 dsd-pc kernel: [    9.659603][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.659604][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 646 (reg 5194, index 27) beyond range (650, 1544)
Jun 23 16:37:04 dsd-pc kernel: [    9.659605][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.659607][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 646 (reg 5194, index 28) beyond range (650, 1544)
Jun 23 16:37:04 dsd-pc kernel: [    9.659607][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.659609][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 646 (reg 5194, index 29) beyond range (650, 1544)
Jun 23 16:37:04 dsd-pc kernel: [    9.659609][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.660644][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 646 (reg 5202, index 30) beyond range (651, 1545)
Jun 23 16:37:04 dsd-pc kernel: [    9.660645][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.660740][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 646 (reg 5203, index 31) beyond range (651, 1545)
Jun 23 16:37:04 dsd-pc kernel: [    9.660741][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.660743][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 647 (reg 5203, index 32) beyond range (651, 1545)
Jun 23 16:37:04 dsd-pc kernel: [    9.660743][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.660745][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 647 (reg 5203, index 33) beyond range (651, 1545)
Jun 23 16:37:04 dsd-pc kernel: [    9.660745][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.660747][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 647 (reg 5203, index 34) beyond range (651, 1545)
Jun 23 16:37:04 dsd-pc kernel: [    9.660748][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.660749][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 647 (reg 5203, index 35) beyond range (651, 1545)
Jun 23 16:37:04 dsd-pc kernel: [    9.660750][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.661786][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 647 (reg 5212, index 36) beyond range (652, 1546)
Jun 23 16:37:04 dsd-pc kernel: [    9.661786][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.662259][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 647 (reg 5215, index 37) beyond range (653, 1546)
Jun 23 16:37:04 dsd-pc kernel: [    9.662260][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.662262][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 647 (reg 5215, index 38) beyond range (653, 1546)
Jun 23 16:37:04 dsd-pc kernel: [    9.662263][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.662266][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 647 (reg 5215, index 39) beyond range (653, 1546)
Jun 23 16:37:04 dsd-pc kernel: [    9.662267][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.662269][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 648 (reg 5215, index 40) beyond range (653, 1546)
Jun 23 16:37:04 dsd-pc kernel: [    9.662269][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.662271][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 648 (reg 5215, index 41) beyond range (653, 1546)
Jun 23 16:37:04 dsd-pc kernel: [    9.662272][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.663308][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 648 (reg 5224, index 42) beyond range (654, 1548)
Jun 23 16:37:04 dsd-pc kernel: [    9.663308][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.664344][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 648 (reg 5232, index 43) beyond range (655, 1549)
Jun 23 16:37:04 dsd-pc kernel: [    9.664345][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.665381][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 648 (reg 5240, index 44) beyond range (656, 1550)
Jun 23 16:37:04 dsd-pc kernel: [    9.665382][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.666419][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 648 (reg 5249, index 45) beyond range (657, 1551)
Jun 23 16:37:04 dsd-pc kernel: [    9.666420][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.666985][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 648 (reg 5253, index 46) beyond range (657, 1551)
Jun 23 16:37:04 dsd-pc kernel: [    9.666986][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.666987][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 648 (reg 5253, index 47) beyond range (657, 1551)
Jun 23 16:37:04 dsd-pc kernel: [    9.666988][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.677237][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 667 (reg 5335, index 2) beyond range (668, 1561)
Jun 23 16:37:04 dsd-pc kernel: [    9.677238][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.677426][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 667 (reg 5337, index 3) beyond range (668, 1562)
Jun 23 16:37:04 dsd-pc kernel: [    9.677427][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.678463][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 667 (reg 5345, index 4) beyond range (669, 1563)
Jun 23 16:37:04 dsd-pc kernel: [    9.678464][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.678935][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 667 (reg 5349, index 5) beyond range (669, 1563)
Jun 23 16:37:04 dsd-pc kernel: [    9.678936][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.678938][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 667 (reg 5349, index 6) beyond range (669, 1563)
Jun 23 16:37:04 dsd-pc kernel: [    9.678939][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.678941][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 667 (reg 5349, index 7) beyond range (669, 1563)
Jun 23 16:37:04 dsd-pc kernel: [    9.678942][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.678943][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 668 (reg 5349, index 8) beyond range (669, 1563)
Jun 23 16:37:04 dsd-pc kernel: [    9.678944][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.679979][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 668 (reg 5357, index 9) beyond range (670, 1564)
Jun 23 16:37:04 dsd-pc kernel: [    9.679979][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.681017][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 668 (reg 5365, index 10) beyond range (671, 1565)
Jun 23 16:37:04 dsd-pc kernel: [    9.681018][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.682057][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 668 (reg 5374, index 11) beyond range (672, 1566)
Jun 23 16:37:04 dsd-pc kernel: [    9.682059][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.682907][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 668 (reg 5381, index 12) beyond range (673, 1567)
Jun 23 16:37:04 dsd-pc kernel: [    9.682908][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.682910][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 668 (reg 5381, index 13) beyond range (673, 1567)
Jun 23 16:37:04 dsd-pc kernel: [    9.682911][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.682912][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 668 (reg 5381, index 14) beyond range (673, 1567)
Jun 23 16:37:04 dsd-pc kernel: [    9.682913][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.682915][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 668 (reg 5381, index 15) beyond range (673, 1567)
Jun 23 16:37:04 dsd-pc kernel: [    9.682915][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.682917][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 669 (reg 5381, index 16) beyond range (673, 1567)
Jun 23 16:37:04 dsd-pc kernel: [    9.682918][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.682919][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 669 (reg 5381, index 17) beyond range (673, 1567)
Jun 23 16:37:04 dsd-pc kernel: [    9.682920][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.682921][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 669 (reg 5381, index 18) beyond range (673, 1567)
Jun 23 16:37:04 dsd-pc kernel: [    9.682922][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.682924][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 669 (reg 5381, index 19) beyond range (673, 1567)
Jun 23 16:37:04 dsd-pc kernel: [    9.682924][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.682926][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 669 (reg 5381, index 20) beyond range (673, 1567)
Jun 23 16:37:04 dsd-pc kernel: [    9.682926][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.683398][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 669 (reg 5384, index 21) beyond range (674, 1568)
Jun 23 16:37:04 dsd-pc kernel: [    9.683399][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.684434][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 669 (reg 5393, index 22) beyond range (675, 1569)
Jun 23 16:37:04 dsd-pc kernel: [    9.684434][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.685472][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 669 (reg 5401, index 23) beyond range (676, 1570)
Jun 23 16:37:04 dsd-pc kernel: [    9.685473][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.686512][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 670 (reg 5409, index 24) beyond range (677, 1571)
Jun 23 16:37:04 dsd-pc kernel: [    9.686513][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.686986][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 670 (reg 5413, index 25) beyond range (677, 1571)
Jun 23 16:37:04 dsd-pc kernel: [    9.686987][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.686989][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 670 (reg 5413, index 26) beyond range (677, 1571)
Jun 23 16:37:04 dsd-pc kernel: [    9.686990][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.687555][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 670 (reg 5418, index 27) beyond range (678, 1572)
Jun 23 16:37:04 dsd-pc kernel: [    9.687555][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.688591][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 670 (reg 5426, index 28) beyond range (679, 1573)
Jun 23 16:37:04 dsd-pc kernel: [    9.688592][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.689628][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 670 (reg 5434, index 29) beyond range (680, 1574)
Jun 23 16:37:04 dsd-pc kernel: [    9.689628][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.690383][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 670 (reg 5440, index 30) beyond range (681, 1575)
Jun 23 16:37:04 dsd-pc kernel: [    9.690385][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.690387][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 670 (reg 5440, index 31) beyond range (681, 1575)
Jun 23 16:37:04 dsd-pc kernel: [    9.690387][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.690389][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 671 (reg 5440, index 32) beyond range (681, 1575)
Jun 23 16:37:04 dsd-pc kernel: [    9.690390][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.690391][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 671 (reg 5440, index 33) beyond range (681, 1575)
Jun 23 16:37:04 dsd-pc kernel: [    9.690392][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.690393][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 671 (reg 5440, index 34) beyond range (681, 1575)
Jun 23 16:37:04 dsd-pc kernel: [    9.690394][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.690396][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 671 (reg 5440, index 35) beyond range (681, 1575)
Jun 23 16:37:04 dsd-pc kernel: [    9.690396][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.690398][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 671 (reg 5440, index 36) beyond range (681, 1575)
Jun 23 16:37:04 dsd-pc kernel: [    9.690398][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.690400][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 671 (reg 5440, index 37) beyond range (681, 1575)
Jun 23 16:37:04 dsd-pc kernel: [    9.690401][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.690402][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 671 (reg 5440, index 38) beyond range (681, 1575)
Jun 23 16:37:04 dsd-pc kernel: [    9.690403][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.690404][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 671 (reg 5441, index 39) beyond range (681, 1575)
Jun 23 16:37:04 dsd-pc kernel: [    9.690405][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.690407][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 672 (reg 5441, index 40) beyond range (681, 1575)
Jun 23 16:37:04 dsd-pc kernel: [    9.690407][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.690409][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 672 (reg 5441, index 41) beyond range (681, 1575)
Jun 23 16:37:04 dsd-pc kernel: [    9.690410][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.690411][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 672 (reg 5441, index 42) beyond range (681, 1575)
Jun 23 16:37:04 dsd-pc kernel: [    9.690412][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.690413][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 672 (reg 5441, index 43) beyond range (681, 1575)
Jun 23 16:37:04 dsd-pc kernel: [    9.690414][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.690416][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 672 (reg 5441, index 44) beyond range (681, 1575)
Jun 23 16:37:04 dsd-pc kernel: [    9.690416][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.690418][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 672 (reg 5441, index 45) beyond range (681, 1575)
Jun 23 16:37:04 dsd-pc kernel: [    9.690419][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.690420][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 672 (reg 5441, index 46) beyond range (681, 1575)
Jun 23 16:37:04 dsd-pc kernel: [    9.690421][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.690422][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 672 (reg 5441, index 47) beyond range (681, 1575)
Jun 23 16:37:04 dsd-pc kernel: [    9.690423][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.748618][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 738 (reg 5906, index 6) beyond range (739, 1633)
Jun 23 16:37:04 dsd-pc kernel: [    9.748619][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.749652][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 738 (reg 5914, index 7) beyond range (740, 1634)
Jun 23 16:37:04 dsd-pc kernel: [    9.749653][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.750690][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 739 (reg 5923, index 8) beyond range (741, 1635)
Jun 23 16:37:04 dsd-pc kernel: [    9.750691][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.750973][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 739 (reg 5925, index 9) beyond range (741, 1635)
Jun 23 16:37:04 dsd-pc kernel: [    9.750974][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.750976][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 739 (reg 5925, index 10) beyond range (741, 1635)
Jun 23 16:37:04 dsd-pc kernel: [    9.750976][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.751540][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 739 (reg 5930, index 11) beyond range (742, 1636)
Jun 23 16:37:04 dsd-pc kernel: [    9.751541][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.752577][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 739 (reg 5938, index 12) beyond range (743, 1637)
Jun 23 16:37:04 dsd-pc kernel: [    9.752578][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.753614][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 739 (reg 5946, index 13) beyond range (744, 1638)
Jun 23 16:37:04 dsd-pc kernel: [    9.753615][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.753804][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 739 (reg 5948, index 14) beyond range (744, 1638)
Jun 23 16:37:04 dsd-pc kernel: [    9.753805][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.753806][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 739 (reg 5948, index 15) beyond range (744, 1638)
Jun 23 16:37:04 dsd-pc kernel: [    9.753807][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.753808][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 740 (reg 5948, index 16) beyond range (744, 1638)
Jun 23 16:37:04 dsd-pc kernel: [    9.753809][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.753811][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 740 (reg 5948, index 17) beyond range (744, 1638)
Jun 23 16:37:04 dsd-pc kernel: [    9.753811][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.754847][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 740 (reg 5956, index 18) beyond range (745, 1639)
Jun 23 16:37:04 dsd-pc kernel: [    9.754848][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.754943][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 740 (reg 5957, index 19) beyond range (745, 1639)
Jun 23 16:37:04 dsd-pc kernel: [    9.754943][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.755510][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 740 (reg 5961, index 20) beyond range (746, 1640)
Jun 23 16:37:04 dsd-pc kernel: [    9.755510][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.756547][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 740 (reg 5970, index 21) beyond range (747, 1641)
Jun 23 16:37:04 dsd-pc kernel: [    9.756547][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.757583][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 740 (reg 5978, index 22) beyond range (748, 1642)
Jun 23 16:37:04 dsd-pc kernel: [    9.757584][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.758622][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 740 (reg 5986, index 23) beyond range (749, 1643)
Jun 23 16:37:04 dsd-pc kernel: [    9.758623][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.758908][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 741 (reg 5989, index 24) beyond range (749, 1643)
Jun 23 16:37:04 dsd-pc kernel: [    9.758909][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.758911][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 741 (reg 5989, index 25) beyond range (749, 1643)
Jun 23 16:37:04 dsd-pc kernel: [    9.758912][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.759476][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 741 (reg 5993, index 26) beyond range (750, 1644)
Jun 23 16:37:04 dsd-pc kernel: [    9.759476][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.760513][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 741 (reg 6001, index 27) beyond range (751, 1645)
Jun 23 16:37:04 dsd-pc kernel: [    9.760514][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.761549][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 741 (reg 6010, index 28) beyond range (752, 1646)
Jun 23 16:37:04 dsd-pc kernel: [    9.761550][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.762587][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 741 (reg 6018, index 29) beyond range (753, 1647)
Jun 23 16:37:04 dsd-pc kernel: [    9.762588][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.763058][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 741 (reg 6022, index 30) beyond range (753, 1647)
Jun 23 16:37:04 dsd-pc kernel: [    9.763059][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.763061][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 741 (reg 6022, index 31) beyond range (753, 1647)
Jun 23 16:37:04 dsd-pc kernel: [    9.763062][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.763627][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 742 (reg 6026, index 32) beyond range (754, 1648)
Jun 23 16:37:04 dsd-pc kernel: [    9.763627][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.764663][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 742 (reg 6035, index 33) beyond range (755, 1649)
Jun 23 16:37:04 dsd-pc kernel: [    9.764664][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.765700][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 742 (reg 6043, index 34) beyond range (756, 1650)
Jun 23 16:37:04 dsd-pc kernel: [    9.765700][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.766738][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 742 (reg 6051, index 35) beyond range (757, 1651)
Jun 23 16:37:04 dsd-pc kernel: [    9.766739][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.767021][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 742 (reg 6053, index 36) beyond range (757, 1651)
Jun 23 16:37:04 dsd-pc kernel: [    9.767022][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.767024][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 742 (reg 6053, index 37) beyond range (757, 1651)
Jun 23 16:37:04 dsd-pc kernel: [    9.767025][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.767027][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 742 (reg 6053, index 38) beyond range (757, 1651)
Jun 23 16:37:04 dsd-pc kernel: [    9.767027][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.768062][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 742 (reg 6062, index 39) beyond range (758, 1652)
Jun 23 16:37:04 dsd-pc kernel: [    9.768062][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.769103][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 743 (reg 6070, index 40) beyond range (759, 1653)
Jun 23 16:37:04 dsd-pc kernel: [    9.769103][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.770145][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 743 (reg 6078, index 41) beyond range (760, 1654)
Jun 23 16:37:04 dsd-pc kernel: [    9.770146][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.770997][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 743 (reg 6085, index 42) beyond range (761, 1655)
Jun 23 16:37:04 dsd-pc kernel: [    9.770998][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.771000][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 743 (reg 6085, index 43) beyond range (761, 1655)
Jun 23 16:37:04 dsd-pc kernel: [    9.771000][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.771566][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 743 (reg 6090, index 44) beyond range (762, 1656)
Jun 23 16:37:04 dsd-pc kernel: [    9.771567][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.772602][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 743 (reg 6098, index 45) beyond range (763, 1657)
Jun 23 16:37:04 dsd-pc kernel: [    9.772603][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.773641][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 743 (reg 6106, index 46) beyond range (764, 1658)
Jun 23 16:37:04 dsd-pc kernel: [    9.773642][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.774681][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 743 (reg 6115, index 47) beyond range (765, 1659)
Jun 23 16:37:04 dsd-pc kernel: [    9.774682][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.778483][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 768 (reg 6145, index 21) beyond range (769, 1663)
Jun 23 16:37:04 dsd-pc kernel: [    9.778485][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.779051][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 768 (reg 6150, index 22) beyond range (769, 1663)
Jun 23 16:37:04 dsd-pc kernel: [    9.779051][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.779429][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 768 (reg 6153, index 23) beyond range (770, 1664)
Jun 23 16:37:04 dsd-pc kernel: [    9.779430][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.779995][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 769 (reg 6157, index 24) beyond range (770, 1664)
Jun 23 16:37:04 dsd-pc kernel: [    9.779996][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.780186][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 769 (reg 6159, index 25) beyond range (771, 1664)
Jun 23 16:37:04 dsd-pc kernel: [    9.780187][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.781222][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 769 (reg 6167, index 26) beyond range (772, 1665)
Jun 23 16:37:04 dsd-pc kernel: [    9.781223][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.782259][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 769 (reg 6175, index 27) beyond range (773, 1666)
Jun 23 16:37:04 dsd-pc kernel: [    9.782260][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.783014][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 769 (reg 6181, index 28) beyond range (773, 1667)
Jun 23 16:37:04 dsd-pc kernel: [    9.783016][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.783018][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 769 (reg 6181, index 29) beyond range (773, 1667)
Jun 23 16:37:04 dsd-pc kernel: [    9.783020][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.783022][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 769 (reg 6181, index 30) beyond range (773, 1667)
Jun 23 16:37:04 dsd-pc kernel: [    9.783023][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.784059][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 769 (reg 6190, index 31) beyond range (774, 1668)
Jun 23 16:37:04 dsd-pc kernel: [    9.784060][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.785095][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 770 (reg 6198, index 32) beyond range (775, 1669)
Jun 23 16:37:04 dsd-pc kernel: [    9.785096][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.786132][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 770 (reg 6206, index 33) beyond range (776, 1670)
Jun 23 16:37:04 dsd-pc kernel: [    9.786133][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.786983][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 770 (reg 6213, index 34) beyond range (777, 1671)
Jun 23 16:37:04 dsd-pc kernel: [    9.786983][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.786986][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 770 (reg 6213, index 35) beyond range (777, 1671)
Jun 23 16:37:04 dsd-pc kernel: [    9.786987][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.787550][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 770 (reg 6218, index 36) beyond range (778, 1672)
Jun 23 16:37:04 dsd-pc kernel: [    9.787552][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.788587][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 770 (reg 6226, index 37) beyond range (779, 1673)
Jun 23 16:37:04 dsd-pc kernel: [    9.788588][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.789624][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 770 (reg 6234, index 38) beyond range (780, 1674)
Jun 23 16:37:04 dsd-pc kernel: [    9.789625][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.790660][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 770 (reg 6243, index 39) beyond range (781, 1675)
Jun 23 16:37:04 dsd-pc kernel: [    9.790661][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.790945][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 771 (reg 6245, index 40) beyond range (781, 1675)
Jun 23 16:37:04 dsd-pc kernel: [    9.790946][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.790949][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 771 (reg 6245, index 41) beyond range (781, 1675)
Jun 23 16:37:04 dsd-pc kernel: [    9.790950][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.790953][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 771 (reg 6245, index 42) beyond range (781, 1675)
Jun 23 16:37:04 dsd-pc kernel: [    9.790954][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.791988][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 771 (reg 6253, index 43) beyond range (782, 1676)
Jun 23 16:37:04 dsd-pc kernel: [    9.791989][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.793027][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 771 (reg 6261, index 44) beyond range (783, 1677)
Jun 23 16:37:04 dsd-pc kernel: [    9.793028][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.794066][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 771 (reg 6270, index 45) beyond range (784, 1678)
Jun 23 16:37:04 dsd-pc kernel: [    9.794067][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.794916][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 771 (reg 6277, index 46) beyond range (785, 1679)
Jun 23 16:37:04 dsd-pc kernel: [    9.794917][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.795483][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 771 (reg 6281, index 47) beyond range (786, 1680)
Jun 23 16:37:04 dsd-pc kernel: [    9.795484][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.802976][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 792 (reg 6341, index 29) beyond range (793, 1687)
Jun 23 16:37:04 dsd-pc kernel: [    9.802979][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.803070][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 792 (reg 6342, index 30) beyond range (793, 1687)
Jun 23 16:37:04 dsd-pc kernel: [    9.803071][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.803638][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 792 (reg 6346, index 31) beyond range (794, 1688)
Jun 23 16:37:04 dsd-pc kernel: [    9.803643][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.804674][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 793 (reg 6355, index 32) beyond range (795, 1689)
Jun 23 16:37:04 dsd-pc kernel: [    9.804679][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.805713][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 793 (reg 6363, index 33) beyond range (796, 1690)
Jun 23 16:37:04 dsd-pc kernel: [    9.805716][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.806746][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 793 (reg 6371, index 34) beyond range (797, 1691)
Jun 23 16:37:04 dsd-pc kernel: [    9.806747][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.807033][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 793 (reg 6374, index 35) beyond range (797, 1691)
Jun 23 16:37:04 dsd-pc kernel: [    9.807034][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.807600][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 793 (reg 6378, index 36) beyond range (798, 1692)
Jun 23 16:37:04 dsd-pc kernel: [    9.807603][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.808636][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 793 (reg 6386, index 37) beyond range (799, 1693)
Jun 23 16:37:04 dsd-pc kernel: [    9.808637][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.809673][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 793 (reg 6395, index 38) beyond range (800, 1694)
Jun 23 16:37:04 dsd-pc kernel: [    9.809674][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.810709][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 793 (reg 6403, index 39) beyond range (801, 1695)
Jun 23 16:37:04 dsd-pc kernel: [    9.810710][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.810996][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 794 (reg 6405, index 40) beyond range (801, 1695)
Jun 23 16:37:04 dsd-pc kernel: [    9.810998][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.811000][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 794 (reg 6405, index 41) beyond range (801, 1695)
Jun 23 16:37:04 dsd-pc kernel: [    9.811001][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.812036][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 794 (reg 6414, index 42) beyond range (802, 1696)
Jun 23 16:37:04 dsd-pc kernel: [    9.812038][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.813075][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 794 (reg 6422, index 43) beyond range (803, 1697)
Jun 23 16:37:04 dsd-pc kernel: [    9.813076][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.814110][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 794 (reg 6430, index 44) beyond range (804, 1698)
Jun 23 16:37:04 dsd-pc kernel: [    9.814112][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.814959][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 794 (reg 6437, index 45) beyond range (805, 1699)
Jun 23 16:37:04 dsd-pc kernel: [    9.814960][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:04 dsd-pc kernel: [    9.814962][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 794 (reg 6437, index 46) beyond range (805, 1699)
Jun 23 16:37:04 dsd-pc kernel: [    9.814963][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.823460][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 813 (reg 6505, index 5) beyond range (814, 1708)
Jun 23 16:37:05 dsd-pc kernel: [    9.823461][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.824495][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 813 (reg 6513, index 6) beyond range (815, 1709)
Jun 23 16:37:05 dsd-pc kernel: [    9.824496][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.825532][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 813 (reg 6522, index 7) beyond range (816, 1710)
Jun 23 16:37:05 dsd-pc kernel: [    9.825533][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.826572][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 814 (reg 6530, index 8) beyond range (817, 1711)
Jun 23 16:37:05 dsd-pc kernel: [    9.826573][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.827045][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 814 (reg 6534, index 9) beyond range (817, 1711)
Jun 23 16:37:05 dsd-pc kernel: [    9.827046][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.827048][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 814 (reg 6534, index 10) beyond range (817, 1711)
Jun 23 16:37:05 dsd-pc kernel: [    9.827048][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.827613][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 814 (reg 6538, index 11) beyond range (818, 1712)
Jun 23 16:37:05 dsd-pc kernel: [    9.827614][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.828649][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 814 (reg 6546, index 12) beyond range (819, 1713)
Jun 23 16:37:05 dsd-pc kernel: [    9.828650][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.829686][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 814 (reg 6555, index 13) beyond range (820, 1714)
Jun 23 16:37:05 dsd-pc kernel: [    9.829687][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.830065][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 814 (reg 6558, index 14) beyond range (820, 1714)
Jun 23 16:37:05 dsd-pc kernel: [    9.830066][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.830068][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 814 (reg 6558, index 15) beyond range (820, 1714)
Jun 23 16:37:05 dsd-pc kernel: [    9.830069][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.830071][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 815 (reg 6558, index 16) beyond range (820, 1714)
Jun 23 16:37:05 dsd-pc kernel: [    9.830072][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.830073][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 815 (reg 6558, index 17) beyond range (820, 1714)
Jun 23 16:37:05 dsd-pc kernel: [    9.830074][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.830076][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 815 (reg 6558, index 18) beyond range (820, 1714)
Jun 23 16:37:05 dsd-pc kernel: [    9.830076][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.830078][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 815 (reg 6558, index 19) beyond range (820, 1714)
Jun 23 16:37:05 dsd-pc kernel: [    9.830078][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.830362][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 815 (reg 6560, index 20) beyond range (821, 1715)
Jun 23 16:37:05 dsd-pc kernel: [    9.830363][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.830929][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 815 (reg 6565, index 21) beyond range (821, 1715)
Jun 23 16:37:05 dsd-pc kernel: [    9.830929][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.830931][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 815 (reg 6565, index 22) beyond range (821, 1715)
Jun 23 16:37:05 dsd-pc kernel: [    9.830932][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.830933][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 815 (reg 6565, index 23) beyond range (821, 1715)
Jun 23 16:37:05 dsd-pc kernel: [    9.830934][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.830935][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 816 (reg 6565, index 24) beyond range (821, 1715)
Jun 23 16:37:05 dsd-pc kernel: [    9.830936][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.831971][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 816 (reg 6573, index 25) beyond range (822, 1716)
Jun 23 16:37:05 dsd-pc kernel: [    9.831972][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.833008][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 816 (reg 6581, index 26) beyond range (823, 1717)
Jun 23 16:37:05 dsd-pc kernel: [    9.833008][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.834045][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 816 (reg 6590, index 27) beyond range (824, 1718)
Jun 23 16:37:05 dsd-pc kernel: [    9.834046][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.834894][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 816 (reg 6596, index 28) beyond range (825, 1719)
Jun 23 16:37:05 dsd-pc kernel: [    9.834895][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.834898][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 816 (reg 6596, index 29) beyond range (825, 1719)
Jun 23 16:37:05 dsd-pc kernel: [    9.834899][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.834902][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 816 (reg 6596, index 30) beyond range (825, 1719)
Jun 23 16:37:05 dsd-pc kernel: [    9.834903][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.834905][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 816 (reg 6597, index 31) beyond range (825, 1719)
Jun 23 16:37:05 dsd-pc kernel: [    9.834907][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.834909][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 817 (reg 6597, index 32) beyond range (825, 1719)
Jun 23 16:37:05 dsd-pc kernel: [    9.834910][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.834912][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 817 (reg 6597, index 33) beyond range (825, 1719)
Jun 23 16:37:05 dsd-pc kernel: [    9.834913][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.834915][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 817 (reg 6597, index 34) beyond range (825, 1719)
Jun 23 16:37:05 dsd-pc kernel: [    9.834916][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.834918][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 817 (reg 6597, index 35) beyond range (825, 1719)
Jun 23 16:37:05 dsd-pc kernel: [    9.834919][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.835954][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 817 (reg 6605, index 36) beyond range (826, 1720)
Jun 23 16:37:05 dsd-pc kernel: [    9.835954][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.836991][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 817 (reg 6613, index 37) beyond range (827, 1721)
Jun 23 16:37:05 dsd-pc kernel: [    9.836992][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.838027][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 817 (reg 6621, index 38) beyond range (828, 1722)
Jun 23 16:37:05 dsd-pc kernel: [    9.838028][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.839064][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 817 (reg 6630, index 39) beyond range (829, 1723)
Jun 23 16:37:05 dsd-pc kernel: [    9.839064][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.839066][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 818 (reg 6630, index 40) beyond range (829, 1723)
Jun 23 16:37:05 dsd-pc kernel: [    9.839067][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.839631][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 818 (reg 6634, index 41) beyond range (830, 1724)
Jun 23 16:37:05 dsd-pc kernel: [    9.839632][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.840668][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 818 (reg 6643, index 42) beyond range (831, 1725)
Jun 23 16:37:05 dsd-pc kernel: [    9.840669][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.841704][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 818 (reg 6651, index 43) beyond range (832, 1726)
Jun 23 16:37:05 dsd-pc kernel: [    9.841705][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.842084][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 818 (reg 6654, index 44) beyond range (832, 1726)
Jun 23 16:37:05 dsd-pc kernel: [    9.842085][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.842087][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 818 (reg 6654, index 45) beyond range (832, 1726)
Jun 23 16:37:05 dsd-pc kernel: [    9.842088][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.842089][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 818 (reg 6654, index 46) beyond range (832, 1726)
Jun 23 16:37:05 dsd-pc kernel: [    9.842090][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.842091][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 818 (reg 6654, index 47) beyond range (832, 1726)
Jun 23 16:37:05 dsd-pc kernel: [    9.842092][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.918113][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 907 (reg 7262, index 13) beyond range (908, 1802)
Jun 23 16:37:05 dsd-pc kernel: [    9.918115][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.918960][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 907 (reg 7269, index 14) beyond range (909, 1803)
Jun 23 16:37:05 dsd-pc kernel: [    9.918961][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.918963][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 907 (reg 7269, index 15) beyond range (909, 1803)
Jun 23 16:37:05 dsd-pc kernel: [    9.918964][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.919528][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 908 (reg 7273, index 16) beyond range (910, 1804)
Jun 23 16:37:05 dsd-pc kernel: [    9.919529][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.920564][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 908 (reg 7282, index 17) beyond range (911, 1805)
Jun 23 16:37:05 dsd-pc kernel: [    9.920565][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.921603][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 908 (reg 7290, index 18) beyond range (912, 1806)
Jun 23 16:37:05 dsd-pc kernel: [    9.921604][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.922641][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 908 (reg 7298, index 19) beyond range (913, 1807)
Jun 23 16:37:05 dsd-pc kernel: [    9.922642][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.922924][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 908 (reg 7301, index 20) beyond range (913, 1807)
Jun 23 16:37:05 dsd-pc kernel: [    9.922925][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.923490][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 908 (reg 7305, index 21) beyond range (914, 1808)
Jun 23 16:37:05 dsd-pc kernel: [    9.923491][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.923493][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 908 (reg 7305, index 22) beyond range (914, 1808)
Jun 23 16:37:05 dsd-pc kernel: [    9.923493][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.923495][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 908 (reg 7305, index 23) beyond range (914, 1808)
Jun 23 16:37:05 dsd-pc kernel: [    9.923496][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.923497][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 909 (reg 7305, index 24) beyond range (914, 1808)
Jun 23 16:37:05 dsd-pc kernel: [    9.923498][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.923500][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 909 (reg 7305, index 25) beyond range (914, 1808)
Jun 23 16:37:05 dsd-pc kernel: [    9.923500][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.923502][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 909 (reg 7305, index 26) beyond range (914, 1808)
Jun 23 16:37:05 dsd-pc kernel: [    9.923502][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.924538][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 909 (reg 7314, index 27) beyond range (915, 1809)
Jun 23 16:37:05 dsd-pc kernel: [    9.924539][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.925011][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 909 (reg 7317, index 28) beyond range (915, 1809)
Jun 23 16:37:05 dsd-pc kernel: [    9.925011][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.925013][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 909 (reg 7317, index 29) beyond range (915, 1809)
Jun 23 16:37:05 dsd-pc kernel: [    9.925013][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.925015][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 909 (reg 7317, index 30) beyond range (915, 1809)
Jun 23 16:37:05 dsd-pc kernel: [    9.925016][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.925017][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 909 (reg 7317, index 31) beyond range (915, 1809)
Jun 23 16:37:05 dsd-pc kernel: [    9.925018][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.925019][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 910 (reg 7317, index 32) beyond range (915, 1809)
Jun 23 16:37:05 dsd-pc kernel: [    9.925020][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.925022][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 910 (reg 7317, index 33) beyond range (915, 1809)
Jun 23 16:37:05 dsd-pc kernel: [    9.925022][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.925024][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 910 (reg 7317, index 34) beyond range (915, 1809)
Jun 23 16:37:05 dsd-pc kernel: [    9.925025][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.926062][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 910 (reg 7326, index 35) beyond range (916, 1810)
Jun 23 16:37:05 dsd-pc kernel: [    9.926063][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.926912][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 910 (reg 7333, index 36) beyond range (917, 1811)
Jun 23 16:37:05 dsd-pc kernel: [    9.926913][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.927479][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 910 (reg 7337, index 37) beyond range (918, 1812)
Jun 23 16:37:05 dsd-pc kernel: [    9.927479][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.928515][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 910 (reg 7345, index 38) beyond range (919, 1813)
Jun 23 16:37:05 dsd-pc kernel: [    9.928516][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.929552][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 910 (reg 7354, index 39) beyond range (920, 1814)
Jun 23 16:37:05 dsd-pc kernel: [    9.929553][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.930589][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 911 (reg 7362, index 40) beyond range (921, 1815)
Jun 23 16:37:05 dsd-pc kernel: [    9.930590][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.931061][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 911 (reg 7366, index 41) beyond range (921, 1815)
Jun 23 16:37:05 dsd-pc kernel: [    9.931061][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.931628][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 911 (reg 7370, index 42) beyond range (922, 1816)
Jun 23 16:37:05 dsd-pc kernel: [    9.931628][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.932664][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 911 (reg 7379, index 43) beyond range (923, 1817)
Jun 23 16:37:05 dsd-pc kernel: [    9.932665][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.933703][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 911 (reg 7387, index 44) beyond range (924, 1818)
Jun 23 16:37:05 dsd-pc kernel: [    9.933704][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.934743][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 911 (reg 7395, index 45) beyond range (925, 1819)
Jun 23 16:37:05 dsd-pc kernel: [    9.934744][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.935027][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 911 (reg 7397, index 46) beyond range (925, 1819)
Jun 23 16:37:05 dsd-pc kernel: [    9.935028][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.948567][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 938 (reg 7506, index 17) beyond range (939, 1833)
Jun 23 16:37:05 dsd-pc kernel: [    9.948568][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.949603][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 938 (reg 7514, index 18) beyond range (940, 1834)
Jun 23 16:37:05 dsd-pc kernel: [    9.949603][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.950639][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 938 (reg 7522, index 19) beyond range (941, 1835)
Jun 23 16:37:05 dsd-pc kernel: [    9.950640][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.950923][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 938 (reg 7525, index 20) beyond range (941, 1835)
Jun 23 16:37:05 dsd-pc kernel: [    9.950924][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.950925][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 938 (reg 7525, index 21) beyond range (941, 1835)
Jun 23 16:37:05 dsd-pc kernel: [    9.950926][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.951491][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 938 (reg 7529, index 22) beyond range (942, 1836)
Jun 23 16:37:05 dsd-pc kernel: [    9.951492][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.952527][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 938 (reg 7537, index 23) beyond range (943, 1837)
Jun 23 16:37:05 dsd-pc kernel: [    9.952528][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.953564][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 939 (reg 7546, index 24) beyond range (944, 1838)
Jun 23 16:37:05 dsd-pc kernel: [    9.953565][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.954601][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 939 (reg 7554, index 25) beyond range (945, 1839)
Jun 23 16:37:05 dsd-pc kernel: [    9.954602][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.954885][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 939 (reg 7556, index 26) beyond range (945, 1839)
Jun 23 16:37:05 dsd-pc kernel: [    9.954887][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.955452][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 939 (reg 7561, index 27) beyond range (946, 1840)
Jun 23 16:37:05 dsd-pc kernel: [    9.955453][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.956488][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 939 (reg 7569, index 28) beyond range (947, 1841)
Jun 23 16:37:05 dsd-pc kernel: [    9.956489][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.957525][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 939 (reg 7577, index 29) beyond range (948, 1842)
Jun 23 16:37:05 dsd-pc kernel: [    9.957525][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.958564][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 939 (reg 7586, index 30) beyond range (949, 1843)
Jun 23 16:37:05 dsd-pc kernel: [    9.958565][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.959039][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 939 (reg 7590, index 31) beyond range (949, 1843)
Jun 23 16:37:05 dsd-pc kernel: [    9.959040][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.959041][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 940 (reg 7590, index 32) beyond range (949, 1843)
Jun 23 16:37:05 dsd-pc kernel: [    9.959042][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.959044][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 940 (reg 7590, index 33) beyond range (949, 1843)
Jun 23 16:37:05 dsd-pc kernel: [    9.959044][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.959046][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 940 (reg 7590, index 34) beyond range (949, 1843)
Jun 23 16:37:05 dsd-pc kernel: [    9.959046][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.959048][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 940 (reg 7590, index 35) beyond range (949, 1843)
Jun 23 16:37:05 dsd-pc kernel: [    9.959049][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.959050][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 940 (reg 7590, index 36) beyond range (949, 1843)
Jun 23 16:37:05 dsd-pc kernel: [    9.959051][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.959052][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 940 (reg 7590, index 37) beyond range (949, 1843)
Jun 23 16:37:05 dsd-pc kernel: [    9.959053][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.959055][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 940 (reg 7590, index 38) beyond range (949, 1843)
Jun 23 16:37:05 dsd-pc kernel: [    9.959055][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.959057][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 940 (reg 7590, index 39) beyond range (949, 1843)
Jun 23 16:37:05 dsd-pc kernel: [    9.959058][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.959059][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 941 (reg 7590, index 40) beyond range (949, 1843)
Jun 23 16:37:05 dsd-pc kernel: [    9.959060][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.959061][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 941 (reg 7590, index 41) beyond range (949, 1843)
Jun 23 16:37:05 dsd-pc kernel: [    9.959062][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.959064][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 941 (reg 7590, index 42) beyond range (949, 1843)
Jun 23 16:37:05 dsd-pc kernel: [    9.959064][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.959066][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 941 (reg 7590, index 43) beyond range (949, 1843)
Jun 23 16:37:05 dsd-pc kernel: [    9.959066][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.959068][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 941 (reg 7590, index 44) beyond range (949, 1843)
Jun 23 16:37:05 dsd-pc kernel: [    9.959069][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.959070][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 941 (reg 7590, index 45) beyond range (949, 1843)
Jun 23 16:37:05 dsd-pc kernel: [    9.959071][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.959072][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 941 (reg 7590, index 46) beyond range (949, 1843)
Jun 23 16:37:05 dsd-pc kernel: [    9.959073][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [    9.959075][10] [    C8] xhci_hcd 0000:03:00.3: Frame ID 941 (reg 7590, index 47) beyond range (949, 1843)
Jun 23 16:37:05 dsd-pc kernel: [    9.959075][10] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:05 dsd-pc kernel: [   10.034821][10] [  T742] EDAC amd64: F18h detected (node 0).
Jun 23 16:37:05 dsd-pc kernel: [   10.034885][10] [  T742] EDAC MC: UMC0 chip selects:
Jun 23 16:37:05 dsd-pc kernel: [   10.034886][10] [  T742] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:05 dsd-pc kernel: [   10.034888][10] [  T742] EDAC amd64: MC: 2:  4096MB 3:     0MB
Jun 23 16:37:05 dsd-pc kernel: [   10.034891][10] [  T742] EDAC MC: UMC1 chip selects:
Jun 23 16:37:05 dsd-pc kernel: [   10.034892][10] [  T742] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:05 dsd-pc kernel: [   10.034893][10] [  T742] EDAC amd64: MC: 2:     0MB 3:     0MB
Jun 23 16:37:05 dsd-pc kernel: [   10.034894][10] [  T742] EDAC amd64: using x4 syndromes.
Jun 23 16:37:05 dsd-pc kernel: [   10.034899][10] [  T742] EDAC amd64: Node 0: DRAM ECC disabled.
Jun 23 16:37:05 dsd-pc kernel: [   10.034900][10] [  T742] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Jun 23 16:37:05 dsd-pc kernel: [   10.034900][10] [  T742]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
Jun 23 16:37:05 dsd-pc kernel: [   10.034900][10] [  T742]  (Note that use of the override may cause unknown side effects.)
Jun 23 16:37:05 dsd-pc systemd[2496]: kylin-software-center-plugin-preprocessing.service: Succeeded.
Jun 23 16:37:05 dsd-pc : DEBUG [ukui-settings-daemon] save-param->save-screen.cpp initXparam line:738   initXparam success
Jun 23 16:37:05 dsd-pc systemd[2496]: Started D-Bus User Message Bus.
Jun 23 16:37:05 dsd-pc dbus-daemon[2581]: dbus[2581]: Unknown username "kylin" in message bus configuration file
Jun 23 16:37:05 dsd-pc dbus-daemon[2581]: dbus[2581]: Unknown username "kylin" in message bus configuration file
Jun 23 16:37:05 dsd-pc : DEBUG [ukui-settings-daemon] save-param->save-screen.cpp getKscreenConfigFullPathInLightDM line:1087  use:/usr/share/ukui-settings-daemon/config/screen/realtime/934f13c6bf66053fc4d0e9b584271a8c
Jun 23 16:37:05 dsd-pc : DEBUG [ukui-settings-daemon] save-param->save-screen.cpp readKscreenConfigAndSetItWithX line:475   ready open dsd's screen config>/usr/share/ukui-settings-daemon/config/screen/realtime/934f13c6bf66053fc4d0e9b584271a8c
Jun 23 16:37:05 dsd-pc : DEBUG [ukui-settings-daemon] save-param->save-screen.cpp getModeId line:1170  find HDMI-1 mode:3840x2160 id:69 refresh:30.000000
Jun 23 16:37:05 dsd-pc dbus-daemon[911]: [system] Activating service name='com.kylin.ukui.SettingsDaemon' requested by ':1.75' (uid=1000 pid=2574 comm="save-param -u dsd " label="") (using servicehelper)
Jun 23 16:37:05 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:05 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'com.kylin.ukui.SettingsDaemon'
Jun 23 16:37:05 dsd-pc : DEBUG [ukui-settings-daemon] save-param->lightdm-config-helper.cpp setConfigToXorg line:60    icursorSize:24 cursorTheme:dark-sense,scaleFactor:1.500000
Jun 23 16:37:05 dsd-pc : DEBUG [ukui-settings-daemon] save-param->main.cpp QAPP line:128   goingd down
Jun 23 16:37:05 dsd-pc : DEBUG [ukui-settings-daemon] save-param->../../common/touch-calibrate.cpp getScreenList line:207   HDMI-1  width : 621 height : 341
Jun 23 16:37:05 dsd-pc : DEBUG [ukui-settings-daemon] save-param->main.cpp operator() line:95    get calibrateFinished signal.....
Jun 23 16:37:05 dsd-pc screensaver-focus-helper: [ukui-screensaver-focus-helper] init BlackWindow!!
Jun 23 16:37:05 dsd-pc dbus-daemon[911]: [system] Activating service name='org.ukui.UniauthBackend' requested by ':1.77' (uid=1000 pid=2604 comm="/usr/lib/ukui-screensaver/screensaver-focus-helper" label="") (using servicehelper)
Jun 23 16:37:05 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:05 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'org.ukui.UniauthBackend'
Jun 23 16:37:05 dsd-pc uniauth-backend: [Uniauth-Backend] dsd setSaverState: 0!!
Jun 23 16:37:05 dsd-pc ukui-screensaver-dialog: [ukui-screensaver-dialog] startup!!
Jun 23 16:37:05 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:05 dsd-pc ukui-screensaver-dialog: [ukui-screensaver-dialog] window show!!
Jun 23 16:37:05 dsd-pc ukui-screensaver-dialog: [ukui-screensaver-dialog] window show done!!
Jun 23 16:37:05 dsd-pc kernel: [   10.459522][10] [  T726] EDAC amd64: F18h detected (node 0).
Jun 23 16:37:05 dsd-pc kernel: [   10.459601][10] [  T726] EDAC MC: UMC0 chip selects:
Jun 23 16:37:05 dsd-pc kernel: [   10.459602][10] [  T726] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:05 dsd-pc kernel: [   10.459603][10] [  T726] EDAC amd64: MC: 2:  4096MB 3:     0MB
Jun 23 16:37:05 dsd-pc kernel: [   10.459612][10] [  T726] EDAC MC: UMC1 chip selects:
Jun 23 16:37:05 dsd-pc kernel: [   10.459612][10] [  T726] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:05 dsd-pc kernel: [   10.459613][10] [  T726] EDAC amd64: MC: 2:     0MB 3:     0MB
Jun 23 16:37:05 dsd-pc kernel: [   10.459613][10] [  T726] EDAC amd64: using x4 syndromes.
Jun 23 16:37:05 dsd-pc kernel: [   10.459619][10] [  T726] EDAC amd64: Node 0: DRAM ECC disabled.
Jun 23 16:37:05 dsd-pc kernel: [   10.459621][10] [  T726] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Jun 23 16:37:05 dsd-pc kernel: [   10.459621][10] [  T726]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
Jun 23 16:37:05 dsd-pc kernel: [   10.459621][10] [  T726]  (Note that use of the override may cause unknown side effects.)
Jun 23 16:37:05 dsd-pc ukui-screensaver-dialog: [ukui-screensaver-dialog] init net icon begin!!
Jun 23 16:37:05 dsd-pc ukui-screensaver-dialog: [ukui-screensaver-dialog] init net icon done!!
Jun 23 16:37:05 dsd-pc ukui-screensaver-dialog: [ukui-screensaver-dialog] auth start!!
Jun 23 16:37:05 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:05 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:05 dsd-pc ukui-screensaver-dialog: [ukui-screensaver-dialog] application event loop begin!!
Jun 23 16:37:05 dsd-pc ukui-screensaver-dialog: [ukui-screensaver-dialog] check bio auth begin!!
Jun 23 16:37:05 dsd-pc ukui-screensaver-dialog: [ukui-screensaver-dialog] check bio auth done!!
Jun 23 16:37:05 dsd-pc ukui-screensaver-dialog: [ukui-screensaver-dialog] window active event!!
Jun 23 16:37:05 dsd-pc ukui-screensaver-dialog: [ukui-screensaver-dialog] auth alraedy!!
Jun 23 16:37:06 dsd-pc kernel: [   10.947029][ 5] [  T719] EDAC amd64: F18h detected (node 0).
Jun 23 16:37:06 dsd-pc kernel: [   10.947082][ 5] [  T719] EDAC MC: UMC0 chip selects:
Jun 23 16:37:06 dsd-pc kernel: [   10.947083][ 5] [  T719] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:06 dsd-pc kernel: [   10.947084][ 5] [  T719] EDAC amd64: MC: 2:  4096MB 3:     0MB
Jun 23 16:37:06 dsd-pc kernel: [   10.947087][ 5] [  T719] EDAC MC: UMC1 chip selects:
Jun 23 16:37:06 dsd-pc kernel: [   10.947087][ 5] [  T719] EDAC amd64: MC: 0:     0MB 1:     0MB
Jun 23 16:37:06 dsd-pc kernel: [   10.947088][ 5] [  T719] EDAC amd64: MC: 2:     0MB 3:     0MB
Jun 23 16:37:06 dsd-pc kernel: [   10.947088][ 5] [  T719] EDAC amd64: using x4 syndromes.
Jun 23 16:37:06 dsd-pc kernel: [   10.947093][ 5] [  T719] EDAC amd64: Node 0: DRAM ECC disabled.
Jun 23 16:37:06 dsd-pc kernel: [   10.947093][ 5] [  T719] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Jun 23 16:37:06 dsd-pc kernel: [   10.947093][ 5] [  T719]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
Jun 23 16:37:06 dsd-pc kernel: [   10.947093][ 5] [  T719]  (Note that use of the override may cause unknown side effects.)
Jun 23 16:37:06 dsd-pc kernel: [   11.196534][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 138 (reg 1106, index 27) beyond range (139, 1033)
Jun 23 16:37:06 dsd-pc kernel: [   11.196537][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.197568][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 138 (reg 1114, index 28) beyond range (140, 1034)
Jun 23 16:37:06 dsd-pc kernel: [   11.197569][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.198607][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 138 (reg 1122, index 29) beyond range (141, 1035)
Jun 23 16:37:06 dsd-pc kernel: [   11.198608][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.198891][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 138 (reg 1124, index 30) beyond range (141, 1035)
Jun 23 16:37:06 dsd-pc kernel: [   11.198891][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.199458][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 139 (reg 1129, index 31) beyond range (142, 1036)
Jun 23 16:37:06 dsd-pc kernel: [   11.199459][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.200494][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 139 (reg 1137, index 32) beyond range (143, 1037)
Jun 23 16:37:06 dsd-pc kernel: [   11.200495][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.201534][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 139 (reg 1146, index 33) beyond range (144, 1038)
Jun 23 16:37:06 dsd-pc kernel: [   11.201534][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.202573][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 139 (reg 1154, index 34) beyond range (145, 1039)
Jun 23 16:37:06 dsd-pc kernel: [   11.202574][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.203044][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 139 (reg 1158, index 35) beyond range (145, 1039)
Jun 23 16:37:06 dsd-pc kernel: [   11.203045][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.203047][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 139 (reg 1158, index 36) beyond range (145, 1039)
Jun 23 16:37:06 dsd-pc kernel: [   11.203048][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.203613][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 139 (reg 1162, index 37) beyond range (146, 1040)
Jun 23 16:37:06 dsd-pc kernel: [   11.203614][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.204650][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 139 (reg 1170, index 38) beyond range (147, 1041)
Jun 23 16:37:06 dsd-pc kernel: [   11.204651][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.205689][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 140 (reg 1179, index 39) beyond range (148, 1042)
Jun 23 16:37:06 dsd-pc kernel: [   11.205690][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.206728][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 140 (reg 1187, index 40) beyond range (149, 1043)
Jun 23 16:37:06 dsd-pc kernel: [   11.206729][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.207012][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 140 (reg 1189, index 41) beyond range (149, 1043)
Jun 23 16:37:06 dsd-pc kernel: [   11.207013][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.207579][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 140 (reg 1194, index 42) beyond range (150, 1044)
Jun 23 16:37:06 dsd-pc kernel: [   11.207579][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.208615][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 140 (reg 1202, index 43) beyond range (151, 1045)
Jun 23 16:37:06 dsd-pc kernel: [   11.208616][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.209654][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 140 (reg 1211, index 44) beyond range (152, 1046)
Jun 23 16:37:06 dsd-pc kernel: [   11.209655][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.210694][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 140 (reg 1219, index 45) beyond range (153, 1047)
Jun 23 16:37:06 dsd-pc kernel: [   11.210695][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.210977][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 140 (reg 1221, index 46) beyond range (153, 1047)
Jun 23 16:37:06 dsd-pc kernel: [   11.210978][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.222587][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 164 (reg 1314, index 2) beyond range (165, 1059)
Jun 23 16:37:06 dsd-pc kernel: [   11.222588][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.223057][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 164 (reg 1318, index 3) beyond range (165, 1059)
Jun 23 16:37:06 dsd-pc kernel: [   11.223058][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.223060][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 164 (reg 1318, index 4) beyond range (165, 1059)
Jun 23 16:37:06 dsd-pc kernel: [   11.223060][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.223062][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 164 (reg 1318, index 5) beyond range (165, 1059)
Jun 23 16:37:06 dsd-pc kernel: [   11.223063][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.223064][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 164 (reg 1318, index 6) beyond range (165, 1059)
Jun 23 16:37:06 dsd-pc kernel: [   11.223065][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.223067][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 164 (reg 1318, index 7) beyond range (165, 1059)
Jun 23 16:37:06 dsd-pc kernel: [   11.223068][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.241569][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 183 (reg 1466, index 16) beyond range (184, 1078)
Jun 23 16:37:06 dsd-pc kernel: [   11.241571][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.242603][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 184 (reg 1474, index 17) beyond range (185, 1079)
Jun 23 16:37:06 dsd-pc kernel: [   11.242604][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.242888][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 184 (reg 1476, index 18) beyond range (185, 1079)
Jun 23 16:37:06 dsd-pc kernel: [   11.242890][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.243454][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 184 (reg 1481, index 19) beyond range (186, 1080)
Jun 23 16:37:06 dsd-pc kernel: [   11.243455][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.244491][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 184 (reg 1489, index 20) beyond range (187, 1081)
Jun 23 16:37:06 dsd-pc kernel: [   11.244492][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.245527][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 184 (reg 1497, index 21) beyond range (188, 1082)
Jun 23 16:37:06 dsd-pc kernel: [   11.245528][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.246564][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 184 (reg 1506, index 22) beyond range (189, 1083)
Jun 23 16:37:06 dsd-pc kernel: [   11.246565][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.247038][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 184 (reg 1510, index 23) beyond range (189, 1083)
Jun 23 16:37:06 dsd-pc kernel: [   11.247039][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.247606][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 184 (reg 1514, index 24) beyond range (190, 1084)
Jun 23 16:37:06 dsd-pc kernel: [   11.247607][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.248643][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 185 (reg 1522, index 25) beyond range (191, 1085)
Jun 23 16:37:06 dsd-pc kernel: [   11.248643][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.249680][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 185 (reg 1531, index 26) beyond range (192, 1086)
Jun 23 16:37:06 dsd-pc kernel: [   11.249680][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.250717][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 185 (reg 1539, index 27) beyond range (193, 1087)
Jun 23 16:37:06 dsd-pc kernel: [   11.250718][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.251001][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 185 (reg 1541, index 28) beyond range (193, 1087)
Jun 23 16:37:06 dsd-pc kernel: [   11.251003][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.251567][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 185 (reg 1546, index 29) beyond range (194, 1088)
Jun 23 16:37:06 dsd-pc kernel: [   11.251568][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.252604][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 185 (reg 1554, index 30) beyond range (195, 1089)
Jun 23 16:37:06 dsd-pc kernel: [   11.252604][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.253642][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 185 (reg 1562, index 31) beyond range (196, 1090)
Jun 23 16:37:06 dsd-pc kernel: [   11.253645][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.254677][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 185 (reg 1571, index 32) beyond range (197, 1091)
Jun 23 16:37:06 dsd-pc kernel: [   11.254678][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.254961][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 186 (reg 1573, index 33) beyond range (197, 1091)
Jun 23 16:37:06 dsd-pc kernel: [   11.254962][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.255528][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 186 (reg 1577, index 34) beyond range (198, 1092)
Jun 23 16:37:06 dsd-pc kernel: [   11.255530][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.256097][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 186 (reg 1582, index 35) beyond range (198, 1092)
Jun 23 16:37:06 dsd-pc kernel: [   11.256098][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.257131][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 186 (reg 1590, index 36) beyond range (199, 1093)
Jun 23 16:37:06 dsd-pc kernel: [   11.257132][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.258168][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 186 (reg 1599, index 37) beyond range (201, 1094)
Jun 23 16:37:06 dsd-pc kernel: [   11.258169][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.258922][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 186 (reg 1605, index 38) beyond range (201, 1095)
Jun 23 16:37:06 dsd-pc kernel: [   11.258924][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.259489][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 186 (reg 1609, index 39) beyond range (202, 1096)
Jun 23 16:37:06 dsd-pc kernel: [   11.259490][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.260526][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 186 (reg 1617, index 40) beyond range (203, 1097)
Jun 23 16:37:06 dsd-pc kernel: [   11.260527][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.261562][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 187 (reg 1626, index 41) beyond range (204, 1098)
Jun 23 16:37:06 dsd-pc kernel: [   11.261563][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.262600][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 187 (reg 1634, index 42) beyond range (205, 1099)
Jun 23 16:37:06 dsd-pc kernel: [   11.262601][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.262884][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 187 (reg 1636, index 43) beyond range (205, 1099)
Jun 23 16:37:06 dsd-pc kernel: [   11.262885][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.263451][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 187 (reg 1641, index 44) beyond range (206, 1100)
Jun 23 16:37:06 dsd-pc kernel: [   11.263452][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.264486][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 187 (reg 1649, index 45) beyond range (207, 1101)
Jun 23 16:37:06 dsd-pc kernel: [   11.264487][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.265523][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 187 (reg 1657, index 46) beyond range (208, 1102)
Jun 23 16:37:06 dsd-pc kernel: [   11.265524][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.266561][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 187 (reg 1666, index 47) beyond range (209, 1103)
Jun 23 16:37:06 dsd-pc kernel: [   11.266562][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.276559][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 218 (reg 1746, index 5) beyond range (219, 1113)
Jun 23 16:37:06 dsd-pc kernel: [   11.276561][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.277595][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 218 (reg 1754, index 6) beyond range (220, 1114)
Jun 23 16:37:06 dsd-pc kernel: [   11.277596][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.278632][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 218 (reg 1762, index 7) beyond range (221, 1115)
Jun 23 16:37:06 dsd-pc kernel: [   11.278633][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.278917][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 219 (reg 1765, index 8) beyond range (221, 1115)
Jun 23 16:37:06 dsd-pc kernel: [   11.278918][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.278920][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 219 (reg 1765, index 9) beyond range (221, 1115)
Jun 23 16:37:06 dsd-pc kernel: [   11.278921][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.279957][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 219 (reg 1773, index 10) beyond range (222, 1116)
Jun 23 16:37:06 dsd-pc kernel: [   11.279957][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.280995][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 219 (reg 1781, index 11) beyond range (223, 1117)
Jun 23 16:37:06 dsd-pc kernel: [   11.280996][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.281186][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 219 (reg 1783, index 12) beyond range (224, 1117)
Jun 23 16:37:06 dsd-pc kernel: [   11.281186][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.281752][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 219 (reg 1787, index 13) beyond range (224, 1118)
Jun 23 16:37:06 dsd-pc kernel: [   11.281753][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.282322][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 219 (reg 1792, index 14) beyond range (225, 1119)
Jun 23 16:37:06 dsd-pc kernel: [   11.282323][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.282890][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 219 (reg 1796, index 15) beyond range (225, 1119)
Jun 23 16:37:06 dsd-pc kernel: [   11.282890][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.283267][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 220 (reg 1799, index 16) beyond range (226, 1119)
Jun 23 16:37:06 dsd-pc kernel: [   11.283268][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.284304][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 220 (reg 1808, index 17) beyond range (227, 1121)
Jun 23 16:37:06 dsd-pc kernel: [   11.284305][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.285341][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 220 (reg 1816, index 18) beyond range (228, 1122)
Jun 23 16:37:06 dsd-pc kernel: [   11.285341][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.286378][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 220 (reg 1824, index 19) beyond range (229, 1123)
Jun 23 16:37:06 dsd-pc kernel: [   11.286379][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.287041][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 220 (reg 1830, index 20) beyond range (229, 1123)
Jun 23 16:37:06 dsd-pc kernel: [   11.287041][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.287043][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 220 (reg 1830, index 21) beyond range (229, 1123)
Jun 23 16:37:06 dsd-pc kernel: [   11.287044][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.287608][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 220 (reg 1834, index 22) beyond range (230, 1124)
Jun 23 16:37:06 dsd-pc kernel: [   11.287609][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.288645][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 220 (reg 1842, index 23) beyond range (231, 1125)
Jun 23 16:37:06 dsd-pc kernel: [   11.288645][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.289681][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 221 (reg 1851, index 24) beyond range (232, 1126)
Jun 23 16:37:06 dsd-pc kernel: [   11.289682][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.290719][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 221 (reg 1859, index 25) beyond range (233, 1127)
Jun 23 16:37:06 dsd-pc kernel: [   11.290720][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.291003][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 221 (reg 1861, index 26) beyond range (233, 1127)
Jun 23 16:37:06 dsd-pc kernel: [   11.291004][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.291569][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 221 (reg 1866, index 27) beyond range (234, 1128)
Jun 23 16:37:06 dsd-pc kernel: [   11.291569][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.292606][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 221 (reg 1874, index 28) beyond range (235, 1129)
Jun 23 16:37:06 dsd-pc kernel: [   11.292606][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.293642][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 221 (reg 1882, index 29) beyond range (236, 1130)
Jun 23 16:37:06 dsd-pc kernel: [   11.293643][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.294680][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 221 (reg 1891, index 30) beyond range (237, 1131)
Jun 23 16:37:06 dsd-pc kernel: [   11.294681][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.294963][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 221 (reg 1893, index 31) beyond range (237, 1131)
Jun 23 16:37:06 dsd-pc kernel: [   11.294964][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.295530][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 222 (reg 1898, index 32) beyond range (238, 1132)
Jun 23 16:37:06 dsd-pc kernel: [   11.295530][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.296566][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 222 (reg 1906, index 33) beyond range (239, 1133)
Jun 23 16:37:06 dsd-pc kernel: [   11.296567][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.297603][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 222 (reg 1914, index 34) beyond range (240, 1134)
Jun 23 16:37:06 dsd-pc kernel: [   11.297604][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.298640][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 222 (reg 1922, index 35) beyond range (241, 1135)
Jun 23 16:37:06 dsd-pc kernel: [   11.298641][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.298924][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 222 (reg 1925, index 36) beyond range (241, 1135)
Jun 23 16:37:06 dsd-pc kernel: [   11.298925][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.299491][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 222 (reg 1929, index 37) beyond range (242, 1136)
Jun 23 16:37:06 dsd-pc kernel: [   11.299491][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.300527][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 222 (reg 1937, index 38) beyond range (243, 1137)
Jun 23 16:37:06 dsd-pc kernel: [   11.300528][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.301564][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 222 (reg 1946, index 39) beyond range (244, 1138)
Jun 23 16:37:06 dsd-pc kernel: [   11.301564][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.302601][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 223 (reg 1954, index 40) beyond range (245, 1139)
Jun 23 16:37:06 dsd-pc kernel: [   11.302602][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.302885][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 223 (reg 1956, index 41) beyond range (245, 1139)
Jun 23 16:37:06 dsd-pc kernel: [   11.302886][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.303451][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 223 (reg 1961, index 42) beyond range (246, 1140)
Jun 23 16:37:06 dsd-pc kernel: [   11.303452][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.304488][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 223 (reg 1969, index 43) beyond range (247, 1141)
Jun 23 16:37:06 dsd-pc kernel: [   11.304489][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.305525][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 223 (reg 1977, index 44) beyond range (248, 1142)
Jun 23 16:37:06 dsd-pc kernel: [   11.305525][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.306562][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 223 (reg 1986, index 45) beyond range (249, 1143)
Jun 23 16:37:06 dsd-pc kernel: [   11.306563][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.307034][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 223 (reg 1990, index 46) beyond range (249, 1143)
Jun 23 16:37:06 dsd-pc kernel: [   11.307035][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.307600][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 223 (reg 1994, index 47) beyond range (250, 1144)
Jun 23 16:37:06 dsd-pc kernel: [   11.307601][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.315523][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 257 (reg 2057, index 6) beyond range (258, 1152)
Jun 23 16:37:06 dsd-pc kernel: [   11.315525][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.316560][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 257 (reg 2066, index 7) beyond range (259, 1153)
Jun 23 16:37:06 dsd-pc kernel: [   11.316561][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.317597][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 258 (reg 2074, index 8) beyond range (260, 1154)
Jun 23 16:37:06 dsd-pc kernel: [   11.317598][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.318633][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 258 (reg 2082, index 9) beyond range (261, 1155)
Jun 23 16:37:06 dsd-pc kernel: [   11.318634][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.318918][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 258 (reg 2085, index 10) beyond range (261, 1155)
Jun 23 16:37:06 dsd-pc kernel: [   11.318919][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.319484][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 258 (reg 2089, index 11) beyond range (262, 1156)
Jun 23 16:37:06 dsd-pc kernel: [   11.319485][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.320521][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 258 (reg 2097, index 12) beyond range (263, 1157)
Jun 23 16:37:06 dsd-pc kernel: [   11.320522][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.321557][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 258 (reg 2106, index 13) beyond range (264, 1158)
Jun 23 16:37:06 dsd-pc kernel: [   11.321559][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.322594][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 258 (reg 2114, index 14) beyond range (265, 1159)
Jun 23 16:37:06 dsd-pc kernel: [   11.322595][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.323067][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 258 (reg 2118, index 15) beyond range (265, 1159)
Jun 23 16:37:06 dsd-pc kernel: [   11.323068][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.323633][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 259 (reg 2122, index 16) beyond range (266, 1160)
Jun 23 16:37:06 dsd-pc kernel: [   11.323634][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.324670][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 259 (reg 2131, index 17) beyond range (267, 1161)
Jun 23 16:37:06 dsd-pc kernel: [   11.324671][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.325706][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 259 (reg 2139, index 18) beyond range (268, 1162)
Jun 23 16:37:06 dsd-pc kernel: [   11.325707][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.326743][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 259 (reg 2147, index 19) beyond range (269, 1163)
Jun 23 16:37:06 dsd-pc kernel: [   11.326744][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.327028][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 259 (reg 2149, index 20) beyond range (269, 1163)
Jun 23 16:37:06 dsd-pc kernel: [   11.327029][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.327595][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 259 (reg 2154, index 21) beyond range (270, 1164)
Jun 23 16:37:06 dsd-pc kernel: [   11.327597][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.328632][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 259 (reg 2162, index 22) beyond range (271, 1165)
Jun 23 16:37:06 dsd-pc kernel: [   11.328633][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.329668][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 259 (reg 2171, index 23) beyond range (272, 1166)
Jun 23 16:37:06 dsd-pc kernel: [   11.329669][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.330705][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 260 (reg 2179, index 24) beyond range (273, 1167)
Jun 23 16:37:06 dsd-pc kernel: [   11.330706][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.330989][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 260 (reg 2181, index 25) beyond range (273, 1167)
Jun 23 16:37:06 dsd-pc kernel: [   11.330991][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.330996][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 260 (reg 2181, index 26) beyond range (273, 1167)
Jun 23 16:37:06 dsd-pc kernel: [   11.330996][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.331465][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 260 (reg 2185, index 27) beyond range (274, 1168)
Jun 23 16:37:06 dsd-pc kernel: [   11.331466][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.331656][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 260 (reg 2187, index 28) beyond range (274, 1168)
Jun 23 16:37:06 dsd-pc kernel: [   11.331656][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.332692][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 260 (reg 2195, index 29) beyond range (275, 1169)
Jun 23 16:37:06 dsd-pc kernel: [   11.332693][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.333728][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 260 (reg 2203, index 30) beyond range (276, 1170)
Jun 23 16:37:06 dsd-pc kernel: [   11.333729][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.334765][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 260 (reg 2211, index 31) beyond range (277, 1171)
Jun 23 16:37:06 dsd-pc kernel: [   11.334766][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.335050][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 261 (reg 2214, index 32) beyond range (277, 1171)
Jun 23 16:37:06 dsd-pc kernel: [   11.335051][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.335054][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 261 (reg 2214, index 33) beyond range (277, 1171)
Jun 23 16:37:06 dsd-pc kernel: [   11.335055][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.335619][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 261 (reg 2218, index 34) beyond range (278, 1172)
Jun 23 16:37:06 dsd-pc kernel: [   11.335621][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.335998][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 261 (reg 2221, index 35) beyond range (278, 1172)
Jun 23 16:37:06 dsd-pc kernel: [   11.335999][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.337034][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 261 (reg 2230, index 36) beyond range (279, 1173)
Jun 23 16:37:06 dsd-pc kernel: [   11.337036][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.338073][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 261 (reg 2238, index 37) beyond range (280, 1174)
Jun 23 16:37:06 dsd-pc kernel: [   11.338074][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.339018][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 261 (reg 2245, index 38) beyond range (281, 1175)
Jun 23 16:37:06 dsd-pc kernel: [   11.339019][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.339021][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 261 (reg 2245, index 39) beyond range (281, 1175)
Jun 23 16:37:06 dsd-pc kernel: [   11.339022][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.339586][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 262 (reg 2250, index 40) beyond range (282, 1176)
Jun 23 16:37:06 dsd-pc kernel: [   11.339588][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.340623][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 262 (reg 2258, index 41) beyond range (283, 1177)
Jun 23 16:37:06 dsd-pc kernel: [   11.340624][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.341659][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 262 (reg 2267, index 42) beyond range (284, 1178)
Jun 23 16:37:06 dsd-pc kernel: [   11.341660][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.342697][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 262 (reg 2275, index 43) beyond range (285, 1179)
Jun 23 16:37:06 dsd-pc kernel: [   11.342697][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.342980][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 262 (reg 2277, index 44) beyond range (285, 1179)
Jun 23 16:37:06 dsd-pc kernel: [   11.342981][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.343549][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 262 (reg 2282, index 45) beyond range (286, 1180)
Jun 23 16:37:06 dsd-pc kernel: [   11.343550][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.344115][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 262 (reg 2286, index 46) beyond range (286, 1180)
Jun 23 16:37:06 dsd-pc kernel: [   11.344116][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.349030][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 290 (reg 2326, index 2) beyond range (291, 1185)
Jun 23 16:37:06 dsd-pc kernel: [   11.349033][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.350067][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 290 (reg 2334, index 3) beyond range (292, 1186)
Jun 23 16:37:06 dsd-pc kernel: [   11.350068][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.350915][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 290 (reg 2341, index 4) beyond range (293, 1187)
Jun 23 16:37:06 dsd-pc kernel: [   11.350917][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.351482][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 290 (reg 2345, index 5) beyond range (294, 1188)
Jun 23 16:37:06 dsd-pc kernel: [   11.351483][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.352518][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 290 (reg 2353, index 6) beyond range (295, 1189)
Jun 23 16:37:06 dsd-pc kernel: [   11.352519][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.353555][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 290 (reg 2362, index 7) beyond range (296, 1190)
Jun 23 16:37:06 dsd-pc kernel: [   11.353556][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.354592][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 291 (reg 2370, index 8) beyond range (297, 1191)
Jun 23 16:37:06 dsd-pc kernel: [   11.354593][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.355064][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 291 (reg 2374, index 9) beyond range (297, 1191)
Jun 23 16:37:06 dsd-pc kernel: [   11.355065][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.355631][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 291 (reg 2378, index 10) beyond range (298, 1192)
Jun 23 16:37:06 dsd-pc kernel: [   11.355631][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.356668][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 291 (reg 2387, index 11) beyond range (299, 1193)
Jun 23 16:37:06 dsd-pc kernel: [   11.356668][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.357706][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 291 (reg 2395, index 12) beyond range (300, 1194)
Jun 23 16:37:06 dsd-pc kernel: [   11.357707][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.358746][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 291 (reg 2403, index 13) beyond range (301, 1195)
Jun 23 16:37:06 dsd-pc kernel: [   11.358747][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.359030][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 291 (reg 2406, index 14) beyond range (301, 1195)
Jun 23 16:37:06 dsd-pc kernel: [   11.359030][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.359597][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 291 (reg 2410, index 15) beyond range (302, 1196)
Jun 23 16:37:06 dsd-pc kernel: [   11.359597][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.360633][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 292 (reg 2418, index 16) beyond range (303, 1197)
Jun 23 16:37:06 dsd-pc kernel: [   11.360634][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.361670][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 292 (reg 2427, index 17) beyond range (304, 1198)
Jun 23 16:37:06 dsd-pc kernel: [   11.361671][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.362707][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 292 (reg 2435, index 18) beyond range (305, 1199)
Jun 23 16:37:06 dsd-pc kernel: [   11.362708][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.362991][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 292 (reg 2437, index 19) beyond range (305, 1199)
Jun 23 16:37:06 dsd-pc kernel: [   11.362992][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.363558][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 292 (reg 2442, index 20) beyond range (306, 1200)
Jun 23 16:37:06 dsd-pc kernel: [   11.363559][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.363748][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 292 (reg 2443, index 21) beyond range (306, 1200)
Jun 23 16:37:06 dsd-pc kernel: [   11.363749][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.364785][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 292 (reg 2452, index 22) beyond range (307, 1201)
Jun 23 16:37:06 dsd-pc kernel: [   11.364786][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.365822][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 292 (reg 2460, index 23) beyond range (308, 1202)
Jun 23 16:37:06 dsd-pc kernel: [   11.365822][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.366859][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 293 (reg 2468, index 24) beyond range (309, 1203)
Jun 23 16:37:06 dsd-pc kernel: [   11.366860][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.366955][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 293 (reg 2469, index 25) beyond range (309, 1203)
Jun 23 16:37:06 dsd-pc kernel: [   11.366956][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.367521][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 293 (reg 2473, index 26) beyond range (310, 1204)
Jun 23 16:37:06 dsd-pc kernel: [   11.367522][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.368558][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 293 (reg 2482, index 27) beyond range (311, 1205)
Jun 23 16:37:06 dsd-pc kernel: [   11.368558][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.369594][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 293 (reg 2490, index 28) beyond range (312, 1206)
Jun 23 16:37:06 dsd-pc kernel: [   11.369595][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.370632][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 293 (reg 2498, index 29) beyond range (313, 1207)
Jun 23 16:37:06 dsd-pc kernel: [   11.370633][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.370915][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 293 (reg 2501, index 30) beyond range (313, 1207)
Jun 23 16:37:06 dsd-pc kernel: [   11.370916][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.371482][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 293 (reg 2505, index 31) beyond range (314, 1208)
Jun 23 16:37:06 dsd-pc kernel: [   11.371483][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.372519][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 294 (reg 2513, index 32) beyond range (315, 1209)
Jun 23 16:37:06 dsd-pc kernel: [   11.372519][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.373558][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 294 (reg 2522, index 33) beyond range (316, 1210)
Jun 23 16:37:06 dsd-pc kernel: [   11.373558][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.374597][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 294 (reg 2530, index 34) beyond range (317, 1211)
Jun 23 16:37:06 dsd-pc kernel: [   11.374599][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.375069][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 294 (reg 2534, index 35) beyond range (317, 1211)
Jun 23 16:37:06 dsd-pc kernel: [   11.375070][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.375636][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 294 (reg 2538, index 36) beyond range (318, 1212)
Jun 23 16:37:06 dsd-pc kernel: [   11.375637][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.375826][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 294 (reg 2540, index 37) beyond range (318, 1212)
Jun 23 16:37:06 dsd-pc kernel: [   11.375827][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.376863][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 294 (reg 2548, index 38) beyond range (319, 1213)
Jun 23 16:37:06 dsd-pc kernel: [   11.376864][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.377902][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 294 (reg 2556, index 39) beyond range (320, 1214)
Jun 23 16:37:06 dsd-pc kernel: [   11.377902][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.378942][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 295 (reg 2565, index 40) beyond range (321, 1215)
Jun 23 16:37:06 dsd-pc kernel: [   11.378943][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.379037][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 295 (reg 2566, index 41) beyond range (321, 1215)
Jun 23 16:37:06 dsd-pc kernel: [   11.379038][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.379041][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 295 (reg 2566, index 42) beyond range (321, 1215)
Jun 23 16:37:06 dsd-pc kernel: [   11.379041][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.379605][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 295 (reg 2570, index 43) beyond range (322, 1216)
Jun 23 16:37:06 dsd-pc kernel: [   11.379606][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.381679][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 295 (reg 2587, index 44) beyond range (324, 1218)
Jun 23 16:37:06 dsd-pc kernel: [   11.382717][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.383004][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 295 (reg 2597, index 45) beyond range (325, 1219)
Jun 23 16:37:06 dsd-pc kernel: [   11.383005][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.383571][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 295 (reg 2602, index 46) beyond range (326, 1220)
Jun 23 16:37:06 dsd-pc kernel: [   11.384607][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.385644][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 295 (reg 2618, index 47) beyond range (328, 1222)
Jun 23 16:37:06 dsd-pc kernel: [   11.385645][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.393570][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 335 (reg 2682, index 2) beyond range (336, 1230)
Jun 23 16:37:06 dsd-pc kernel: [   11.393572][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.394608][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 335 (reg 2690, index 3) beyond range (337, 1231)
Jun 23 16:37:06 dsd-pc kernel: [   11.394609][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.394703][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 335 (reg 2691, index 4) beyond range (337, 1231)
Jun 23 16:37:06 dsd-pc kernel: [   11.394705][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.394707][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 335 (reg 2691, index 5) beyond range (337, 1231)
Jun 23 16:37:06 dsd-pc kernel: [   11.394708][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.395273][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 335 (reg 2695, index 6) beyond range (338, 1231)
Jun 23 16:37:06 dsd-pc kernel: [   11.395274][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.396310][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 335 (reg 2704, index 7) beyond range (339, 1233)
Jun 23 16:37:06 dsd-pc kernel: [   11.396311][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.397346][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 336 (reg 2712, index 8) beyond range (340, 1234)
Jun 23 16:37:06 dsd-pc kernel: [   11.397347][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.398383][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 336 (reg 2720, index 9) beyond range (341, 1235)
Jun 23 16:37:06 dsd-pc kernel: [   11.398384][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.399046][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 336 (reg 2726, index 10) beyond range (341, 1235)
Jun 23 16:37:06 dsd-pc kernel: [   11.399047][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.399613][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 336 (reg 2730, index 11) beyond range (342, 1236)
Jun 23 16:37:06 dsd-pc kernel: [   11.399613][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.400649][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 336 (reg 2738, index 12) beyond range (343, 1237)
Jun 23 16:37:06 dsd-pc kernel: [   11.400650][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.401687][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 336 (reg 2747, index 13) beyond range (344, 1238)
Jun 23 16:37:06 dsd-pc kernel: [   11.401688][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.403007][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 336 (reg 2757, index 14) beyond range (345, 1239)
Jun 23 16:37:06 dsd-pc kernel: [   11.403008][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.403764][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 336 (reg 2762, index 15) beyond range (346, 1240)
Jun 23 16:37:06 dsd-pc kernel: [   11.404800][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.405837][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 337 (reg 2780, index 16) beyond range (348, 1242)
Jun 23 16:37:06 dsd-pc kernel: [   11.405838][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.406874][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 337 (reg 2788, index 17) beyond range (349, 1243)
Jun 23 16:37:06 dsd-pc kernel: [   11.406875][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.406970][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 337 (reg 2789, index 18) beyond range (349, 1243)
Jun 23 16:37:06 dsd-pc kernel: [   11.406971][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.406973][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 337 (reg 2789, index 19) beyond range (349, 1243)
Jun 23 16:37:06 dsd-pc kernel: [   11.406974][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.408009][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 337 (reg 2797, index 20) beyond range (350, 1244)
Jun 23 16:37:06 dsd-pc kernel: [   11.408010][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.409046][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 337 (reg 2806, index 21) beyond range (351, 1245)
Jun 23 16:37:06 dsd-pc kernel: [   11.409046][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.410085][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 337 (reg 2814, index 22) beyond range (352, 1246)
Jun 23 16:37:06 dsd-pc kernel: [   11.410086][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.410936][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 337 (reg 2821, index 23) beyond range (353, 1247)
Jun 23 16:37:06 dsd-pc kernel: [   11.410937][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.411503][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 338 (reg 2825, index 24) beyond range (354, 1248)
Jun 23 16:37:06 dsd-pc kernel: [   11.411504][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.412539][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 338 (reg 2834, index 25) beyond range (355, 1249)
Jun 23 16:37:06 dsd-pc kernel: [   11.412540][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.413576][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 338 (reg 2842, index 26) beyond range (356, 1250)
Jun 23 16:37:06 dsd-pc kernel: [   11.413577][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.414613][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 338 (reg 2850, index 27) beyond range (357, 1251)
Jun 23 16:37:06 dsd-pc kernel: [   11.414614][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.414897][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 338 (reg 2852, index 28) beyond range (357, 1251)
Jun 23 16:37:06 dsd-pc kernel: [   11.414898][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.415464][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 338 (reg 2857, index 29) beyond range (358, 1252)
Jun 23 16:37:06 dsd-pc kernel: [   11.415465][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.416501][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 338 (reg 2865, index 30) beyond range (359, 1253)
Jun 23 16:37:06 dsd-pc kernel: [   11.416501][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.417537][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 338 (reg 2874, index 31) beyond range (360, 1254)
Jun 23 16:37:06 dsd-pc kernel: [   11.417538][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.418574][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 339 (reg 2882, index 32) beyond range (361, 1255)
Jun 23 16:37:06 dsd-pc kernel: [   11.418575][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.419046][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 339 (reg 2886, index 33) beyond range (361, 1255)
Jun 23 16:37:06 dsd-pc kernel: [   11.419047][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.419614][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 339 (reg 2890, index 34) beyond range (362, 1256)
Jun 23 16:37:06 dsd-pc kernel: [   11.419615][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.419804][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 339 (reg 2892, index 35) beyond range (362, 1256)
Jun 23 16:37:06 dsd-pc kernel: [   11.419804][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.420370][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 339 (reg 2896, index 36) beyond range (363, 1257)
Jun 23 16:37:06 dsd-pc kernel: [   11.420371][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.420748][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 339 (reg 2899, index 37) beyond range (363, 1257)
Jun 23 16:37:06 dsd-pc kernel: [   11.420749][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.421785][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 339 (reg 2908, index 38) beyond range (364, 1258)
Jun 23 16:37:06 dsd-pc kernel: [   11.421785][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.422822][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 339 (reg 2916, index 39) beyond range (365, 1259)
Jun 23 16:37:06 dsd-pc kernel: [   11.422823][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.423012][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 340 (reg 2917, index 40) beyond range (365, 1259)
Jun 23 16:37:06 dsd-pc kernel: [   11.423013][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.423579][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 340 (reg 2922, index 41) beyond range (366, 1260)
Jun 23 16:37:06 dsd-pc kernel: [   11.423580][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.424616][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 340 (reg 2930, index 42) beyond range (367, 1261)
Jun 23 16:37:06 dsd-pc kernel: [   11.424616][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.425653][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 340 (reg 2938, index 43) beyond range (368, 1262)
Jun 23 16:37:06 dsd-pc kernel: [   11.425653][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.426690][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 340 (reg 2947, index 44) beyond range (369, 1263)
Jun 23 16:37:06 dsd-pc kernel: [   11.426691][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.426974][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 340 (reg 2949, index 45) beyond range (369, 1263)
Jun 23 16:37:06 dsd-pc kernel: [   11.426975][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.427540][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 340 (reg 2954, index 46) beyond range (370, 1264)
Jun 23 16:37:06 dsd-pc kernel: [   11.427541][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.428577][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 340 (reg 2962, index 47) beyond range (371, 1265)
Jun 23 16:37:06 dsd-pc kernel: [   11.428577][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.435465][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 377 (reg 3017, index 5) beyond range (378, 1272)
Jun 23 16:37:06 dsd-pc kernel: [   11.435466][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.436501][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 377 (reg 3025, index 6) beyond range (379, 1273)
Jun 23 16:37:06 dsd-pc kernel: [   11.436502][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.437538][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 377 (reg 3034, index 7) beyond range (380, 1274)
Jun 23 16:37:06 dsd-pc kernel: [   11.437539][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.438576][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 378 (reg 3042, index 8) beyond range (381, 1275)
Jun 23 16:37:06 dsd-pc kernel: [   11.438577][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.439047][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 378 (reg 3046, index 9) beyond range (381, 1275)
Jun 23 16:37:06 dsd-pc kernel: [   11.439048][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.439613][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 378 (reg 3050, index 10) beyond range (382, 1276)
Jun 23 16:37:06 dsd-pc kernel: [   11.439614][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.440650][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 378 (reg 3058, index 11) beyond range (383, 1277)
Jun 23 16:37:06 dsd-pc kernel: [   11.440651][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.441687][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 378 (reg 3067, index 12) beyond range (384, 1278)
Jun 23 16:37:06 dsd-pc kernel: [   11.441687][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.442724][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 378 (reg 3075, index 13) beyond range (385, 1279)
Jun 23 16:37:06 dsd-pc kernel: [   11.442725][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.443008][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 378 (reg 3077, index 14) beyond range (385, 1279)
Jun 23 16:37:06 dsd-pc kernel: [   11.443010][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.443574][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 378 (reg 3082, index 15) beyond range (386, 1280)
Jun 23 16:37:06 dsd-pc kernel: [   11.443575][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.444611][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 379 (reg 3090, index 16) beyond range (387, 1281)
Jun 23 16:37:06 dsd-pc kernel: [   11.444612][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.445648][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 379 (reg 3098, index 17) beyond range (388, 1282)
Jun 23 16:37:06 dsd-pc kernel: [   11.445648][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.446685][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 379 (reg 3107, index 18) beyond range (389, 1283)
Jun 23 16:37:06 dsd-pc kernel: [   11.446686][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.446969][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 379 (reg 3109, index 19) beyond range (389, 1283)
Jun 23 16:37:06 dsd-pc kernel: [   11.446969][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.447536][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 379 (reg 3114, index 20) beyond range (390, 1284)
Jun 23 16:37:06 dsd-pc kernel: [   11.447536][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.447726][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 379 (reg 3115, index 21) beyond range (390, 1284)
Jun 23 16:37:06 dsd-pc kernel: [   11.447727][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.448762][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 379 (reg 3123, index 22) beyond range (391, 1285)
Jun 23 16:37:06 dsd-pc kernel: [   11.448763][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.449799][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 379 (reg 3132, index 23) beyond range (392, 1286)
Jun 23 16:37:06 dsd-pc kernel: [   11.449800][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.450837][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 380 (reg 3140, index 24) beyond range (393, 1287)
Jun 23 16:37:06 dsd-pc kernel: [   11.450838][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.450932][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 380 (reg 3141, index 25) beyond range (393, 1287)
Jun 23 16:37:06 dsd-pc kernel: [   11.450933][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.451498][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 380 (reg 3145, index 26) beyond range (394, 1288)
Jun 23 16:37:06 dsd-pc kernel: [   11.451499][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.452535][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 380 (reg 3154, index 27) beyond range (395, 1289)
Jun 23 16:37:06 dsd-pc kernel: [   11.452536][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.453572][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 380 (reg 3162, index 28) beyond range (396, 1290)
Jun 23 16:37:06 dsd-pc kernel: [   11.453572][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.454609][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 380 (reg 3170, index 29) beyond range (397, 1291)
Jun 23 16:37:06 dsd-pc kernel: [   11.454610][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.454893][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 380 (reg 3172, index 30) beyond range (397, 1291)
Jun 23 16:37:06 dsd-pc kernel: [   11.454894][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.455459][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 380 (reg 3177, index 31) beyond range (398, 1292)
Jun 23 16:37:06 dsd-pc kernel: [   11.455460][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.456496][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 381 (reg 3185, index 32) beyond range (399, 1293)
Jun 23 16:37:06 dsd-pc kernel: [   11.456497][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.457533][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 381 (reg 3194, index 33) beyond range (400, 1294)
Jun 23 16:37:06 dsd-pc kernel: [   11.457533][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.458570][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 381 (reg 3202, index 34) beyond range (401, 1295)
Jun 23 16:37:06 dsd-pc kernel: [   11.458571][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.459042][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 381 (reg 3206, index 35) beyond range (401, 1295)
Jun 23 16:37:06 dsd-pc kernel: [   11.459043][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.459608][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 381 (reg 3210, index 36) beyond range (402, 1296)
Jun 23 16:37:06 dsd-pc kernel: [   11.459609][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.460645][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 381 (reg 3218, index 37) beyond range (403, 1297)
Jun 23 16:37:06 dsd-pc kernel: [   11.460645][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.461681][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 381 (reg 3227, index 38) beyond range (404, 1298)
Jun 23 16:37:06 dsd-pc kernel: [   11.461682][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.462719][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 381 (reg 3235, index 39) beyond range (405, 1299)
Jun 23 16:37:06 dsd-pc kernel: [   11.462720][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.463003][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 382 (reg 3237, index 40) beyond range (405, 1299)
Jun 23 16:37:06 dsd-pc kernel: [   11.463004][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.463005][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 382 (reg 3237, index 41) beyond range (405, 1299)
Jun 23 16:37:06 dsd-pc kernel: [   11.463006][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.463570][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 382 (reg 3242, index 42) beyond range (406, 1300)
Jun 23 16:37:06 dsd-pc kernel: [   11.463571][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.464607][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 382 (reg 3250, index 43) beyond range (407, 1301)
Jun 23 16:37:06 dsd-pc kernel: [   11.464608][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.465644][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 382 (reg 3258, index 44) beyond range (408, 1302)
Jun 23 16:37:06 dsd-pc kernel: [   11.465644][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.466681][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 382 (reg 3267, index 45) beyond range (409, 1303)
Jun 23 16:37:06 dsd-pc kernel: [   11.466682][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.466965][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 382 (reg 3269, index 46) beyond range (409, 1303)
Jun 23 16:37:06 dsd-pc kernel: [   11.466966][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.473566][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 415 (reg 3322, index 2) beyond range (416, 1310)
Jun 23 16:37:06 dsd-pc kernel: [   11.473566][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.474603][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 415 (reg 3330, index 3) beyond range (417, 1311)
Jun 23 16:37:06 dsd-pc kernel: [   11.474604][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.474887][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 415 (reg 3332, index 4) beyond range (417, 1311)
Jun 23 16:37:06 dsd-pc kernel: [   11.474888][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.475453][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 415 (reg 3337, index 5) beyond range (418, 1312)
Jun 23 16:37:06 dsd-pc kernel: [   11.475456][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.476490][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 415 (reg 3345, index 6) beyond range (419, 1313)
Jun 23 16:37:06 dsd-pc kernel: [   11.476493][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.477527][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 415 (reg 3353, index 7) beyond range (420, 1314)
Jun 23 16:37:06 dsd-pc kernel: [   11.477528][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.478563][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 416 (reg 3362, index 8) beyond range (421, 1315)
Jun 23 16:37:06 dsd-pc kernel: [   11.478564][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.479036][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 416 (reg 3366, index 9) beyond range (421, 1315)
Jun 23 16:37:06 dsd-pc kernel: [   11.479036][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.479602][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 416 (reg 3370, index 10) beyond range (422, 1316)
Jun 23 16:37:06 dsd-pc kernel: [   11.479603][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.480639][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 416 (reg 3378, index 11) beyond range (423, 1317)
Jun 23 16:37:06 dsd-pc kernel: [   11.480640][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.481675][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 416 (reg 3387, index 12) beyond range (424, 1318)
Jun 23 16:37:06 dsd-pc kernel: [   11.481676][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.482713][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 416 (reg 3395, index 13) beyond range (425, 1319)
Jun 23 16:37:06 dsd-pc kernel: [   11.482714][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.482997][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 416 (reg 3397, index 14) beyond range (425, 1319)
Jun 23 16:37:06 dsd-pc kernel: [   11.482997][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.482999][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 416 (reg 3397, index 15) beyond range (425, 1319)
Jun 23 16:37:06 dsd-pc kernel: [   11.482999][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.483564][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 417 (reg 3402, index 16) beyond range (426, 1320)
Jun 23 16:37:06 dsd-pc kernel: [   11.483565][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.484130][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 417 (reg 3406, index 17) beyond range (426, 1320)
Jun 23 16:37:06 dsd-pc kernel: [   11.484131][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.484697][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 417 (reg 3411, index 18) beyond range (427, 1321)
Jun 23 16:37:06 dsd-pc kernel: [   11.484697][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.485263][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 417 (reg 3415, index 19) beyond range (428, 1321)
Jun 23 16:37:06 dsd-pc kernel: [   11.485264][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.485453][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 417 (reg 3417, index 20) beyond range (428, 1322)
Jun 23 16:37:06 dsd-pc kernel: [   11.485454][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.486023][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 417 (reg 3421, index 21) beyond range (428, 1322)
Jun 23 16:37:06 dsd-pc kernel: [   11.486024][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.486401][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 417 (reg 3424, index 22) beyond range (429, 1323)
Jun 23 16:37:06 dsd-pc kernel: [   11.486401][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.486967][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 417 (reg 3429, index 23) beyond range (429, 1323)
Jun 23 16:37:06 dsd-pc kernel: [   11.486968][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.487533][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 418 (reg 3434, index 24) beyond range (430, 1324)
Jun 23 16:37:06 dsd-pc kernel: [   11.487534][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.488570][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 418 (reg 3442, index 25) beyond range (431, 1325)
Jun 23 16:37:06 dsd-pc kernel: [   11.488571][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.489607][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 418 (reg 3450, index 26) beyond range (432, 1326)
Jun 23 16:37:06 dsd-pc kernel: [   11.489607][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.490644][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 418 (reg 3458, index 27) beyond range (433, 1327)
Jun 23 16:37:06 dsd-pc kernel: [   11.490645][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.490928][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 418 (reg 3461, index 28) beyond range (433, 1327)
Jun 23 16:37:06 dsd-pc kernel: [   11.490929][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.491494][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 418 (reg 3465, index 29) beyond range (434, 1328)
Jun 23 16:37:06 dsd-pc kernel: [   11.491495][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.492531][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 418 (reg 3474, index 30) beyond range (435, 1329)
Jun 23 16:37:06 dsd-pc kernel: [   11.492532][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.493567][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 418 (reg 3482, index 31) beyond range (436, 1330)
Jun 23 16:37:06 dsd-pc kernel: [   11.493568][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.494605][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 419 (reg 3490, index 32) beyond range (437, 1331)
Jun 23 16:37:06 dsd-pc kernel: [   11.494606][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.494889][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 419 (reg 3492, index 33) beyond range (437, 1331)
Jun 23 16:37:06 dsd-pc kernel: [   11.494890][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.495455][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 419 (reg 3497, index 34) beyond range (438, 1332)
Jun 23 16:37:06 dsd-pc kernel: [   11.495456][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.495645][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 419 (reg 3498, index 35) beyond range (438, 1332)
Jun 23 16:37:06 dsd-pc kernel: [   11.495646][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.496682][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 419 (reg 3507, index 36) beyond range (439, 1333)
Jun 23 16:37:06 dsd-pc kernel: [   11.496683][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.497719][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 419 (reg 3515, index 37) beyond range (440, 1334)
Jun 23 16:37:06 dsd-pc kernel: [   11.497719][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.498756][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 419 (reg 3523, index 38) beyond range (441, 1335)
Jun 23 16:37:06 dsd-pc kernel: [   11.498757][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.499040][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 419 (reg 3526, index 39) beyond range (441, 1335)
Jun 23 16:37:06 dsd-pc kernel: [   11.499040][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.499606][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 420 (reg 3530, index 40) beyond range (442, 1336)
Jun 23 16:37:06 dsd-pc kernel: [   11.499607][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.500643][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 420 (reg 3538, index 41) beyond range (443, 1337)
Jun 23 16:37:06 dsd-pc kernel: [   11.500643][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.501679][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 420 (reg 3547, index 42) beyond range (444, 1338)
Jun 23 16:37:06 dsd-pc kernel: [   11.501680][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.502717][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 420 (reg 3555, index 43) beyond range (445, 1339)
Jun 23 16:37:06 dsd-pc kernel: [   11.502718][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.503000][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 420 (reg 3557, index 44) beyond range (445, 1339)
Jun 23 16:37:06 dsd-pc kernel: [   11.503001][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.503567][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 420 (reg 3562, index 45) beyond range (446, 1340)
Jun 23 16:37:06 dsd-pc kernel: [   11.503567][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.504603][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 420 (reg 3570, index 46) beyond range (447, 1341)
Jun 23 16:37:06 dsd-pc kernel: [   11.504604][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.505640][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 420 (reg 3578, index 47) beyond range (448, 1342)
Jun 23 16:37:06 dsd-pc kernel: [   11.505641][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.512525][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 454 (reg 3633, index 4) beyond range (455, 1349)
Jun 23 16:37:06 dsd-pc kernel: [   11.512526][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.513561][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 454 (reg 3642, index 5) beyond range (456, 1350)
Jun 23 16:37:06 dsd-pc kernel: [   11.513562][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.514129][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 454 (reg 3646, index 6) beyond range (456, 1350)
Jun 23 16:37:06 dsd-pc kernel: [   11.514130][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.514506][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 454 (reg 3649, index 7) beyond range (457, 1351)
Jun 23 16:37:06 dsd-pc kernel: [   11.514507][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.515543][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 455 (reg 3658, index 8) beyond range (458, 1352)
Jun 23 16:37:06 dsd-pc kernel: [   11.515544][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.516580][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 455 (reg 3666, index 9) beyond range (459, 1353)
Jun 23 16:37:06 dsd-pc kernel: [   11.516580][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.517616][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 455 (reg 3674, index 10) beyond range (460, 1354)
Jun 23 16:37:06 dsd-pc kernel: [   11.517617][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.518656][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 455 (reg 3683, index 11) beyond range (461, 1355)
Jun 23 16:37:06 dsd-pc kernel: [   11.518657][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.519036][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 455 (reg 3686, index 12) beyond range (461, 1355)
Jun 23 16:37:06 dsd-pc kernel: [   11.519036][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.519602][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 455 (reg 3690, index 13) beyond range (462, 1356)
Jun 23 16:37:06 dsd-pc kernel: [   11.519603][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.519792][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 455 (reg 3692, index 14) beyond range (462, 1356)
Jun 23 16:37:06 dsd-pc kernel: [   11.519793][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.520829][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 455 (reg 3700, index 15) beyond range (463, 1357)
Jun 23 16:37:06 dsd-pc kernel: [   11.520830][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.521866][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 456 (reg 3708, index 16) beyond range (464, 1358)
Jun 23 16:37:06 dsd-pc kernel: [   11.521866][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.522903][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 456 (reg 3716, index 17) beyond range (465, 1359)
Jun 23 16:37:06 dsd-pc kernel: [   11.522904][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.522999][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 456 (reg 3717, index 18) beyond range (465, 1359)
Jun 23 16:37:06 dsd-pc kernel: [   11.523000][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.523565][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 456 (reg 3722, index 19) beyond range (466, 1360)
Jun 23 16:37:06 dsd-pc kernel: [   11.523565][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.524602][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 456 (reg 3730, index 20) beyond range (467, 1361)
Jun 23 16:37:06 dsd-pc kernel: [   11.524602][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.525638][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 456 (reg 3738, index 21) beyond range (468, 1362)
Jun 23 16:37:06 dsd-pc kernel: [   11.525639][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.526676][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 456 (reg 3747, index 22) beyond range (469, 1363)
Jun 23 16:37:06 dsd-pc kernel: [   11.526677][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.526960][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 456 (reg 3749, index 23) beyond range (469, 1363)
Jun 23 16:37:06 dsd-pc kernel: [   11.526960][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.526962][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 457 (reg 3749, index 24) beyond range (469, 1363)
Jun 23 16:37:06 dsd-pc kernel: [   11.526963][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.527527][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 457 (reg 3753, index 25) beyond range (470, 1364)
Jun 23 16:37:06 dsd-pc kernel: [   11.527528][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.528564][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 457 (reg 3762, index 26) beyond range (471, 1365)
Jun 23 16:37:06 dsd-pc kernel: [   11.528564][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.529600][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 457 (reg 3770, index 27) beyond range (472, 1366)
Jun 23 16:37:06 dsd-pc kernel: [   11.529601][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.530638][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 457 (reg 3778, index 28) beyond range (473, 1367)
Jun 23 16:37:06 dsd-pc kernel: [   11.530639][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.530921][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 457 (reg 3781, index 29) beyond range (473, 1367)
Jun 23 16:37:06 dsd-pc kernel: [   11.530922][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.531206][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 457 (reg 3783, index 30) beyond range (474, 1367)
Jun 23 16:37:06 dsd-pc kernel: [   11.531206][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.531490][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 457 (reg 3785, index 31) beyond range (474, 1368)
Jun 23 16:37:06 dsd-pc kernel: [   11.531491][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.532527][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 458 (reg 3793, index 32) beyond range (475, 1369)
Jun 23 16:37:06 dsd-pc kernel: [   11.532527][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.533566][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 458 (reg 3802, index 33) beyond range (476, 1370)
Jun 23 16:37:06 dsd-pc kernel: [   11.533566][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.534603][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 458 (reg 3810, index 34) beyond range (477, 1371)
Jun 23 16:37:06 dsd-pc kernel: [   11.534604][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.534887][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 458 (reg 3812, index 35) beyond range (477, 1371)
Jun 23 16:37:06 dsd-pc kernel: [   11.534887][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.534889][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 458 (reg 3812, index 36) beyond range (477, 1371)
Jun 23 16:37:06 dsd-pc kernel: [   11.534890][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.535924][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 458 (reg 3821, index 37) beyond range (478, 1372)
Jun 23 16:37:06 dsd-pc kernel: [   11.535925][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.536961][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 458 (reg 3829, index 38) beyond range (479, 1373)
Jun 23 16:37:06 dsd-pc kernel: [   11.536962][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.537999][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 458 (reg 3837, index 39) beyond range (480, 1374)
Jun 23 16:37:06 dsd-pc kernel: [   11.538000][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.539035][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 459 (reg 3846, index 40) beyond range (481, 1375)
Jun 23 16:37:06 dsd-pc kernel: [   11.539036][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.539601][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 459 (reg 3850, index 41) beyond range (482, 1376)
Jun 23 16:37:06 dsd-pc kernel: [   11.539602][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.540638][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 459 (reg 3858, index 42) beyond range (483, 1377)
Jun 23 16:37:06 dsd-pc kernel: [   11.540639][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.541675][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 459 (reg 3867, index 43) beyond range (484, 1378)
Jun 23 16:37:06 dsd-pc kernel: [   11.541675][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.542712][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 459 (reg 3875, index 44) beyond range (485, 1379)
Jun 23 16:37:06 dsd-pc kernel: [   11.542713][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.542996][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 459 (reg 3877, index 45) beyond range (485, 1379)
Jun 23 16:37:06 dsd-pc kernel: [   11.542997][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.542998][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 459 (reg 3877, index 46) beyond range (485, 1379)
Jun 23 16:37:06 dsd-pc kernel: [   11.542999][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.543563][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 459 (reg 3882, index 47) beyond range (486, 1380)
Jun 23 16:37:06 dsd-pc kernel: [   11.543564][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.551486][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 493 (reg 3945, index 5) beyond range (494, 1388)
Jun 23 16:37:06 dsd-pc kernel: [   11.551487][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.552522][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 493 (reg 3953, index 6) beyond range (495, 1389)
Jun 23 16:37:06 dsd-pc kernel: [   11.552523][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.553559][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 493 (reg 3962, index 7) beyond range (496, 1390)
Jun 23 16:37:06 dsd-pc kernel: [   11.553559][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.554596][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 494 (reg 3970, index 8) beyond range (497, 1391)
Jun 23 16:37:06 dsd-pc kernel: [   11.554597][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.555068][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 494 (reg 3974, index 9) beyond range (497, 1391)
Jun 23 16:37:06 dsd-pc kernel: [   11.555069][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.555635][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 494 (reg 3978, index 10) beyond range (498, 1392)
Jun 23 16:37:06 dsd-pc kernel: [   11.555635][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.556671][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 494 (reg 3987, index 11) beyond range (499, 1393)
Jun 23 16:37:06 dsd-pc kernel: [   11.556672][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.557708][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 494 (reg 3995, index 12) beyond range (500, 1394)
Jun 23 16:37:06 dsd-pc kernel: [   11.557708][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.558745][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 494 (reg 4003, index 13) beyond range (501, 1395)
Jun 23 16:37:06 dsd-pc kernel: [   11.558747][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.559029][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 494 (reg 4006, index 14) beyond range (501, 1395)
Jun 23 16:37:06 dsd-pc kernel: [   11.559030][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.559032][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 494 (reg 4006, index 15) beyond range (501, 1395)
Jun 23 16:37:06 dsd-pc kernel: [   11.559032][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.559596][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 495 (reg 4010, index 16) beyond range (502, 1396)
Jun 23 16:37:06 dsd-pc kernel: [   11.559597][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.559787][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 495 (reg 4012, index 17) beyond range (502, 1396)
Jun 23 16:37:06 dsd-pc kernel: [   11.559787][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.560823][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 495 (reg 4020, index 18) beyond range (503, 1397)
Jun 23 16:37:06 dsd-pc kernel: [   11.560824][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.561860][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 495 (reg 4028, index 19) beyond range (504, 1398)
Jun 23 16:37:06 dsd-pc kernel: [   11.561860][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.562897][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 495 (reg 4036, index 20) beyond range (505, 1399)
Jun 23 16:37:06 dsd-pc kernel: [   11.562898][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.562993][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 495 (reg 4037, index 21) beyond range (505, 1399)
Jun 23 16:37:06 dsd-pc kernel: [   11.562993][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.563559][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 495 (reg 4042, index 22) beyond range (506, 1400)
Jun 23 16:37:06 dsd-pc kernel: [   11.563560][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.564596][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 495 (reg 4050, index 23) beyond range (507, 1401)
Jun 23 16:37:06 dsd-pc kernel: [   11.564597][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.565633][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 496 (reg 4058, index 24) beyond range (508, 1402)
Jun 23 16:37:06 dsd-pc kernel: [   11.565633][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.566670][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 496 (reg 4067, index 25) beyond range (509, 1403)
Jun 23 16:37:06 dsd-pc kernel: [   11.566671][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.566954][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 496 (reg 4069, index 26) beyond range (509, 1403)
Jun 23 16:37:06 dsd-pc kernel: [   11.566955][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.567332][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 496 (reg 4072, index 27) beyond range (510, 1404)
Jun 23 16:37:06 dsd-pc kernel: [   11.567332][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.567428][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 496 (reg 4073, index 28) beyond range (510, 1404)
Jun 23 16:37:06 dsd-pc kernel: [   11.567429][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.567430][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 496 (reg 4073, index 29) beyond range (510, 1404)
Jun 23 16:37:06 dsd-pc kernel: [   11.567431][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.567433][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 496 (reg 4073, index 30) beyond range (510, 1404)
Jun 23 16:37:06 dsd-pc kernel: [   11.567433][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.567435][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 496 (reg 4073, index 31) beyond range (510, 1404)
Jun 23 16:37:06 dsd-pc kernel: [   11.567436][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.567437][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 497 (reg 4073, index 32) beyond range (510, 1404)
Jun 23 16:37:06 dsd-pc kernel: [   11.567438][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.567440][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 497 (reg 4073, index 33) beyond range (510, 1404)
Jun 23 16:37:06 dsd-pc kernel: [   11.567440][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.567442][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 497 (reg 4073, index 34) beyond range (510, 1404)
Jun 23 16:37:06 dsd-pc kernel: [   11.567442][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.567444][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 497 (reg 4073, index 35) beyond range (510, 1404)
Jun 23 16:37:06 dsd-pc kernel: [   11.567445][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.567446][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 497 (reg 4073, index 36) beyond range (510, 1404)
Jun 23 16:37:06 dsd-pc kernel: [   11.567447][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.567449][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 497 (reg 4073, index 37) beyond range (510, 1404)
Jun 23 16:37:06 dsd-pc kernel: [   11.567449][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.567451][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 497 (reg 4073, index 38) beyond range (510, 1404)
Jun 23 16:37:06 dsd-pc kernel: [   11.567452][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.567453][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 497 (reg 4073, index 39) beyond range (510, 1404)
Jun 23 16:37:06 dsd-pc kernel: [   11.567454][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.567455][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 498 (reg 4073, index 40) beyond range (510, 1404)
Jun 23 16:37:06 dsd-pc kernel: [   11.567456][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.567458][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 498 (reg 4073, index 41) beyond range (510, 1404)
Jun 23 16:37:06 dsd-pc kernel: [   11.567458][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.567460][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 498 (reg 4073, index 42) beyond range (510, 1404)
Jun 23 16:37:06 dsd-pc kernel: [   11.567461][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.567462][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 498 (reg 4073, index 43) beyond range (510, 1404)
Jun 23 16:37:06 dsd-pc kernel: [   11.567463][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.567464][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 498 (reg 4073, index 44) beyond range (510, 1404)
Jun 23 16:37:06 dsd-pc kernel: [   11.567465][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.567467][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 498 (reg 4073, index 45) beyond range (510, 1404)
Jun 23 16:37:06 dsd-pc kernel: [   11.567467][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc kernel: [   11.567469][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 498 (reg 4073, index 46) beyond range (510, 1404)
Jun 23 16:37:06 dsd-pc kernel: [   11.567470][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:06 dsd-pc ukui-session: [ukui-session] startup!!
Jun 23 16:37:06 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:06 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:06 dsd-pc systemd-logind: [Support hibernate]
Jun 23 16:37:06 dsd-pc systemd-logind: [kysdk-conf2] _get_schemas ->  :open /root/.config/kylin-config/user.db failed : unable to open database file! try to open /etc/kylin-config/user.db.
Jun 23 16:37:06 dsd-pc systemd-logind: [kysdk-conf2] kdk_conf2_get_value -> Get value start
Jun 23 16:37:06 dsd-pc systemd-logind: [kysdk-conf2] kdk_conf2_get_value -> Get value end
Jun 23 16:37:06 dsd-pc systemd-logind: [kysdk-conf2] kdk_conf2_get_value -> Get value start
Jun 23 16:37:06 dsd-pc systemd-logind: [kysdk-conf2] kdk_conf2_get_value -> Get value end
Jun 23 16:37:06 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Activating service name='ca.desrt.dconf' requested by ':1.8' (uid=1000 pid=2540 comm="ukui-session " label="")
Jun 23 16:37:06 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Successfully activated service 'ca.desrt.dconf'
Jun 23 16:37:06 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Activating service name='org.freedesktop.Notifications' requested by ':1.10' (uid=1000 pid=2792 comm="/usr/bin/fcitx -d " label="")
Jun 23 16:37:06 dsd-pc : DEBUG [ukui-settings-daemon] save-param->save-screen.cpp initXparam line:738   initXparam success
Jun 23 16:37:06 dsd-pc : DEBUG [ukui-settings-daemon] save-param->save-screen.cpp getKscreenConfigFullPathInLightDM line:1087  use:/usr/share/ukui-settings-daemon/config/screen/realtime/934f13c6bf66053fc4d0e9b584271a8c
Jun 23 16:37:06 dsd-pc : DEBUG [ukui-settings-daemon] save-param->save-screen.cpp readKscreenConfigAndSetItWithX line:475   ready open dsd's screen config>/usr/share/ukui-settings-daemon/config/screen/realtime/934f13c6bf66053fc4d0e9b584271a8c
Jun 23 16:37:06 dsd-pc : DEBUG [ukui-settings-daemon] save-param->save-screen.cpp getModeId line:1170  find HDMI-1 mode:3840x2160 id:69 refresh:30.000000
Jun 23 16:37:06 dsd-pc : DEBUG [ukui-settings-daemon] save-param->lightdm-config-helper.cpp setConfigToXorg line:60    icursorSize:24 cursorTheme:dark-sense,scaleFactor:1.500000
Jun 23 16:37:06 dsd-pc : DEBUG [ukui-settings-daemon] save-param->main.cpp QAPP line:128   goingd down
Jun 23 16:37:07 dsd-pc : DEBUG [ukui-settings-daemon] save-param->../../common/touch-calibrate.cpp getScreenList line:207   HDMI-1  width : 621 height : 341
Jun 23 16:37:07 dsd-pc : DEBUG [ukui-settings-daemon] save-param->main.cpp operator() line:95    get calibrateFinished signal.....
Jun 23 16:37:07 dsd-pc secRiskBox: service init != 0 Language:zh_CN
Jun 23 16:37:07 dsd-pc systemd[2496]: Reached target UKUI Session.
Jun 23 16:37:07 dsd-pc systemd[2496]: Reached target Current graphical user session.
Jun 23 16:37:07 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Successfully activated service 'org.freedesktop.Notifications'
Jun 23 16:37:07 dsd-pc com.ksc.vulnerability[2840]: 错误:1 http://archive2.kylinos.cn/deb/kylin/production/PART-V10-SP1/custom/partner/V10-SP1 default InRelease
Jun 23 16:37:07 dsd-pc com.ksc.vulnerability[2840]:   暂时不能解析域名“archive2.kylinos.cn”
Jun 23 16:37:07 dsd-pc com.ksc.vulnerability[2840]: 错误:2 http://archive.kylinos.cn/kylin/KYLIN-ALL 10.1-kylin InRelease
Jun 23 16:37:07 dsd-pc com.ksc.vulnerability[2840]:   暂时不能解析域名“archive.kylinos.cn”
Jun 23 16:37:07 dsd-pc com.ksc.vulnerability[2840]: 错误:3 http://archive.kylinos.cn/kylin/KYLIN-ALL 10.1-kylin-2503 InRelease
Jun 23 16:37:07 dsd-pc com.ksc.vulnerability[2840]:   暂时不能解析域名“archive.kylinos.cn”
Jun 23 16:37:07 dsd-pc com.ksc.vulnerability[2840]: 错误:4 http://archive.kylinos.cn/kylin/KYLIN-ALL 10.1-2503-bugfix InRelease
Jun 23 16:37:07 dsd-pc com.ksc.vulnerability[2840]:   暂时不能解析域名“archive.kylinos.cn”
Jun 23 16:37:07 dsd-pc kernel: [   12.054239][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 996 (reg 7967, index 28) beyond range (997, 1890)
Jun 23 16:37:07 dsd-pc kernel: [   12.054242][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.054895][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 996 (reg 7972, index 29) beyond range (997, 1891)
Jun 23 16:37:07 dsd-pc kernel: [   12.054897][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.054899][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 996 (reg 7972, index 30) beyond range (997, 1891)
Jun 23 16:37:07 dsd-pc kernel: [   12.054900][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.055935][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 997 (reg 7981, index 31) beyond range (998, 1892)
Jun 23 16:37:07 dsd-pc kernel: [   12.055936][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.056973][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 997 (reg 7989, index 32) beyond range (999, 1893)
Jun 23 16:37:07 dsd-pc kernel: [   12.056974][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.058012][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 997 (reg 7997, index 33) beyond range (1000, 1894)
Jun 23 16:37:07 dsd-pc kernel: [   12.058013][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.059051][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 997 (reg 8006, index 34) beyond range (1001, 1895)
Jun 23 16:37:07 dsd-pc kernel: [   12.059052][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.060088][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 997 (reg 8014, index 35) beyond range (1002, 1896)
Jun 23 16:37:07 dsd-pc kernel: [   12.060090][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.061127][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 997 (reg 8022, index 36) beyond range (1003, 1897)
Jun 23 16:37:07 dsd-pc kernel: [   12.061128][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.062166][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 997 (reg 8031, index 37) beyond range (1005, 1898)
Jun 23 16:37:07 dsd-pc kernel: [   12.062167][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.062923][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 997 (reg 8037, index 38) beyond range (1005, 1899)
Jun 23 16:37:07 dsd-pc kernel: [   12.062924][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.063961][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 998 (reg 8045, index 39) beyond range (1006, 1900)
Jun 23 16:37:07 dsd-pc kernel: [   12.063962][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.064999][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 998 (reg 8053, index 40) beyond range (1007, 1901)
Jun 23 16:37:07 dsd-pc kernel: [   12.065000][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.066038][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 998 (reg 8062, index 41) beyond range (1008, 1902)
Jun 23 16:37:07 dsd-pc kernel: [   12.066039][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.066983][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 998 (reg 8069, index 42) beyond range (1009, 1903)
Jun 23 16:37:07 dsd-pc kernel: [   12.066985][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.067550][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 998 (reg 8074, index 43) beyond range (1010, 1904)
Jun 23 16:37:07 dsd-pc kernel: [   12.067552][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.068117][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 998 (reg 8078, index 44) beyond range (1010, 1904)
Jun 23 16:37:07 dsd-pc kernel: [   12.068118][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.068495][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 998 (reg 8081, index 45) beyond range (1011, 1905)
Jun 23 16:37:07 dsd-pc kernel: [   12.068495][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.069531][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 998 (reg 8090, index 46) beyond range (1012, 1906)
Jun 23 16:37:07 dsd-pc kernel: [   12.069532][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.070568][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 999 (reg 8098, index 47) beyond range (1013, 1907)
Jun 23 16:37:07 dsd-pc kernel: [   12.070569][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.080106][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1021 (reg 8174, index 5) beyond range (1022, 1916)
Jun 23 16:37:07 dsd-pc kernel: [   12.080108][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.081145][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1021 (reg 8182, index 6) beyond range (1023, 1917)
Jun 23 16:37:07 dsd-pc kernel: [   12.081146][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.082184][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1021 (reg 8191, index 7) beyond range (1025, 1918)
Jun 23 16:37:07 dsd-pc kernel: [   12.082185][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.083036][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1022 (reg 8198, index 8) beyond range (1025, 1919)
Jun 23 16:37:07 dsd-pc kernel: [   12.083038][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.083040][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1022 (reg 8198, index 9) beyond range (1025, 1919)
Jun 23 16:37:07 dsd-pc kernel: [   12.083041][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.084076][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1022 (reg 8206, index 10) beyond range (1026, 1920)
Jun 23 16:37:07 dsd-pc kernel: [   12.084077][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.085113][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1022 (reg 8214, index 11) beyond range (1027, 1921)
Jun 23 16:37:07 dsd-pc kernel: [   12.085117][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.086150][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1022 (reg 8222, index 12) beyond range (1028, 1922)
Jun 23 16:37:07 dsd-pc kernel: [   12.086151][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.086998][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1022 (reg 8229, index 13) beyond range (1029, 1923)
Jun 23 16:37:07 dsd-pc kernel: [   12.086999][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.087001][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1022 (reg 8229, index 14) beyond range (1029, 1923)
Jun 23 16:37:07 dsd-pc kernel: [   12.087002][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.087005][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1022 (reg 8229, index 15) beyond range (1029, 1923)
Jun 23 16:37:07 dsd-pc kernel: [   12.087007][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.088041][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1023 (reg 8238, index 16) beyond range (1030, 1924)
Jun 23 16:37:07 dsd-pc kernel: [   12.088042][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.089079][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1023 (reg 8246, index 17) beyond range (1031, 1925)
Jun 23 16:37:07 dsd-pc kernel: [   12.089080][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.090118][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1023 (reg 8254, index 18) beyond range (1032, 1926)
Jun 23 16:37:07 dsd-pc kernel: [   12.090119][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.090969][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1023 (reg 8261, index 19) beyond range (1033, 1927)
Jun 23 16:37:07 dsd-pc kernel: [   12.090970][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.092008][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1023 (reg 8269, index 20) beyond range (1034, 1928)
Jun 23 16:37:07 dsd-pc kernel: [   12.092009][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.093043][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1023 (reg 8278, index 21) beyond range (1035, 1929)
Jun 23 16:37:07 dsd-pc kernel: [   12.093045][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.094082][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1023 (reg 8286, index 22) beyond range (1036, 1930)
Jun 23 16:37:07 dsd-pc kernel: [   12.094083][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.094930][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1023 (reg 8293, index 23) beyond range (1037, 1931)
Jun 23 16:37:07 dsd-pc kernel: [   12.094931][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.095970][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1024 (reg 8301, index 24) beyond range (1038, 1932)
Jun 23 16:37:07 dsd-pc kernel: [   12.095971][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.097006][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1024 (reg 8309, index 25) beyond range (1039, 1933)
Jun 23 16:37:07 dsd-pc kernel: [   12.097007][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.098045][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1024 (reg 8318, index 26) beyond range (1040, 1934)
Jun 23 16:37:07 dsd-pc kernel: [   12.098046][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.098895][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1024 (reg 8324, index 27) beyond range (1041, 1935)
Jun 23 16:37:07 dsd-pc kernel: [   12.098896][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.098899][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1024 (reg 8324, index 28) beyond range (1041, 1935)
Jun 23 16:37:07 dsd-pc kernel: [   12.098900][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.099936][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1024 (reg 8333, index 29) beyond range (1042, 1936)
Jun 23 16:37:07 dsd-pc kernel: [   12.099936][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.100974][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1024 (reg 8341, index 30) beyond range (1043, 1937)
Jun 23 16:37:07 dsd-pc kernel: [   12.100975][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.102013][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1024 (reg 8349, index 31) beyond range (1044, 1938)
Jun 23 16:37:07 dsd-pc kernel: [   12.102014][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.103052][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1025 (reg 8358, index 32) beyond range (1045, 1939)
Jun 23 16:37:07 dsd-pc kernel: [   12.103053][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.104088][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1025 (reg 8366, index 33) beyond range (1046, 1940)
Jun 23 16:37:07 dsd-pc kernel: [   12.104089][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.104185][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1025 (reg 8367, index 34) beyond range (1047, 1940)
Jun 23 16:37:07 dsd-pc kernel: [   12.104185][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.104751][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1025 (reg 8371, index 35) beyond range (1047, 1941)
Jun 23 16:37:07 dsd-pc kernel: [   12.104751][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.105317][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1025 (reg 8376, index 36) beyond range (1048, 1942)
Jun 23 16:37:07 dsd-pc kernel: [   12.105318][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.105883][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1025 (reg 8380, index 37) beyond range (1048, 1942)
Jun 23 16:37:07 dsd-pc kernel: [   12.105884][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.106450][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1025 (reg 8385, index 38) beyond range (1049, 1943)
Jun 23 16:37:07 dsd-pc kernel: [   12.106450][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.106452][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1025 (reg 8385, index 39) beyond range (1049, 1943)
Jun 23 16:37:07 dsd-pc kernel: [   12.106453][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.106455][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1026 (reg 8385, index 40) beyond range (1049, 1943)
Jun 23 16:37:07 dsd-pc kernel: [   12.106456][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.107492][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1026 (reg 8393, index 41) beyond range (1050, 1944)
Jun 23 16:37:07 dsd-pc kernel: [   12.107493][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.108528][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1026 (reg 8401, index 42) beyond range (1051, 1945)
Jun 23 16:37:07 dsd-pc kernel: [   12.108529][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.109564][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1026 (reg 8410, index 43) beyond range (1052, 1946)
Jun 23 16:37:07 dsd-pc kernel: [   12.109566][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.110602][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1026 (reg 8418, index 44) beyond range (1053, 1947)
Jun 23 16:37:07 dsd-pc kernel: [   12.110603][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.110885][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1026 (reg 8420, index 45) beyond range (1053, 1947)
Jun 23 16:37:07 dsd-pc kernel: [   12.110887][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.111922][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1026 (reg 8429, index 46) beyond range (1054, 1948)
Jun 23 16:37:07 dsd-pc kernel: [   12.111923][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.112961][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1026 (reg 8437, index 47) beyond range (1055, 1949)
Jun 23 16:37:07 dsd-pc kernel: [   12.112962][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.120536][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1062 (reg 8498, index 11) beyond range (1063, 1957)
Jun 23 16:37:07 dsd-pc kernel: [   12.120537][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.121102][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1062 (reg 8502, index 12) beyond range (1063, 1957)
Jun 23 16:37:07 dsd-pc kernel: [   12.121103][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.121668][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1062 (reg 8507, index 13) beyond range (1064, 1958)
Jun 23 16:37:07 dsd-pc kernel: [   12.121669][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.121858][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1062 (reg 8508, index 14) beyond range (1064, 1958)
Jun 23 16:37:07 dsd-pc kernel: [   12.121859][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.122425][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1062 (reg 8513, index 15) beyond range (1065, 1959)
Jun 23 16:37:07 dsd-pc kernel: [   12.122427][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.122993][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1063 (reg 8517, index 16) beyond range (1065, 1959)
Jun 23 16:37:07 dsd-pc kernel: [   12.122994][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.123183][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1063 (reg 8519, index 17) beyond range (1066, 1959)
Jun 23 16:37:07 dsd-pc kernel: [   12.123184][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.123750][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1063 (reg 8523, index 18) beyond range (1066, 1960)
Jun 23 16:37:07 dsd-pc kernel: [   12.123751][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.124128][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1063 (reg 8526, index 19) beyond range (1066, 1960)
Jun 23 16:37:07 dsd-pc kernel: [   12.124129][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.124694][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1063 (reg 8531, index 20) beyond range (1067, 1961)
Jun 23 16:37:07 dsd-pc kernel: [   12.124695][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.125260][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1063 (reg 8535, index 21) beyond range (1068, 1961)
Jun 23 16:37:07 dsd-pc kernel: [   12.125261][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.125827][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1063 (reg 8540, index 22) beyond range (1068, 1962)
Jun 23 16:37:07 dsd-pc kernel: [   12.125828][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.126394][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1063 (reg 8544, index 23) beyond range (1069, 1963)
Jun 23 16:37:07 dsd-pc kernel: [   12.126395][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.127431][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1064 (reg 8553, index 24) beyond range (1070, 1964)
Jun 23 16:37:07 dsd-pc kernel: [   12.127432][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.128472][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1064 (reg 8561, index 25) beyond range (1071, 1965)
Jun 23 16:37:07 dsd-pc kernel: [   12.128473][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.129513][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1064 (reg 8569, index 26) beyond range (1072, 1966)
Jun 23 16:37:07 dsd-pc kernel: [   12.129514][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.130554][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1064 (reg 8578, index 27) beyond range (1073, 1967)
Jun 23 16:37:07 dsd-pc kernel: [   12.130555][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.130934][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1064 (reg 8581, index 28) beyond range (1073, 1967)
Jun 23 16:37:07 dsd-pc kernel: [   12.130936][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.130939][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1064 (reg 8581, index 29) beyond range (1073, 1967)
Jun 23 16:37:07 dsd-pc kernel: [   12.130939][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.131503][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1064 (reg 8585, index 30) beyond range (1074, 1968)
Jun 23 16:37:07 dsd-pc kernel: [   12.131504][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.132069][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1064 (reg 8590, index 31) beyond range (1074, 1968)
Jun 23 16:37:07 dsd-pc kernel: [   12.132070][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.132260][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1065 (reg 8591, index 32) beyond range (1075, 1968)
Jun 23 16:37:07 dsd-pc kernel: [   12.132262][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.133296][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1065 (reg 8600, index 33) beyond range (1076, 1970)
Jun 23 16:37:07 dsd-pc kernel: [   12.133297][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.134334][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1065 (reg 8608, index 34) beyond range (1077, 1971)
Jun 23 16:37:07 dsd-pc kernel: [   12.134335][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.134902][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1065 (reg 8612, index 35) beyond range (1077, 1971)
Jun 23 16:37:07 dsd-pc kernel: [   12.134903][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.135938][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1065 (reg 8621, index 36) beyond range (1078, 1972)
Jun 23 16:37:07 dsd-pc kernel: [   12.135939][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.136223][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1065 (reg 8623, index 37) beyond range (1079, 1972)
Jun 23 16:37:07 dsd-pc kernel: [   12.136224][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.136789][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1065 (reg 8628, index 38) beyond range (1079, 1973)
Jun 23 16:37:07 dsd-pc kernel: [   12.136790][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.136979][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1065 (reg 8629, index 39) beyond range (1079, 1973)
Jun 23 16:37:07 dsd-pc kernel: [   12.136980][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.138016][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1066 (reg 8637, index 40) beyond range (1080, 1974)
Jun 23 16:37:07 dsd-pc kernel: [   12.138017][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.139052][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1066 (reg 8646, index 41) beyond range (1081, 1975)
Jun 23 16:37:07 dsd-pc kernel: [   12.139053][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.139056][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1066 (reg 8646, index 42) beyond range (1081, 1975)
Jun 23 16:37:07 dsd-pc kernel: [   12.139057][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.140091][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1066 (reg 8654, index 43) beyond range (1082, 1976)
Jun 23 16:37:07 dsd-pc kernel: [   12.140092][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.141131][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1066 (reg 8662, index 44) beyond range (1083, 1977)
Jun 23 16:37:07 dsd-pc kernel: [   12.141133][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.142165][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1066 (reg 8671, index 45) beyond range (1085, 1978)
Jun 23 16:37:07 dsd-pc kernel: [   12.142166][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.143013][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1066 (reg 8677, index 46) beyond range (1085, 1979)
Jun 23 16:37:07 dsd-pc kernel: [   12.143014][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.148686][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1090 (reg 8723, index 6) beyond range (1091, 1985)
Jun 23 16:37:07 dsd-pc kernel: [   12.148687][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.149253][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1090 (reg 8727, index 7) beyond range (1092, 1985)
Jun 23 16:37:07 dsd-pc kernel: [   12.149254][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.149442][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1091 (reg 8729, index 8) beyond range (1092, 1986)
Jun 23 16:37:07 dsd-pc kernel: [   12.149443][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.149632][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1091 (reg 8730, index 9) beyond range (1092, 1986)
Jun 23 16:37:07 dsd-pc kernel: [   12.149633][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.150669][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1091 (reg 8739, index 10) beyond range (1093, 1987)
Jun 23 16:37:07 dsd-pc kernel: [   12.150670][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.150953][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1091 (reg 8741, index 11) beyond range (1093, 1987)
Jun 23 16:37:07 dsd-pc kernel: [   12.150954][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.151990][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1091 (reg 8749, index 12) beyond range (1094, 1988)
Jun 23 16:37:07 dsd-pc kernel: [   12.151991][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.153029][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1091 (reg 8758, index 13) beyond range (1095, 1989)
Jun 23 16:37:07 dsd-pc kernel: [   12.153030][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.154068][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1091 (reg 8766, index 14) beyond range (1096, 1990)
Jun 23 16:37:07 dsd-pc kernel: [   12.154069][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.154918][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1091 (reg 8773, index 15) beyond range (1097, 1991)
Jun 23 16:37:07 dsd-pc kernel: [   12.154919][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.155955][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1092 (reg 8781, index 16) beyond range (1098, 1992)
Jun 23 16:37:07 dsd-pc kernel: [   12.155956][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.156992][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1092 (reg 8789, index 17) beyond range (1099, 1993)
Jun 23 16:37:07 dsd-pc kernel: [   12.156993][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.158028][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1092 (reg 8797, index 18) beyond range (1100, 1994)
Jun 23 16:37:07 dsd-pc kernel: [   12.158029][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.159065][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1092 (reg 8806, index 19) beyond range (1101, 1995)
Jun 23 16:37:07 dsd-pc kernel: [   12.159066][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.160101][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1092 (reg 8814, index 20) beyond range (1102, 1996)
Jun 23 16:37:07 dsd-pc kernel: [   12.160102][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.161140][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1092 (reg 8822, index 21) beyond range (1103, 1997)
Jun 23 16:37:07 dsd-pc kernel: [   12.161141][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.162179][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1092 (reg 8831, index 22) beyond range (1105, 1998)
Jun 23 16:37:07 dsd-pc kernel: [   12.162180][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.163030][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1092 (reg 8838, index 23) beyond range (1105, 1999)
Jun 23 16:37:07 dsd-pc kernel: [   12.163031][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.164067][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1093 (reg 8846, index 24) beyond range (1106, 2000)
Jun 23 16:37:07 dsd-pc kernel: [   12.164068][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.165106][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1093 (reg 8854, index 25) beyond range (1107, 2001)
Jun 23 16:37:07 dsd-pc kernel: [   12.165107][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.166144][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1093 (reg 8862, index 26) beyond range (1108, 2002)
Jun 23 16:37:07 dsd-pc kernel: [   12.166145][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.166995][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1093 (reg 8869, index 27) beyond range (1109, 2003)
Jun 23 16:37:07 dsd-pc kernel: [   12.166996][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.168034][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1093 (reg 8878, index 28) beyond range (1110, 2004)
Jun 23 16:37:07 dsd-pc kernel: [   12.168035][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.169070][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1093 (reg 8886, index 29) beyond range (1111, 2005)
Jun 23 16:37:07 dsd-pc kernel: [   12.169071][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.170105][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1093 (reg 8894, index 30) beyond range (1112, 2006)
Jun 23 16:37:07 dsd-pc kernel: [   12.170106][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.170954][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1093 (reg 8901, index 31) beyond range (1113, 2007)
Jun 23 16:37:07 dsd-pc kernel: [   12.170955][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.171991][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1094 (reg 8909, index 32) beyond range (1114, 2008)
Jun 23 16:37:07 dsd-pc kernel: [   12.171991][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.173029][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1094 (reg 8918, index 33) beyond range (1115, 2009)
Jun 23 16:37:07 dsd-pc kernel: [   12.173030][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.174068][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1094 (reg 8926, index 34) beyond range (1116, 2010)
Jun 23 16:37:07 dsd-pc kernel: [   12.174069][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.174920][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1094 (reg 8933, index 35) beyond range (1117, 2011)
Jun 23 16:37:07 dsd-pc kernel: [   12.174921][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.175955][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1094 (reg 8941, index 36) beyond range (1118, 2012)
Jun 23 16:37:07 dsd-pc kernel: [   12.175957][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.176992][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1094 (reg 8949, index 37) beyond range (1119, 2013)
Jun 23 16:37:07 dsd-pc kernel: [   12.176993][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.178029][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1094 (reg 8958, index 38) beyond range (1120, 2014)
Jun 23 16:37:07 dsd-pc kernel: [   12.178030][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.179065][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1094 (reg 8966, index 39) beyond range (1121, 2015)
Jun 23 16:37:07 dsd-pc kernel: [   12.179066][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.180102][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1095 (reg 8974, index 40) beyond range (1122, 2016)
Jun 23 16:37:07 dsd-pc kernel: [   12.180103][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.181140][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1095 (reg 8982, index 41) beyond range (1123, 2017)
Jun 23 16:37:07 dsd-pc kernel: [   12.181141][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.182180][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1095 (reg 8991, index 42) beyond range (1125, 2018)
Jun 23 16:37:07 dsd-pc kernel: [   12.182181][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.183030][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1095 (reg 8998, index 43) beyond range (1125, 2019)
Jun 23 16:37:07 dsd-pc kernel: [   12.183031][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.184067][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1095 (reg 9006, index 44) beyond range (1126, 2020)
Jun 23 16:37:07 dsd-pc kernel: [   12.184068][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.185104][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1095 (reg 9014, index 45) beyond range (1127, 2021)
Jun 23 16:37:07 dsd-pc kernel: [   12.185105][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.186141][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1095 (reg 9022, index 46) beyond range (1128, 2022)
Jun 23 16:37:07 dsd-pc kernel: [   12.186142][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.186988][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1095 (reg 9029, index 47) beyond range (1129, 2023)
Jun 23 16:37:07 dsd-pc kernel: [   12.186989][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.193412][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1135 (reg 9081, index 3) beyond range (1136, 2030)
Jun 23 16:37:07 dsd-pc kernel: [   12.193414][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.194447][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1135 (reg 9089, index 4) beyond range (1137, 2031)
Jun 23 16:37:07 dsd-pc kernel: [   12.194449][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.195014][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1135 (reg 9093, index 5) beyond range (1137, 2031)
Jun 23 16:37:07 dsd-pc kernel: [   12.195015][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.195581][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1135 (reg 9098, index 6) beyond range (1138, 2032)
Jun 23 16:37:07 dsd-pc kernel: [   12.195582][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.195959][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1135 (reg 9101, index 7) beyond range (1138, 2032)
Jun 23 16:37:07 dsd-pc kernel: [   12.195960][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.196996][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1136 (reg 9109, index 8) beyond range (1139, 2033)
Jun 23 16:37:07 dsd-pc kernel: [   12.196997][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.198035][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1136 (reg 9118, index 9) beyond range (1140, 2034)
Jun 23 16:37:07 dsd-pc kernel: [   12.198036][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.198979][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1136 (reg 9125, index 10) beyond range (1141, 2035)
Jun 23 16:37:07 dsd-pc kernel: [   12.198980][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.199546][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1136 (reg 9130, index 11) beyond range (1142, 2036)
Jun 23 16:37:07 dsd-pc kernel: [   12.199547][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.199737][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1136 (reg 9131, index 12) beyond range (1142, 2036)
Jun 23 16:37:07 dsd-pc kernel: [   12.199737][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.200773][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1136 (reg 9139, index 13) beyond range (1143, 2037)
Jun 23 16:37:07 dsd-pc kernel: [   12.200774][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.201809][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1136 (reg 9148, index 14) beyond range (1144, 2038)
Jun 23 16:37:07 dsd-pc kernel: [   12.201810][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.202848][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1136 (reg 9156, index 15) beyond range (1145, 2039)
Jun 23 16:37:07 dsd-pc kernel: [   12.202849][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.202945][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1137 (reg 9157, index 16) beyond range (1145, 2039)
Jun 23 16:37:07 dsd-pc kernel: [   12.202945][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.203514][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1137 (reg 9161, index 17) beyond range (1146, 2040)
Jun 23 16:37:07 dsd-pc kernel: [   12.203515][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.204550][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1137 (reg 9170, index 18) beyond range (1147, 2041)
Jun 23 16:37:07 dsd-pc kernel: [   12.204551][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.205587][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1137 (reg 9178, index 19) beyond range (1148, 2042)
Jun 23 16:37:07 dsd-pc kernel: [   12.205588][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.206624][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1137 (reg 9186, index 20) beyond range (1149, 2043)
Jun 23 16:37:07 dsd-pc kernel: [   12.206625][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.206908][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1137 (reg 9189, index 21) beyond range (1149, 2043)
Jun 23 16:37:07 dsd-pc kernel: [   12.206909][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.207475][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1137 (reg 9193, index 22) beyond range (1150, 2044)
Jun 23 16:37:07 dsd-pc kernel: [   12.207476][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.208042][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1137 (reg 9198, index 23) beyond range (1150, 2044)
Jun 23 16:37:07 dsd-pc kernel: [   12.208042][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.209078][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1138 (reg 9206, index 24) beyond range (1151, 2045)
Jun 23 16:37:07 dsd-pc kernel: [   12.209079][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.210117][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1138 (reg 9214, index 25) beyond range (1152, 2046)
Jun 23 16:37:07 dsd-pc kernel: [   12.210118][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.211060][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1138 (reg 9222, index 26) beyond range (1153, 2047)
Jun 23 16:37:07 dsd-pc kernel: [   12.211061][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.211627][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1138 (reg 9226, index 27) beyond range (1154, 0)
Jun 23 16:37:07 dsd-pc kernel: [   12.211628][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.212006][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1138 (reg 9229, index 28) beyond range (1154, 0)
Jun 23 16:37:07 dsd-pc kernel: [   12.212007][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.213042][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1138 (reg 9238, index 29) beyond range (1155, 1)
Jun 23 16:37:07 dsd-pc kernel: [   12.213043][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.214081][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1138 (reg 9246, index 30) beyond range (1156, 2)
Jun 23 16:37:07 dsd-pc kernel: [   12.214082][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.214931][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1138 (reg 9253, index 31) beyond range (1157, 3)
Jun 23 16:37:07 dsd-pc kernel: [   12.214932][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.215404][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1139 (reg 9257, index 32) beyond range (1158, 4)
Jun 23 16:37:07 dsd-pc kernel: [   12.215405][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.216441][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1139 (reg 9265, index 33) beyond range (1159, 5)
Jun 23 16:37:07 dsd-pc kernel: [   12.216442][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.217480][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1139 (reg 9273, index 34) beyond range (1160, 6)
Jun 23 16:37:07 dsd-pc kernel: [   12.217480][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.218518][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1139 (reg 9281, index 35) beyond range (1161, 7)
Jun 23 16:37:07 dsd-pc kernel: [   12.218519][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.218993][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1139 (reg 9285, index 36) beyond range (1161, 7)
Jun 23 16:37:07 dsd-pc kernel: [   12.218994][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.219560][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1139 (reg 9290, index 37) beyond range (1162, 8)
Jun 23 16:37:07 dsd-pc kernel: [   12.219562][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.220596][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1139 (reg 9298, index 38) beyond range (1163, 9)
Jun 23 16:37:07 dsd-pc kernel: [   12.220597][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.221633][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1139 (reg 9306, index 39) beyond range (1164, 10)
Jun 23 16:37:07 dsd-pc kernel: [   12.221634][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.222670][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1140 (reg 9315, index 40) beyond range (1165, 11)
Jun 23 16:37:07 dsd-pc kernel: [   12.222671][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.222954][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1140 (reg 9317, index 41) beyond range (1165, 11)
Jun 23 16:37:07 dsd-pc kernel: [   12.222956][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.223521][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1140 (reg 9321, index 42) beyond range (1166, 12)
Jun 23 16:37:07 dsd-pc kernel: [   12.223522][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.223899][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1140 (reg 9324, index 43) beyond range (1166, 12)
Jun 23 16:37:07 dsd-pc kernel: [   12.223900][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.224935][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1140 (reg 9333, index 44) beyond range (1167, 13)
Jun 23 16:37:07 dsd-pc kernel: [   12.224936][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.225973][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1140 (reg 9341, index 45) beyond range (1168, 14)
Jun 23 16:37:07 dsd-pc kernel: [   12.225974][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.226915][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1140 (reg 9349, index 46) beyond range (1169, 15)
Jun 23 16:37:07 dsd-pc kernel: [   12.226916][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.226918][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1140 (reg 9349, index 47) beyond range (1169, 15)
Jun 23 16:37:07 dsd-pc kernel: [   12.226918][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.234000][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1175 (reg 9405, index 4) beyond range (1176, 22)
Jun 23 16:37:07 dsd-pc kernel: [   12.234001][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.234851][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1175 (reg 9412, index 5) beyond range (1177, 23)
Jun 23 16:37:07 dsd-pc kernel: [   12.234852][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.234853][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1175 (reg 9412, index 6) beyond range (1177, 23)
Jun 23 16:37:07 dsd-pc kernel: [   12.234854][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.235418][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1175 (reg 9417, index 7) beyond range (1178, 24)
Jun 23 16:37:07 dsd-pc kernel: [   12.235419][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.235609][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1176 (reg 9418, index 8) beyond range (1178, 24)
Jun 23 16:37:07 dsd-pc kernel: [   12.235609][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.236645][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1176 (reg 9426, index 9) beyond range (1179, 25)
Jun 23 16:37:07 dsd-pc kernel: [   12.236646][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.237306][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1176 (reg 9432, index 10) beyond range (1180, 26)
Jun 23 16:37:07 dsd-pc kernel: [   12.237307][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.237872][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1176 (reg 9436, index 11) beyond range (1180, 26)
Jun 23 16:37:07 dsd-pc kernel: [   12.237873][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.238910][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1176 (reg 9445, index 12) beyond range (1181, 27)
Jun 23 16:37:07 dsd-pc kernel: [   12.238911][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.239006][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1176 (reg 9445, index 13) beyond range (1181, 27)
Jun 23 16:37:07 dsd-pc kernel: [   12.239007][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.239572][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1176 (reg 9450, index 14) beyond range (1182, 28)
Jun 23 16:37:07 dsd-pc kernel: [   12.239573][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.240608][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1176 (reg 9458, index 15) beyond range (1183, 29)
Jun 23 16:37:07 dsd-pc kernel: [   12.240609][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.241647][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1177 (reg 9466, index 16) beyond range (1184, 30)
Jun 23 16:37:07 dsd-pc kernel: [   12.241648][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.242687][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1177 (reg 9475, index 17) beyond range (1185, 31)
Jun 23 16:37:07 dsd-pc kernel: [   12.242688][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.242971][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1177 (reg 9477, index 18) beyond range (1185, 31)
Jun 23 16:37:07 dsd-pc kernel: [   12.242972][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.243538][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1177 (reg 9482, index 19) beyond range (1186, 32)
Jun 23 16:37:07 dsd-pc kernel: [   12.243539][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.243728][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1177 (reg 9483, index 20) beyond range (1186, 32)
Jun 23 16:37:07 dsd-pc kernel: [   12.243728][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.244764][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1177 (reg 9491, index 21) beyond range (1187, 33)
Jun 23 16:37:07 dsd-pc kernel: [   12.244765][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.245049][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1177 (reg 9494, index 22) beyond range (1187, 33)
Jun 23 16:37:07 dsd-pc kernel: [   12.245050][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.245615][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1177 (reg 9498, index 23) beyond range (1188, 34)
Jun 23 16:37:07 dsd-pc kernel: [   12.245616][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.246182][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1178 (reg 9503, index 24) beyond range (1189, 34)
Jun 23 16:37:07 dsd-pc kernel: [   12.246183][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.246372][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1178 (reg 9504, index 25) beyond range (1189, 35)
Jun 23 16:37:07 dsd-pc kernel: [   12.246373][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.246939][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1178 (reg 9509, index 26) beyond range (1189, 35)
Jun 23 16:37:07 dsd-pc kernel: [   12.246940][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.247508][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1178 (reg 9513, index 27) beyond range (1190, 36)
Jun 23 16:37:07 dsd-pc kernel: [   12.247508][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.248079][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1178 (reg 9518, index 28) beyond range (1190, 36)
Jun 23 16:37:07 dsd-pc kernel: [   12.248079][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.248269][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1178 (reg 9519, index 29) beyond range (1191, 36)
Jun 23 16:37:07 dsd-pc kernel: [   12.248270][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.248459][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1178 (reg 9521, index 30) beyond range (1191, 37)
Jun 23 16:37:07 dsd-pc kernel: [   12.248460][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.249026][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1178 (reg 9525, index 31) beyond range (1191, 37)
Jun 23 16:37:07 dsd-pc kernel: [   12.249026][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.249404][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1179 (reg 9529, index 32) beyond range (1192, 38)
Jun 23 16:37:07 dsd-pc kernel: [   12.249405][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.249971][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1179 (reg 9533, index 33) beyond range (1192, 38)
Jun 23 16:37:07 dsd-pc kernel: [   12.249972][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.250352][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1179 (reg 9536, index 34) beyond range (1193, 39)
Jun 23 16:37:07 dsd-pc kernel: [   12.250353][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.250355][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1179 (reg 9536, index 35) beyond range (1193, 39)
Jun 23 16:37:07 dsd-pc kernel: [   12.250356][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.250920][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1179 (reg 9541, index 36) beyond range (1193, 39)
Jun 23 16:37:07 dsd-pc kernel: [   12.250921][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.251488][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1179 (reg 9545, index 37) beyond range (1194, 40)
Jun 23 16:37:07 dsd-pc kernel: [   12.251489][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.251869][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1179 (reg 9548, index 38) beyond range (1194, 40)
Jun 23 16:37:07 dsd-pc kernel: [   12.251870][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.252435][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1179 (reg 9553, index 39) beyond range (1195, 41)
Jun 23 16:37:07 dsd-pc kernel: [   12.252436][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.252626][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1180 (reg 9554, index 40) beyond range (1195, 41)
Jun 23 16:37:07 dsd-pc kernel: [   12.252626][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.253192][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1180 (reg 9559, index 41) beyond range (1196, 41)
Jun 23 16:37:07 dsd-pc kernel: [   12.253193][ 5] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.253758][ 5] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1180 (reg 9563, index 42) beyond range (1196, 42)
Jun 23 16:37:07 dsd-pc kernel: [   12.253759][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.254326][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1180 (reg 9568, index 43) beyond range (1197, 43)
Jun 23 16:37:07 dsd-pc kernel: [   12.254327][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.254329][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1180 (reg 9568, index 44) beyond range (1197, 43)
Jun 23 16:37:07 dsd-pc kernel: [   12.254330][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.254894][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1180 (reg 9572, index 45) beyond range (1197, 43)
Jun 23 16:37:07 dsd-pc kernel: [   12.254895][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.261313][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1203 (reg 9624, index 3) beyond range (1204, 50)
Jun 23 16:37:07 dsd-pc kernel: [   12.261314][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.261503][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1203 (reg 9625, index 4) beyond range (1204, 50)
Jun 23 16:37:07 dsd-pc kernel: [   12.261504][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.262070][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1203 (reg 9630, index 5) beyond range (1204, 50)
Jun 23 16:37:07 dsd-pc kernel: [   12.262071][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.262448][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1203 (reg 9633, index 6) beyond range (1205, 51)
Jun 23 16:37:07 dsd-pc kernel: [   12.262448][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.263484][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1203 (reg 9641, index 7) beyond range (1206, 52)
Jun 23 16:37:07 dsd-pc kernel: [   12.263484][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.263580][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1204 (reg 9642, index 8) beyond range (1206, 52)
Jun 23 16:37:07 dsd-pc kernel: [   12.263581][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.264146][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1204 (reg 9646, index 9) beyond range (1206, 52)
Jun 23 16:37:07 dsd-pc kernel: [   12.264147][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.264713][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1204 (reg 9651, index 10) beyond range (1207, 53)
Jun 23 16:37:07 dsd-pc kernel: [   12.264713][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.265091][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1204 (reg 9654, index 11) beyond range (1207, 53)
Jun 23 16:37:07 dsd-pc kernel: [   12.265092][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.265657][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1204 (reg 9659, index 12) beyond range (1208, 54)
Jun 23 16:37:07 dsd-pc kernel: [   12.265658][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.265848][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1204 (reg 9660, index 13) beyond range (1208, 54)
Jun 23 16:37:07 dsd-pc kernel: [   12.265848][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.266039][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1204 (reg 9662, index 14) beyond range (1208, 54)
Jun 23 16:37:07 dsd-pc kernel: [   12.266040][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.266606][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1204 (reg 9666, index 15) beyond range (1209, 55)
Jun 23 16:37:07 dsd-pc kernel: [   12.266606][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.266796][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1205 (reg 9668, index 16) beyond range (1209, 55)
Jun 23 16:37:07 dsd-pc kernel: [   12.266796][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.267832][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1205 (reg 9676, index 17) beyond range (1210, 56)
Jun 23 16:37:07 dsd-pc kernel: [   12.267833][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.267929][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1205 (reg 9677, index 18) beyond range (1210, 56)
Jun 23 16:37:07 dsd-pc kernel: [   12.267929][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.268495][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1205 (reg 9681, index 19) beyond range (1211, 57)
Jun 23 16:37:07 dsd-pc kernel: [   12.268496][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.269061][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1205 (reg 9686, index 20) beyond range (1211, 57)
Jun 23 16:37:07 dsd-pc kernel: [   12.269062][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.270099][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1205 (reg 9694, index 21) beyond range (1212, 58)
Jun 23 16:37:07 dsd-pc kernel: [   12.270100][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.270195][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1205 (reg 9695, index 22) beyond range (1213, 58)
Jun 23 16:37:07 dsd-pc kernel: [   12.270196][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.270199][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1205 (reg 9695, index 23) beyond range (1213, 58)
Jun 23 16:37:07 dsd-pc kernel: [   12.270199][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.270764][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1206 (reg 9699, index 24) beyond range (1213, 59)
Jun 23 16:37:07 dsd-pc kernel: [   12.270765][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.270954][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1206 (reg 9701, index 25) beyond range (1213, 59)
Jun 23 16:37:07 dsd-pc kernel: [   12.270955][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.271521][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1206 (reg 9705, index 26) beyond range (1214, 60)
Jun 23 16:37:07 dsd-pc kernel: [   12.271522][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.271711][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1206 (reg 9707, index 27) beyond range (1214, 60)
Jun 23 16:37:07 dsd-pc kernel: [   12.271712][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.272278][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1206 (reg 9711, index 28) beyond range (1215, 60)
Jun 23 16:37:07 dsd-pc kernel: [   12.272278][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.272468][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1206 (reg 9713, index 29) beyond range (1215, 61)
Jun 23 16:37:07 dsd-pc kernel: [   12.272469][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.273505][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1206 (reg 9721, index 30) beyond range (1216, 62)
Jun 23 16:37:07 dsd-pc kernel: [   12.273506][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.273601][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1206 (reg 9722, index 31) beyond range (1216, 62)
Jun 23 16:37:07 dsd-pc kernel: [   12.273601][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.274168][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1207 (reg 9727, index 32) beyond range (1217, 62)
Jun 23 16:37:07 dsd-pc kernel: [   12.274169][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.274736][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1207 (reg 9731, index 33) beyond range (1217, 63)
Jun 23 16:37:07 dsd-pc kernel: [   12.274736][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.274925][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1207 (reg 9733, index 34) beyond range (1217, 63)
Jun 23 16:37:07 dsd-pc kernel: [   12.274926][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.275492][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1207 (reg 9737, index 35) beyond range (1218, 64)
Jun 23 16:37:07 dsd-pc kernel: [   12.275493][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.275682][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1207 (reg 9739, index 36) beyond range (1218, 64)
Jun 23 16:37:07 dsd-pc kernel: [   12.275683][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.275872][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1207 (reg 9740, index 37) beyond range (1218, 64)
Jun 23 16:37:07 dsd-pc kernel: [   12.275873][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.276063][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1207 (reg 9742, index 38) beyond range (1218, 64)
Jun 23 16:37:07 dsd-pc kernel: [   12.276063][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.276629][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1207 (reg 9746, index 39) beyond range (1219, 65)
Jun 23 16:37:07 dsd-pc kernel: [   12.276630][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.277007][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1208 (reg 9749, index 40) beyond range (1219, 65)
Jun 23 16:37:07 dsd-pc kernel: [   12.277008][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.277198][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1208 (reg 9751, index 41) beyond range (1220, 65)
Jun 23 16:37:07 dsd-pc kernel: [   12.277198][14] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.277388][14] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1208 (reg 9752, index 42) beyond range (1220, 66)
Jun 23 16:37:07 dsd-pc kernel: [   12.277389][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.277955][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1208 (reg 9757, index 43) beyond range (1220, 66)
Jun 23 16:37:07 dsd-pc kernel: [   12.277956][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.278145][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1208 (reg 9758, index 44) beyond range (1220, 66)
Jun 23 16:37:07 dsd-pc kernel: [   12.278145][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.278147][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1208 (reg 9758, index 45) beyond range (1220, 66)
Jun 23 16:37:07 dsd-pc kernel: [   12.278148][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.278712][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1208 (reg 9763, index 46) beyond range (1221, 67)
Jun 23 16:37:07 dsd-pc kernel: [   12.278713][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.279281][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1208 (reg 9768, index 47) beyond range (1222, 68)
Jun 23 16:37:07 dsd-pc kernel: [   12.279281][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.284197][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1226 (reg 9807, index 5) beyond range (1227, 72)
Jun 23 16:37:07 dsd-pc kernel: [   12.284198][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.284762][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1226 (reg 9811, index 6) beyond range (1227, 73)
Jun 23 16:37:07 dsd-pc kernel: [   12.284762][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.285140][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1226 (reg 9814, index 7) beyond range (1227, 73)
Jun 23 16:37:07 dsd-pc kernel: [   12.285141][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.285706][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1227 (reg 9819, index 8) beyond range (1228, 74)
Jun 23 16:37:07 dsd-pc kernel: [   12.285707][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.286274][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1227 (reg 9823, index 9) beyond range (1229, 74)
Jun 23 16:37:07 dsd-pc kernel: [   12.286275][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.286841][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1227 (reg 9828, index 10) beyond range (1229, 75)
Jun 23 16:37:07 dsd-pc kernel: [   12.286842][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.287407][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1227 (reg 9833, index 11) beyond range (1230, 76)
Jun 23 16:37:07 dsd-pc kernel: [   12.287408][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.287973][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1227 (reg 9837, index 12) beyond range (1230, 76)
Jun 23 16:37:07 dsd-pc kernel: [   12.287974][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.288163][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1227 (reg 9839, index 13) beyond range (1231, 76)
Jun 23 16:37:07 dsd-pc kernel: [   12.288164][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.288730][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1227 (reg 9843, index 14) beyond range (1231, 77)
Jun 23 16:37:07 dsd-pc kernel: [   12.288730][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.289296][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1227 (reg 9848, index 15) beyond range (1232, 78)
Jun 23 16:37:07 dsd-pc kernel: [   12.289297][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.289863][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1228 (reg 9852, index 16) beyond range (1232, 78)
Jun 23 16:37:07 dsd-pc kernel: [   12.289864][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.290054][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1228 (reg 9854, index 17) beyond range (1232, 78)
Jun 23 16:37:07 dsd-pc kernel: [   12.290055][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.290621][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1228 (reg 9858, index 18) beyond range (1233, 79)
Jun 23 16:37:07 dsd-pc kernel: [   12.290621][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.290811][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1228 (reg 9860, index 19) beyond range (1233, 79)
Jun 23 16:37:07 dsd-pc kernel: [   12.290811][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.291377][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1228 (reg 9864, index 20) beyond range (1234, 80)
Jun 23 16:37:07 dsd-pc kernel: [   12.291378][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.291567][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1228 (reg 9866, index 21) beyond range (1234, 80)
Jun 23 16:37:07 dsd-pc kernel: [   12.291568][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.292134][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1228 (reg 9870, index 22) beyond range (1234, 80)
Jun 23 16:37:07 dsd-pc kernel: [   12.292134][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.292700][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1228 (reg 9875, index 23) beyond range (1235, 81)
Jun 23 16:37:07 dsd-pc kernel: [   12.292701][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.293266][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1229 (reg 9879, index 24) beyond range (1236, 81)
Jun 23 16:37:07 dsd-pc kernel: [   12.293267][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.293457][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1229 (reg 9881, index 25) beyond range (1236, 82)
Jun 23 16:37:07 dsd-pc kernel: [   12.293457][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.294024][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1229 (reg 9885, index 26) beyond range (1236, 82)
Jun 23 16:37:07 dsd-pc kernel: [   12.294025][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.294027][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1229 (reg 9885, index 27) beyond range (1236, 82)
Jun 23 16:37:07 dsd-pc kernel: [   12.294028][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.294592][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1229 (reg 9890, index 28) beyond range (1237, 83)
Jun 23 16:37:07 dsd-pc kernel: [   12.294593][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.294782][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1229 (reg 9892, index 29) beyond range (1237, 83)
Jun 23 16:37:07 dsd-pc kernel: [   12.294783][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.295818][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1229 (reg 9900, index 30) beyond range (1238, 84)
Jun 23 16:37:07 dsd-pc kernel: [   12.295819][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.295915][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1229 (reg 9901, index 31) beyond range (1238, 84)
Jun 23 16:37:07 dsd-pc kernel: [   12.295915][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.296481][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1230 (reg 9905, index 32) beyond range (1239, 85)
Jun 23 16:37:07 dsd-pc kernel: [   12.296482][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.296859][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1230 (reg 9908, index 33) beyond range (1239, 85)
Jun 23 16:37:07 dsd-pc kernel: [   12.296860][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.297896][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1230 (reg 9916, index 34) beyond range (1240, 86)
Jun 23 16:37:07 dsd-pc kernel: [   12.297897][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.297993][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1230 (reg 9917, index 35) beyond range (1240, 86)
Jun 23 16:37:07 dsd-pc kernel: [   12.297994][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.298560][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1230 (reg 9922, index 36) beyond range (1241, 87)
Jun 23 16:37:07 dsd-pc kernel: [   12.298561][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.298750][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1230 (reg 9923, index 37) beyond range (1241, 87)
Jun 23 16:37:07 dsd-pc kernel: [   12.298751][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.299787][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1230 (reg 9932, index 38) beyond range (1242, 88)
Jun 23 16:37:07 dsd-pc kernel: [   12.299788][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.299883][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1230 (reg 9932, index 39) beyond range (1242, 88)
Jun 23 16:37:07 dsd-pc kernel: [   12.299884][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.300450][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1231 (reg 9937, index 40) beyond range (1243, 89)
Jun 23 16:37:07 dsd-pc kernel: [   12.300451][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.300828][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1231 (reg 9940, index 41) beyond range (1243, 89)
Jun 23 16:37:07 dsd-pc kernel: [   12.300829][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.301018][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1231 (reg 9941, index 42) beyond range (1243, 89)
Jun 23 16:37:07 dsd-pc kernel: [   12.301019][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.301208][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1231 (reg 9943, index 43) beyond range (1244, 89)
Jun 23 16:37:07 dsd-pc kernel: [   12.301209][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.301775][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1231 (reg 9947, index 44) beyond range (1244, 90)
Jun 23 16:37:07 dsd-pc kernel: [   12.301776][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.302154][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1231 (reg 9951, index 45) beyond range (1245, 90)
Jun 23 16:37:07 dsd-pc kernel: [   12.302155][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.302721][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1231 (reg 9955, index 46) beyond range (1245, 91)
Jun 23 16:37:07 dsd-pc kernel: [   12.302722][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.303287][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1231 (reg 9960, index 47) beyond range (1246, 92)
Jun 23 16:37:07 dsd-pc kernel: [   12.303288][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.308198][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1250 (reg 9999, index 2) beyond range (1251, 96)
Jun 23 16:37:07 dsd-pc kernel: [   12.308199][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.308764][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1250 (reg 10003, index 3) beyond range (1251, 97)
Jun 23 16:37:07 dsd-pc kernel: [   12.308765][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.309331][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1250 (reg 10008, index 4) beyond range (1252, 98)
Jun 23 16:37:07 dsd-pc kernel: [   12.309331][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.309897][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1250 (reg 10012, index 5) beyond range (1252, 98)
Jun 23 16:37:07 dsd-pc kernel: [   12.309898][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.310464][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1250 (reg 10017, index 6) beyond range (1253, 99)
Jun 23 16:37:07 dsd-pc kernel: [   12.310465][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.311031][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1250 (reg 10022, index 7) beyond range (1253, 99)
Jun 23 16:37:07 dsd-pc kernel: [   12.311032][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.311597][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1251 (reg 10026, index 8) beyond range (1254, 100)
Jun 23 16:37:07 dsd-pc kernel: [   12.311598][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.311787][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1251 (reg 10028, index 9) beyond range (1254, 100)
Jun 23 16:37:07 dsd-pc kernel: [   12.311788][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.312354][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1251 (reg 10032, index 10) beyond range (1255, 101)
Jun 23 16:37:07 dsd-pc kernel: [   12.312355][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.312544][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1251 (reg 10034, index 11) beyond range (1255, 101)
Jun 23 16:37:07 dsd-pc kernel: [   12.312545][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.313110][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1251 (reg 10038, index 12) beyond range (1255, 101)
Jun 23 16:37:07 dsd-pc kernel: [   12.313111][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.313677][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1251 (reg 10043, index 13) beyond range (1256, 102)
Jun 23 16:37:07 dsd-pc kernel: [   12.313677][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.313867][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1251 (reg 10044, index 14) beyond range (1256, 102)
Jun 23 16:37:07 dsd-pc kernel: [   12.313868][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.314905][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1251 (reg 10053, index 15) beyond range (1257, 103)
Jun 23 16:37:07 dsd-pc kernel: [   12.314906][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.315000][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1252 (reg 10053, index 16) beyond range (1257, 103)
Jun 23 16:37:07 dsd-pc kernel: [   12.315001][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.315568][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1252 (reg 10058, index 17) beyond range (1258, 104)
Jun 23 16:37:07 dsd-pc kernel: [   12.315568][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.315758][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1252 (reg 10059, index 18) beyond range (1258, 104)
Jun 23 16:37:07 dsd-pc kernel: [   12.315759][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.316795][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1252 (reg 10068, index 19) beyond range (1259, 105)
Jun 23 16:37:07 dsd-pc kernel: [   12.316796][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.316891][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1252 (reg 10068, index 20) beyond range (1259, 105)
Jun 23 16:37:07 dsd-pc kernel: [   12.316891][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.317457][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1252 (reg 10073, index 21) beyond range (1260, 106)
Jun 23 16:37:07 dsd-pc kernel: [   12.317458][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.317836][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1252 (reg 10076, index 22) beyond range (1260, 106)
Jun 23 16:37:07 dsd-pc kernel: [   12.317836][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.318403][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1252 (reg 10080, index 23) beyond range (1261, 107)
Jun 23 16:37:07 dsd-pc kernel: [   12.318404][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.318499][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1253 (reg 10081, index 24) beyond range (1261, 107)
Jun 23 16:37:07 dsd-pc kernel: [   12.318500][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.319536][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1253 (reg 10090, index 25) beyond range (1262, 108)
Jun 23 16:37:07 dsd-pc kernel: [   12.319536][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.320572][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1253 (reg 10098, index 26) beyond range (1263, 109)
Jun 23 16:37:07 dsd-pc kernel: [   12.320573][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.321139][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1253 (reg 10102, index 27) beyond range (1263, 109)
Jun 23 16:37:07 dsd-pc kernel: [   12.321139][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.321329][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1253 (reg 10104, index 28) beyond range (1264, 110)
Jun 23 16:37:07 dsd-pc kernel: [   12.321330][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.322367][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1253 (reg 10112, index 29) beyond range (1265, 111)
Jun 23 16:37:07 dsd-pc kernel: [   12.322368][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.322462][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1253 (reg 10113, index 30) beyond range (1265, 111)
Jun 23 16:37:07 dsd-pc kernel: [   12.322463][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.323029][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1253 (reg 10118, index 31) beyond range (1265, 111)
Jun 23 16:37:07 dsd-pc kernel: [   12.323030][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.323219][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1254 (reg 10119, index 32) beyond range (1266, 111)
Jun 23 16:37:07 dsd-pc kernel: [   12.323220][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.324256][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1254 (reg 10127, index 33) beyond range (1267, 112)
Jun 23 16:37:07 dsd-pc kernel: [   12.324256][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.324352][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1254 (reg 10128, index 34) beyond range (1267, 113)
Jun 23 16:37:07 dsd-pc kernel: [   12.324353][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.324919][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1254 (reg 10133, index 35) beyond range (1267, 113)
Jun 23 16:37:07 dsd-pc kernel: [   12.324919][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.325297][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1254 (reg 10136, index 36) beyond range (1268, 114)
Jun 23 16:37:07 dsd-pc kernel: [   12.325298][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.326334][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1254 (reg 10144, index 37) beyond range (1269, 115)
Jun 23 16:37:07 dsd-pc kernel: [   12.326335][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.326430][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1254 (reg 10145, index 38) beyond range (1269, 115)
Jun 23 16:37:07 dsd-pc kernel: [   12.326431][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.326432][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1254 (reg 10145, index 39) beyond range (1269, 115)
Jun 23 16:37:07 dsd-pc kernel: [   12.326433][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.326998][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1255 (reg 10149, index 40) beyond range (1269, 115)
Jun 23 16:37:07 dsd-pc kernel: [   12.326998][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.327376][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1255 (reg 10152, index 41) beyond range (1270, 116)
Jun 23 16:37:07 dsd-pc kernel: [   12.327376][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.328412][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1255 (reg 10161, index 42) beyond range (1271, 117)
Jun 23 16:37:07 dsd-pc kernel: [   12.328413][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.328509][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1255 (reg 10161, index 43) beyond range (1271, 117)
Jun 23 16:37:07 dsd-pc kernel: [   12.328509][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.329075][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1255 (reg 10166, index 44) beyond range (1271, 117)
Jun 23 16:37:07 dsd-pc kernel: [   12.329076][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.329642][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1255 (reg 10170, index 45) beyond range (1272, 118)
Jun 23 16:37:07 dsd-pc kernel: [   12.329642][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.330679][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1255 (reg 10179, index 46) beyond range (1273, 119)
Jun 23 16:37:07 dsd-pc kernel: [   12.330680][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.336158][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1278 (reg 10223, index 7) beyond range (1279, 124)
Jun 23 16:37:07 dsd-pc kernel: [   12.336160][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.337857][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1279 (reg 10236, index 10) beyond range (1280, 126)
Jun 23 16:37:07 dsd-pc kernel: [   12.337858][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.338332][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1279 (reg 10240, index 11) beyond range (1281, 127)
Jun 23 16:37:07 dsd-pc kernel: [   12.338334][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.338336][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1279 (reg 10240, index 12) beyond range (1281, 127)
Jun 23 16:37:07 dsd-pc kernel: [   12.338336][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.338900][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1279 (reg 10244, index 13) beyond range (1281, 127)
Jun 23 16:37:07 dsd-pc kernel: [   12.338901][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.339469][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1279 (reg 10249, index 14) beyond range (1282, 128)
Jun 23 16:37:07 dsd-pc kernel: [   12.339470][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.339850][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1279 (reg 10252, index 15) beyond range (1282, 128)
Jun 23 16:37:07 dsd-pc kernel: [   12.339850][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.340418][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1280 (reg 10257, index 16) beyond range (1283, 129)
Jun 23 16:37:07 dsd-pc kernel: [   12.340419][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.340608][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1280 (reg 10258, index 17) beyond range (1283, 129)
Jun 23 16:37:07 dsd-pc kernel: [   12.340609][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.341175][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1280 (reg 10263, index 18) beyond range (1284, 129)
Jun 23 16:37:07 dsd-pc kernel: [   12.341176][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.341553][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1280 (reg 10266, index 19) beyond range (1284, 130)
Jun 23 16:37:07 dsd-pc kernel: [   12.341554][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.342591][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1280 (reg 10274, index 20) beyond range (1285, 131)
Jun 23 16:37:07 dsd-pc kernel: [   12.342592][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.342686][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1280 (reg 10275, index 21) beyond range (1285, 131)
Jun 23 16:37:07 dsd-pc kernel: [   12.342687][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.343253][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1280 (reg 10279, index 22) beyond range (1286, 131)
Jun 23 16:37:07 dsd-pc kernel: [   12.343253][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.343443][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1280 (reg 10281, index 23) beyond range (1286, 132)
Jun 23 16:37:07 dsd-pc kernel: [   12.343443][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.343633][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1281 (reg 10282, index 24) beyond range (1286, 132)
Jun 23 16:37:07 dsd-pc kernel: [   12.343634][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.343729][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1281 (reg 10283, index 25) beyond range (1286, 132)
Jun 23 16:37:07 dsd-pc kernel: [   12.343730][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.344202][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1281 (reg 10287, index 26) beyond range (1287, 132)
Jun 23 16:37:07 dsd-pc kernel: [   12.344203][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.344582][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1281 (reg 10290, index 27) beyond range (1287, 133)
Jun 23 16:37:07 dsd-pc kernel: [   12.344583][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.345619][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1281 (reg 10298, index 28) beyond range (1288, 134)
Jun 23 16:37:07 dsd-pc kernel: [   12.345620][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.346657][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1281 (reg 10307, index 29) beyond range (1289, 135)
Jun 23 16:37:07 dsd-pc kernel: [   12.346658][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.347037][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1281 (reg 10310, index 30) beyond range (1289, 135)
Jun 23 16:37:07 dsd-pc kernel: [   12.347037][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.347039][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1281 (reg 10310, index 31) beyond range (1289, 135)
Jun 23 16:37:07 dsd-pc kernel: [   12.347039][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.347605][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1282 (reg 10314, index 32) beyond range (1290, 136)
Jun 23 16:37:07 dsd-pc kernel: [   12.347605][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.348641][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1282 (reg 10322, index 33) beyond range (1291, 137)
Jun 23 16:37:07 dsd-pc kernel: [   12.348642][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.349678][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1282 (reg 10331, index 34) beyond range (1292, 138)
Jun 23 16:37:07 dsd-pc kernel: [   12.349679][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.350716][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1282 (reg 10339, index 35) beyond range (1293, 139)
Jun 23 16:37:07 dsd-pc kernel: [   12.350717][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.350999][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1282 (reg 10341, index 36) beyond range (1293, 139)
Jun 23 16:37:07 dsd-pc kernel: [   12.351000][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.351566][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1282 (reg 10346, index 37) beyond range (1294, 140)
Jun 23 16:37:07 dsd-pc kernel: [   12.351567][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.351757][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1282 (reg 10347, index 38) beyond range (1294, 140)
Jun 23 16:37:07 dsd-pc kernel: [   12.351757][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.352794][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1282 (reg 10356, index 39) beyond range (1295, 141)
Jun 23 16:37:07 dsd-pc kernel: [   12.352794][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.353830][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1283 (reg 10364, index 40) beyond range (1296, 142)
Jun 23 16:37:07 dsd-pc kernel: [   12.353831][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.354872][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1283 (reg 10372, index 41) beyond range (1297, 143)
Jun 23 16:37:07 dsd-pc kernel: [   12.354873][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.354967][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1283 (reg 10373, index 42) beyond range (1297, 143)
Jun 23 16:37:07 dsd-pc kernel: [   12.354968][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.356004][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1283 (reg 10381, index 43) beyond range (1298, 144)
Jun 23 16:37:07 dsd-pc kernel: [   12.356004][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.356100][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1283 (reg 10382, index 44) beyond range (1298, 144)
Jun 23 16:37:07 dsd-pc kernel: [   12.356101][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.356666][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1283 (reg 10387, index 45) beyond range (1299, 145)
Jun 23 16:37:07 dsd-pc kernel: [   12.356668][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.357703][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1283 (reg 10395, index 46) beyond range (1300, 146)
Jun 23 16:37:07 dsd-pc kernel: [   12.357704][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.358743][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1283 (reg 10403, index 47) beyond range (1301, 147)
Jun 23 16:37:07 dsd-pc kernel: [   12.358744][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.364317][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1306 (reg 10448, index 7) beyond range (1307, 153)
Jun 23 16:37:07 dsd-pc kernel: [   12.364317][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.365352][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1307 (reg 10456, index 8) beyond range (1308, 154)
Jun 23 16:37:07 dsd-pc kernel: [   12.365353][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.366390][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1307 (reg 10464, index 9) beyond range (1309, 155)
Jun 23 16:37:07 dsd-pc kernel: [   12.366391][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.367049][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1307 (reg 10470, index 10) beyond range (1309, 155)
Jun 23 16:37:07 dsd-pc kernel: [   12.367050][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.367616][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1307 (reg 10474, index 11) beyond range (1310, 156)
Jun 23 16:37:07 dsd-pc kernel: [   12.367617][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.368183][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1307 (reg 10479, index 12) beyond range (1311, 156)
Jun 23 16:37:07 dsd-pc kernel: [   12.368184][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.368279][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1307 (reg 10480, index 13) beyond range (1311, 157)
Jun 23 16:37:07 dsd-pc kernel: [   12.368279][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.368563][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1307 (reg 10482, index 14) beyond range (1311, 157)
Jun 23 16:37:07 dsd-pc kernel: [   12.368564][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.369130][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1307 (reg 10486, index 15) beyond range (1311, 157)
Jun 23 16:37:07 dsd-pc kernel: [   12.369130][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.369698][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1308 (reg 10491, index 16) beyond range (1312, 158)
Jun 23 16:37:07 dsd-pc kernel: [   12.369699][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.370080][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1308 (reg 10494, index 17) beyond range (1312, 158)
Jun 23 16:37:07 dsd-pc kernel: [   12.370081][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.371116][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1308 (reg 10502, index 18) beyond range (1313, 159)
Jun 23 16:37:07 dsd-pc kernel: [   12.371117][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.371212][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1308 (reg 10503, index 19) beyond range (1314, 159)
Jun 23 16:37:07 dsd-pc kernel: [   12.371213][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.371778][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1308 (reg 10508, index 20) beyond range (1314, 160)
Jun 23 16:37:07 dsd-pc kernel: [   12.371779][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.372345][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1308 (reg 10512, index 21) beyond range (1315, 161)
Jun 23 16:37:07 dsd-pc kernel: [   12.372346][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.372913][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1308 (reg 10517, index 22) beyond range (1315, 161)
Jun 23 16:37:07 dsd-pc kernel: [   12.372914][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.373482][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1308 (reg 10521, index 23) beyond range (1316, 162)
Jun 23 16:37:07 dsd-pc kernel: [   12.373482][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.374051][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1309 (reg 10526, index 24) beyond range (1316, 162)
Jun 23 16:37:07 dsd-pc kernel: [   12.374053][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.374431][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1309 (reg 10529, index 25) beyond range (1317, 163)
Jun 23 16:37:07 dsd-pc kernel: [   12.374431][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.374433][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1309 (reg 10529, index 26) beyond range (1317, 163)
Jun 23 16:37:07 dsd-pc kernel: [   12.374434][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.374810][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1309 (reg 10532, index 27) beyond range (1317, 163)
Jun 23 16:37:07 dsd-pc kernel: [   12.374811][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.375377][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1309 (reg 10536, index 28) beyond range (1318, 164)
Jun 23 16:37:07 dsd-pc kernel: [   12.375378][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.375943][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1309 (reg 10541, index 29) beyond range (1318, 164)
Jun 23 16:37:07 dsd-pc kernel: [   12.375944][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.376980][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1309 (reg 10549, index 30) beyond range (1319, 165)
Jun 23 16:37:07 dsd-pc kernel: [   12.376981][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.378017][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1309 (reg 10557, index 31) beyond range (1320, 166)
Jun 23 16:37:07 dsd-pc kernel: [   12.378019][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.378960][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1310 (reg 10565, index 32) beyond range (1321, 167)
Jun 23 16:37:07 dsd-pc kernel: [   12.378961][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.379527][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1310 (reg 10569, index 33) beyond range (1322, 168)
Jun 23 16:37:07 dsd-pc kernel: [   12.379527][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.380095][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1310 (reg 10574, index 34) beyond range (1322, 168)
Jun 23 16:37:07 dsd-pc kernel: [   12.380096][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.380664][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1310 (reg 10579, index 35) beyond range (1323, 169)
Jun 23 16:37:07 dsd-pc kernel: [   12.380665][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.381233][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1310 (reg 10583, index 36) beyond range (1324, 169)
Jun 23 16:37:07 dsd-pc kernel: [   12.381233][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.381801][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1310 (reg 10588, index 37) beyond range (1324, 170)
Jun 23 16:37:07 dsd-pc kernel: [   12.381802][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.382373][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1310 (reg 10592, index 38) beyond range (1325, 171)
Jun 23 16:37:07 dsd-pc kernel: [   12.382374][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.382941][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1310 (reg 10597, index 39) beyond range (1325, 171)
Jun 23 16:37:07 dsd-pc kernel: [   12.382942][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.383507][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1311 (reg 10601, index 40) beyond range (1326, 172)
Jun 23 16:37:07 dsd-pc kernel: [   12.383508][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.383885][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1311 (reg 10604, index 41) beyond range (1326, 172)
Jun 23 16:37:07 dsd-pc kernel: [   12.383886][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.384452][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1311 (reg 10609, index 42) beyond range (1327, 173)
Jun 23 16:37:07 dsd-pc kernel: [   12.384452][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.385018][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1311 (reg 10613, index 43) beyond range (1327, 173)
Jun 23 16:37:07 dsd-pc kernel: [   12.385018][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.385585][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1311 (reg 10618, index 44) beyond range (1328, 174)
Jun 23 16:37:07 dsd-pc kernel: [   12.385585][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.385774][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1311 (reg 10619, index 45) beyond range (1328, 174)
Jun 23 16:37:07 dsd-pc kernel: [   12.385775][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.386812][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1311 (reg 10628, index 46) beyond range (1329, 175)
Jun 23 16:37:07 dsd-pc kernel: [   12.386813][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.386908][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1311 (reg 10629, index 47) beyond range (1329, 175)
Jun 23 16:37:07 dsd-pc kernel: [   12.386909][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.392389][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1334 (reg 10672, index 7) beyond range (1335, 181)
Jun 23 16:37:07 dsd-pc kernel: [   12.392390][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.393712][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1335 (reg 10683, index 11) beyond range (1336, 182)
Jun 23 16:37:07 dsd-pc kernel: [   12.393713][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.394279][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1335 (reg 10687, index 12) beyond range (1337, 182)
Jun 23 16:37:07 dsd-pc kernel: [   12.394280][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.394846][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1335 (reg 10692, index 13) beyond range (1337, 183)
Jun 23 16:37:07 dsd-pc kernel: [   12.394846][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.395036][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1335 (reg 10694, index 14) beyond range (1337, 183)
Jun 23 16:37:07 dsd-pc kernel: [   12.395036][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.395602][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1335 (reg 10698, index 15) beyond range (1338, 184)
Jun 23 16:37:07 dsd-pc kernel: [   12.395602][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.395792][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1336 (reg 10700, index 16) beyond range (1338, 184)
Jun 23 16:37:07 dsd-pc kernel: [   12.395792][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.395982][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1336 (reg 10701, index 17) beyond range (1338, 184)
Jun 23 16:37:07 dsd-pc kernel: [   12.395983][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.396549][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1336 (reg 10706, index 18) beyond range (1339, 185)
Jun 23 16:37:07 dsd-pc kernel: [   12.396549][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.397115][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1336 (reg 10710, index 19) beyond range (1339, 185)
Jun 23 16:37:07 dsd-pc kernel: [   12.397116][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.397681][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1336 (reg 10715, index 20) beyond range (1340, 186)
Jun 23 16:37:07 dsd-pc kernel: [   12.397682][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.398249][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1336 (reg 10719, index 21) beyond range (1341, 186)
Jun 23 16:37:07 dsd-pc kernel: [   12.398250][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.398815][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1336 (reg 10724, index 22) beyond range (1341, 187)
Jun 23 16:37:07 dsd-pc kernel: [   12.398816][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.399382][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1336 (reg 10728, index 23) beyond range (1342, 188)
Jun 23 16:37:07 dsd-pc kernel: [   12.399383][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.399572][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1337 (reg 10730, index 24) beyond range (1342, 188)
Jun 23 16:37:07 dsd-pc kernel: [   12.399573][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.399762][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1337 (reg 10731, index 25) beyond range (1342, 188)
Jun 23 16:37:07 dsd-pc kernel: [   12.399763][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.400329][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1337 (reg 10736, index 26) beyond range (1343, 189)
Jun 23 16:37:07 dsd-pc kernel: [   12.400330][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.400895][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1337 (reg 10740, index 27) beyond range (1343, 189)
Jun 23 16:37:07 dsd-pc kernel: [   12.400896][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.401462][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1337 (reg 10745, index 28) beyond range (1344, 190)
Jun 23 16:37:07 dsd-pc kernel: [   12.401463][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.402029][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1337 (reg 10749, index 29) beyond range (1344, 190)
Jun 23 16:37:07 dsd-pc kernel: [   12.402030][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.402033][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1337 (reg 10750, index 30) beyond range (1344, 190)
Jun 23 16:37:07 dsd-pc kernel: [   12.402034][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.402598][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1337 (reg 10754, index 31) beyond range (1345, 191)
Jun 23 16:37:07 dsd-pc kernel: [   12.402599][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.403166][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1338 (reg 10759, index 32) beyond range (1346, 191)
Jun 23 16:37:07 dsd-pc kernel: [   12.403167][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.404207][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1338 (reg 10767, index 33) beyond range (1347, 192)
Jun 23 16:37:07 dsd-pc kernel: [   12.404208][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.405240][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1338 (reg 10775, index 34) beyond range (1348, 193)
Jun 23 16:37:07 dsd-pc kernel: [   12.405241][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.406276][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1338 (reg 10783, index 35) beyond range (1349, 194)
Jun 23 16:37:07 dsd-pc kernel: [   12.406277][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.406937][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1338 (reg 10789, index 36) beyond range (1349, 195)
Jun 23 16:37:07 dsd-pc kernel: [   12.406938][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.406940][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1338 (reg 10789, index 37) beyond range (1349, 195)
Jun 23 16:37:07 dsd-pc kernel: [   12.406940][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.407504][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1338 (reg 10793, index 38) beyond range (1350, 196)
Jun 23 16:37:07 dsd-pc kernel: [   12.407505][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.408542][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1338 (reg 10802, index 39) beyond range (1351, 197)
Jun 23 16:37:07 dsd-pc kernel: [   12.408542][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.409580][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1339 (reg 10810, index 40) beyond range (1352, 198)
Jun 23 16:37:07 dsd-pc kernel: [   12.409581][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.410621][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1339 (reg 10818, index 41) beyond range (1353, 199)
Jun 23 16:37:07 dsd-pc kernel: [   12.410622][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.410909][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1339 (reg 10821, index 42) beyond range (1353, 199)
Jun 23 16:37:07 dsd-pc kernel: [   12.410910][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.411476][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1339 (reg 10825, index 43) beyond range (1354, 200)
Jun 23 16:37:07 dsd-pc kernel: [   12.411477][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.411666][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1339 (reg 10827, index 44) beyond range (1354, 200)
Jun 23 16:37:07 dsd-pc kernel: [   12.411667][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.412704][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1339 (reg 10835, index 45) beyond range (1355, 201)
Jun 23 16:37:07 dsd-pc kernel: [   12.412705][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.413742][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1339 (reg 10843, index 46) beyond range (1356, 202)
Jun 23 16:37:07 dsd-pc kernel: [   12.413743][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.426973][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1368 (reg 10949, index 18) beyond range (1369, 215)
Jun 23 16:37:07 dsd-pc kernel: [   12.426975][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.427540][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1368 (reg 10954, index 19) beyond range (1370, 216)
Jun 23 16:37:07 dsd-pc kernel: [   12.427541][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.427636][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1368 (reg 10954, index 20) beyond range (1370, 216)
Jun 23 16:37:07 dsd-pc kernel: [   12.427637][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.427639][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1368 (reg 10954, index 21) beyond range (1370, 216)
Jun 23 16:37:07 dsd-pc kernel: [   12.427639][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.427641][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1368 (reg 10954, index 22) beyond range (1370, 216)
Jun 23 16:37:07 dsd-pc kernel: [   12.427642][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.427644][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1368 (reg 10954, index 23) beyond range (1370, 216)
Jun 23 16:37:07 dsd-pc kernel: [   12.427644][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.427646][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1369 (reg 10954, index 24) beyond range (1370, 216)
Jun 23 16:37:07 dsd-pc kernel: [   12.427647][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.427648][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1369 (reg 10954, index 25) beyond range (1370, 216)
Jun 23 16:37:07 dsd-pc kernel: [   12.427649][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.427651][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1369 (reg 10954, index 26) beyond range (1370, 216)
Jun 23 16:37:07 dsd-pc kernel: [   12.427651][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.427653][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1369 (reg 10954, index 27) beyond range (1370, 216)
Jun 23 16:37:07 dsd-pc kernel: [   12.427654][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.427655][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1369 (reg 10955, index 28) beyond range (1370, 216)
Jun 23 16:37:07 dsd-pc kernel: [   12.427656][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.427658][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1369 (reg 10955, index 29) beyond range (1370, 216)
Jun 23 16:37:07 dsd-pc kernel: [   12.427658][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.427660][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1369 (reg 10955, index 30) beyond range (1370, 216)
Jun 23 16:37:07 dsd-pc kernel: [   12.427661][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc kernel: [   12.427662][ 7] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1369 (reg 10955, index 31) beyond range (1370, 216)
Jun 23 16:37:07 dsd-pc kernel: [   12.427663][ 7] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:07 dsd-pc ukui-session: [ukui-session] application init done!!
Jun 23 16:37:07 dsd-pc ukui-session: [ukui-session] launch smserver begin!!
Jun 23 16:37:07 dsd-pc ukui-session: [ukui-session] application event loop begin!!
Jun 23 16:37:07 dsd-pc ukui-session: [ukui-session] launch smserver done!!
Jun 23 16:37:07 dsd-pc ukui-session: [ukui-session] start initialization app begin!!
Jun 23 16:37:07 dsd-pc ukui-session: [ukui-session] start initialization app done!!
Jun 23 16:37:07 dsd-pc ukui-session: [ukui-session] start panel begin!!
Jun 23 16:37:07 dsd-pc ukui-session: [ukui-session] start desktop begin!!
Jun 23 16:37:07 dsd-pc ukui-session: [ukui-session] start other desktops begin!!
Jun 23 16:37:07 dsd-pc ukui-session: [ukui-session] start other desktops done!!
Jun 23 16:37:07 dsd-pc kysdk-logrotate[1008]: begin
Jun 23 16:37:07 dsd-pc kysdk-logrotate[1008]: end
Jun 23 16:37:07 dsd-pc systemd[2496]: Starting Sound Service...
Jun 23 16:37:07 dsd-pc uniauth-backend: [Uniauth-Backend] dsd getSaverState: 0!!
Jun 23 16:37:07 dsd-pc : DEBUG [ukui-settings-daemon] xsettings->ukui-xsettings-manager.cpp xsettings_callback line:341   [à¿>ã,V] set scaleFactor:1.50
Jun 23 16:37:08 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:08 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:08 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Activating via systemd: service name='org.gtk.vfs.Daemon' unit='gvfs-daemon.service' requested by ':1.39' (uid=1000 pid=2880 comm="/usr/bin/peony-qt-desktop -w -d " label="")
Jun 23 16:37:08 dsd-pc systemd[2496]: Created slice session.slice.
Jun 23 16:37:08 dsd-pc systemd[2496]: Starting Virtual filesystem service...
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: setrlimit(RLIMIT_NICE, (31, 31)) failed: 不允许的操作
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: setrlimit(RLIMIT_RTPRIO, (9, 9)) failed: 不允许的操作
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] core-rtclock.c: Timer slack is set to 50 us.
Jun 23 16:37:08 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:08 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:08 dsd-pc ukui-input-gather[1060]: New client connected with ID:  12
Jun 23 16:37:08 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:08 dsd-pc dbus-daemon[911]: message repeated 8 times: [ [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation]
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] core-util.c: Failed to acquire high-priority scheduling: 没有那个文件或目录
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: This is PulseAudio 13.99.1
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: Compilation host: x86_64-pc-linux-gnu
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: Compilation CFLAGS: -g -O2 -fdebug-prefix-map=/build/pulseaudio-cIqnMp/pulseaudio-13.99.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wall -W -Wextra -pipe -Wno-long-long -Wno-overlength-strings -Wunsafe-loop-optimizations -Wundef -Wformat=2 -Wlogical-op -Wsign-compare -Wformat-security -Wmissing-include-dirs -Wformat-nonliteral -Wpointer-arith -Winit-self -Wdeclaration-after-statement -Wfloat-equal -Wmissing-prototypes -Wredundant-decls -Wmissing-declarations -Wmissing-noreturn -Wshadow -Wendif-labels -Wcast-align -Wstrict-aliasing -Wwrite-strings -Wno-unused-parameter -fno-common -fdiagnostics-show-option -fdiagnostics-color=auto
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: Running on host: Linux x86_64 5.4.18-164-generic #153 SMP Sun May 10 03:15:58 CST 2026
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: Found 16 CPUs.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: Page size is 4096 bytes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: Compiled with Valgrind support: no
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: Running in valgrind mode: no
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: Running in VM: no
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: Running from build tree: no
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: Optimized build: yes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: FASTPATH defined, only fast path asserts disabled.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: Machine ID is 976685320ed2404a906bfd8a91832b98.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: Session ID is 3.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: Using runtime directory /run/user/1000/pulse.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: Using state directory /home/dsd/.config/pulse.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: Using modules directory /usr/lib/pulse-13.99.1/modules.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: Running in system mode: no
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: System supports high resolution timers
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] memblock.c: Using shared memfd memory pool with 1024 slots of size 64.0 KiB each, total size is 64.0 MiB, maximum usable slot size is 65472
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] cpu-x86.c: CPU flags: CMOV MMX SSE SSE2 SSE3 SSSE3 SSE4_1 SSE4_2 MMXEXT 
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] svolume_mmx.c: Initialising MMX optimized volume functions.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] remap_mmx.c: Initialising MMX optimized remappers.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] svolume_sse.c: Initialising SSE2 optimized volume functions.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] remap_sse.c: Initialising SSE2 optimized remappers.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sconv_sse.c: Initialising SSE2 optimized conversions.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] svolume_orc.c: Initialising ORC optimized volume functions.
Jun 23 16:37:08 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Successfully activated service 'org.gtk.vfs.Daemon'
Jun 23 16:37:08 dsd-pc systemd[2496]: Started Virtual filesystem service.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] database-tdb.c: Opened TDB database '/home/dsd/.config/pulse/976685320ed2404a906bfd8a91832b98-device-volumes.tdb'
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-device-restore.c: Successfully opened database file '/home/dsd/.config/pulse/976685320ed2404a906bfd8a91832b98-device-volumes'.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-device-restore" (index: #0; argument: "").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] database-tdb.c: Opened TDB database '/home/dsd/.config/pulse/976685320ed2404a906bfd8a91832b98-stream-volumes.tdb'
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-stream-restore.c: Successfully opened database file '/home/dsd/.config/pulse/976685320ed2404a906bfd8a91832b98-stream-volumes'.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1 added for object /org/pulseaudio/stream_restore1
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry0
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry1
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-stream-restore" (index: #1; argument: "").
Jun 23 16:37:08 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Activating service name='org.kde.kglobalaccel' requested by ':1.44' (uid=1000 pid=2871 comm="/usr/bin/ukui-kwin_x11 " label="")
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] database-tdb.c: Opened TDB database '/home/dsd/.config/pulse/976685320ed2404a906bfd8a91832b98-card-database.tdb'
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-card-restore.c: Successfully opened database file '/home/dsd/.config/pulse/976685320ed2404a906bfd8a91832b98-card-database'.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-card-restore" (index: #2; argument: "").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-default-device-restore.c: Restoring default sink 'alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output'.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: configured_default_sink: (unset) -> alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-default-device-restore.c: No previous default source setting, ignoring.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-default-device-restore" (index: #3; argument: "").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-switch-on-port-available" (index: #4; argument: "").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-13.99.1/modules/module-udev-detect.so': success
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: /dev/snd/controlC0 is accessible: yes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: /devices/pci0000:00/0000:00:03.1/0000:02:00.0/inno-audio.12.auto/sound/card0 is busy: no
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: Loading module-alsa-card with arguments 'device_id="0" name="pci-0000_02_00.0-platform-inno-audio.12.auto" card_name="alsa_card.pci-0000_02_00.0-platform-inno-audio.12.auto" namereg_fail=false tsched=yes fixed_latency_range=no ignore_dB=no deferred_volume=yes use_ucm=yes avoid_resampling=no card_properties="module-udev-detect.discovered=1"'
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] dbus-util.c: Successfully connected to D-Bus session bus bb47fc63175eccf91ace799b6a3a45b1 as :1.52
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] reserve-wrap.c: Successfully acquired reservation lock on device 'Audio0'
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: UCM available for card hw:0
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: Set UCM verb to HiFi
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: Got PlaybackPCM for device HDMI0: hw:InnosiliconCard,0
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: Got PlaybackCTL for device HDMI0: hw:InnosiliconCard
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: Got PlaybackPriority for device HDMI0: 400
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: Got CaptureCTL for device HDMI0: hw:InnosiliconCard
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: Got JackControl for device HDMI0: HDMI0 Jack
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: UCM file does not specify 'PlaybackChannels' for device HDMI0, assuming stereo.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: No _conflictingdevs for device HDMI0
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: No _supporteddevs for device HDMI0
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-alsa-card.c: Found UCM profiles
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: UCM mapping: Mapping HiFi: hw:InnosiliconCard,0: sink dev HDMI0
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile HiFi (Play HiFi quality Music), input=(null), output=(null) priority=8000, supported=yes n_input_mappings=0, n_output_mappings=1
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Output HiFi: hw:InnosiliconCard,0: sink
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: Set ucm verb to HiFi
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Trying hw:InnosiliconCard,0 with SND_PCM_NO_AUTO_FORMAT ...
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Managed to open hw:InnosiliconCard,0
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Maximum hw buffer size is 232 ms
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Set buffer size first (to 4408 samples), period size second (to 1102 samples).
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: Profile HiFi supported.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Successfully attached to mixer 'hw:InnosiliconCard'
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: UCM jack HDMI0 has_control=1
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile set 0x6d3790, auto_profiles=no, probed=yes, n_mappings=1, n_profiles=1, n_decibel_fixes=0
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Mapping HiFi: hw:InnosiliconCard,0: sink (HDMI0 Playback), priority=400, channel_map=front-left,front-right, supported=yes, direction=1
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile HiFi (Play HiFi quality Music), input=(null), output=(null) priority=8000, supported=yes n_input_mappings=0, n_output_mappings=1
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Output HiFi: hw:InnosiliconCard,0: sink
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: Check device HDMI0 conformance with 0 other devices
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: First device in combination, number 1
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] device-port.c: Setting port [Out] HDMI0 to status no
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: Add port [Out] HDMI0: HDMI0 Playback
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: Port [Out] HDMI0 direction output, priority 400
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: Adding profile HiFi to port [Out] HDMI0.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-card-restore.c: Restoring port latency offsets for card alsa_card.pci-0000_02_00.0-platform-inno-audio.12.auto.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-alsa-card.c: Found 1 jacks.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-alsa-card.c: Jack 'HDMI0 Jack' is now plugged in
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: Looking for initial profile for card alsa_card.pci-0000_02_00.0-platform-inno-audio.12.auto
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: HiFi availability unknown
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: off availability unknown
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: alsa_card.pci-0000_02_00.0-platform-inno-audio.12.auto: active_profile: HiFi
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: Created 0 "alsa_card.pci-0000_02_00.0-platform-inno-audio.12.auto"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-card-restore.c: Storing port latency offsets for card alsa_card.pci-0000_02_00.0-platform-inno-audio.12.auto.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.pci-0000_02_00.0-platform-inno-audio.12.auto profile : HiFi status from: unknown changes to: unknown
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.pci-0000_02_00.0-platform-inno-audio.12.auto profile : off status from: unknown changes to: unknown
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: Set UCM verb to HiFi
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] reserve-wrap.c: Successfully create reservation lock monitor for device 'Audio0'
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Trying hw:InnosiliconCard,0 with SND_PCM_NO_AUTO_FORMAT ...
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Managed to open hw:InnosiliconCard,0
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Trying to disable ALSA period wakeups, using timers only
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Maximum hw buffer size is 232 ms
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Set buffer size first (to 88200 samples), period size second (to 88200 samples).
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: ALSA period wakeups disabled
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Successfully opened device hw:InnosiliconCard,0.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Selected mapping 'HDMI0 Playback' (HiFi: hw:InnosiliconCard,0: sink).
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Successfully enabled mmap() mode.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Successfully enabled timer-based scheduling mode.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: Check device HDMI0 conformance with 0 other devices
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: First device in combination, number 1
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: Port [Out] HDMI0 direction output, priority 400
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: ALSA device hw:InnosiliconCard,0 roles: (null)
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: profile_name = pci-0000_02_00.0-platform-inno-audio.12.auto
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: input profile = 0xffffffff, port_name=pci-0000_02_00.0-platform-inno-audio.12.auto
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-device-restore.c: Restoring volume for sink alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink: front-left: 65536 / 100%,   front-right: 65536 / 100%
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-device-restore.c: Restoring mute state for sink alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink: unmuted
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: pa_device_init_priority, sink->name = alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink,sink->priority  =9000
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: Created sink 0 "alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink" with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.resolution_bits = "16"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.api = "alsa"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.class = "sound"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.class = "generic"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.subclass = "generic-mix"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.name = "inno_audio_pcm"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.id = "inno_audio_pcm"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.subdevice = "0"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.subdevice_name = "subdevice #0"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.device = "0"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.card = "0"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.card_name = "InnosiliconCard"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.long_card_name = "InnosiliconCard0-HDMI0"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.driver_name = "innogpu"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.bus_path = "pci-0000:02:00.0-platform-inno-audio.12.auto"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     sysfs.path = "/devices/pci0000:00/0000:00:03.1/0000:02:00.0/inno-audio.12.auto/sound/card0"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.bus = "pci"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.vendor.id = "1ec8"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.product.id = "9810"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.string = "hw:InnosiliconCard,0"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.buffering.buffer_size = "40960"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.buffering.fragment_size = "10240"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.access_mode = "mmap+timer"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.profile.name = "HiFi: hw:InnosiliconCard,0: sink"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.profile.description = "HDMI0 Playback"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.mixer_device = "hw:InnosiliconCard"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.description = "InnosiliconCard HDMI0 Playback"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     module-udev-detect.discovered = "1"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.icon_name = "audio-card-pci"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] source.c: Created source 0 "alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink.monitor" with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.description = "Monitor of InnosiliconCard HDMI0 Playback"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.class = "monitor"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     alsa.card = "0"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     alsa.card_name = "InnosiliconCard"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     alsa.long_card_name = "InnosiliconCard0-HDMI0"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     alsa.driver_name = "innogpu"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.bus_path = "pci-0000:02:00.0-platform-inno-audio.12.auto"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     sysfs.path = "/devices/pci0000:00/0000:00:03.1/0000:02:00.0/inno-audio.12.auto/sound/card0"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.bus = "pci"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.vendor.id = "1ec8"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.product.id = "9810"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.string = "0"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     module-udev-detect.discovered = "1"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.icon_name = "audio-card-pci"  data->name == alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink.monitor ,data->channel_map 
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Using 4.0 fragments of size 10240 bytes (58.05ms), buffer size is 40960 bytes (232.20ms)
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Time scheduling watermark is 20.00ms
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: hwbuf_unused=0
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: setting avail_min=9358
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: Enable ucm device HDMI0
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: snd_pcm_dump():
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Hardware PCM card 0 'InnosiliconCard' device 0 subdevice 0
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Its setup is:
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   stream       : PLAYBACK
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   access       : MMAP_INTERLEAVED
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   format       : S16_LE
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   subformat    : STD
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   channels     : 2
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   rate         : 44100
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   exact rate   : 44100 (44100/1)
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   msbits       : 16
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   buffer_size  : 10240
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   period_size  : 2560
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   period_time  : 58049
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   tstamp_mode  : ENABLE
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   tstamp_type  : MONOTONIC
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   period_step  : 1
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   avail_min    : 9358
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   period_event : 0
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   start_threshold  : -1
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   stop_threshold   : 5764607523034234880
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   silence_threshold: 0
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   silence_size : 0
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   boundary     : 40960
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   appl_ptr     : 0
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   hw_ptr       : 0
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [alsa-sink-inno_audio_pcm] alsa-sink.c: Thread starting up
Jun 23 16:37:08 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:08 dsd-pc dbus-daemon[911]: message repeated 4 times: [ [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation]
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [alsa-sink-inno_audio_pcm] util.c: Failed to acquire real-time scheduling: 没有那个文件或目录
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink: state: INIT -> IDLE
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [alsa-sink-inno_audio_pcm] alsa-sink.c: Starting playback.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [alsa-sink-inno_audio_pcm] alsa-sink.c: Cutting sleep time for the initial iterations by half.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [alsa-sink-inno_audio_pcm] alsa-sink.c: Cutting sleep time for the initial iterations by half.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] source.c: alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink.monitor: state: INIT -> IDLE
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: pa_core_update_default_source,best->source= alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink.monitor ,old_default_source=(unset)
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: default_source: (unset) -> alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink.monitor
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-device-restore.c: Could not set format on sink alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: default_sink: (unset) -> alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: pa_core_update_default_source,best->source= alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink.monitor ,old_default_source=alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink.monitor
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-alsa-card.c: No ELD device found for port [Out] HDMI0 (0).
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-alsa-card" (index: #6; argument: "device_id="0" name="pci-0000_02_00.0-platform-inno-audio.12.auto" card_name="alsa_card.pci-0000_02_00.0-platform-inno-audio.12.auto" namereg_fail=false tsched=yes fixed_latency_range=no ignore_dB=no deferred_volume=yes use_ucm=yes avoid_resampling=no card_properties="module-udev-detect.discovered=1"").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: Card /devices/pci0000:00/0000:00:03.1/0000:02:00.0/inno-audio.12.auto/sound/card0 (alsa_card.pci-0000_02_00.0-platform-inno-audio.12.auto) module loaded.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: /dev/snd/controlC1 is accessible: yes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: /devices/pci0000:00/0000:00:07.1/0000:03:00.3/usb1/1-3/1-3:1.0/sound/card1 is busy: yes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: Found 2 cards.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-udev-detect" (index: #5; argument: "").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-augment-properties" (index: #7; argument: "").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-13.99.1/modules/module-switch-on-connect.so': success
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-switch-on-connect" (index: #8; argument: "").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-13.99.1/modules/module-jackdbus-detect.so': failure
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-13.99.1/modules/module-bluetooth-policy.so': success
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-bluetooth-policy" (index: #9; argument: "").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-13.99.1/modules/module-bluetooth-discover.so': success
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-13.99.1/modules/module-bluez5-discover.so': success
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] dbus-util.c: Successfully connected to D-Bus system bus 3a2aac0a2fe74511ee3de9e06a3a45ad as :1.107
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] a2dp-codec-aac.c: can_be_supported
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: message repeated 11 times: [ [pulseaudio] a2dp-codec-aac.c: can_be_supported]
Jun 23 16:37:08 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Successfully activated service 'org.kde.kglobalaccel'
Jun 23 16:37:08 dsd-pc python3[1939]: caller:  :1.107
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-bluez5-discover" (index: #11; argument: "enable_msbc=false").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-bluetooth-discover" (index: #10; argument: "enable_msbc=false").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-13.99.1/modules/module-esound-protocol-unix.so': failure
Jun 23 16:37:08 dsd-pc dbus-daemon[911]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.107' (uid=1000 pid=2928 comm="/usr/bin/pulseaudio --daemonize=no --log-target=sy" label="")
Jun 23 16:37:08 dsd-pc systemd[1]: /lib/systemd/system/bluetooth.service:5: Failed to add dependency on lightdm.sevice, ignoring: Invalid argument
Jun 23 16:37:08 dsd-pc systemd[1]: /lib/systemd/system/bluetooth.service:18: Unknown key name 'After' in section 'Service', ignoring.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] socket-server.c: Found socket activation socket for '/run/user/1000/pulse/native' \o/
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-native-protocol-unix" (index: #12; argument: "").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-13.99.1/modules/module-gsettings.so': failure
Jun 23 16:37:08 dsd-pc systemd[1]: Condition check resulted in Bluetooth service being skipped.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-always-sink" (index: #13; argument: "").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-intended-roles" (index: #14; argument: "").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink becomes idle, timeout in 5 seconds.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-suspend-on-idle" (index: #15; argument: "").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-13.99.1/modules/module-console-kit.so': success
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-console-kit" (index: #16; argument: "").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-13.99.1/modules/module-systemd-login.so': success
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Created 0 "Login Session 3"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-systemd-login.c: Added new session 3
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: exit_idle_time: 20 -> 0
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-systemd-login" (index: #17; argument: "").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-position-event-sounds" (index: #18; argument: "").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] stream-interaction.c: Using role 'phone' as trigger role.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] stream-interaction.c: Using roles 'music' and 'video' as cork roles.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-role-cork" (index: #19; argument: "").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Checking for existence of '/usr/lib/pulse-13.99.1/modules/module-snap-policy.so': failure
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-filter-heuristics" (index: #20; argument: "").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-filter-apply" (index: #21; argument: "").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: Got org.PulseAudio1!
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: Got org.PulseAudio.DeviceControl!
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: Got org.pulseaudio.Server!
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] main.c: Daemon startup complete.
Jun 23 16:37:08 dsd-pc systemd[2496]: Started Sound Service.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Created 1 "Native client (UNIX socket client)"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: /dev/snd/controlC0 is accessible: yes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: Resuming all sinks and sources of card alsa_card.pci-0000_02_00.0-platform-inno-audio.12.auto.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Created 2 "Native client (UNIX socket client)"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Freed 2 "Native client (UNIX socket client)"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Connection died.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Protocol version: remote 33, local 33
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=1000 success=1
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: SHM possible: yes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Memfd possible: yes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Negotiated SHM type: shared memfd
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] memblock.c: Using shared memfd memory pool with 1024 slots of size 64.0 KiB each, total size is 64.0 MiB, maximum usable slot size is 65472
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] srbchannel.c: SHM block is 65472 bytes, ringbuffer capacity is 2 * 32712 bytes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Enabling srbchannel...
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for pactl
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Client enabled srbchannel.
Jun 23 16:37:08 dsd-pc dbus-daemon[911]: [system] Activating service name='org.ukui.powermanagement' requested by ':1.87' (uid=1000 pid=2878 comm="/usr/bin/ukui-settings-daemon " label="") (using servicehelper)
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-x11-publish" (index: #22; argument: "display=:0 xauthority=/home/dsd/.Xauthority").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Freed 1 "pactl"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Connection died.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Created 3 "Native client (UNIX socket client)"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Protocol version: remote 33, local 33
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=1000 success=1
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: SHM possible: yes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Memfd possible: yes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Negotiated SHM type: shared memfd
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] memblock.c: Using shared memfd memory pool with 1024 slots of size 64.0 KiB each, total size is 64.0 MiB, maximum usable slot size is 65472
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] srbchannel.c: SHM block is 65472 bytes, ringbuffer capacity is 2 * 32712 bytes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Enabling srbchannel...
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for pactl
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Client enabled srbchannel.
Jun 23 16:37:08 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:08 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'org.ukui.powermanagement'
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-x11-cork-request.c: XTest 2.2 supported.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-x11-cork-request" (index: #23; argument: "display=:0 xauthority=/home/dsd/.Xauthority").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Freed 3 "pactl"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Connection died.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Created 4 "Native client (UNIX socket client)"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Protocol version: remote 33, local 33
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=1000 success=1
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: SHM possible: yes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Memfd possible: yes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Negotiated SHM type: shared memfd
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] memblock.c: Using shared memfd memory pool with 1024 slots of size 64.0 KiB each, total size is 64.0 MiB, maximum usable slot size is 65472
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] srbchannel.c: SHM block is 65472 bytes, ringbuffer capacity is 2 * 32712 bytes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Enabling srbchannel...
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for pactl
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Client enabled srbchannel.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-x11-xsmp.c: Connected to session manager 'ukuismserver' as '10d4d6642d000178220382800000028600007'.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Created 5 "XSMP Session on ukuismserver as 10d4d6642d000178220382800000028600007"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-x11-xsmp" (index: #24; argument: "display=:0 xauthority=/home/dsd/.Xauthority session_manager=local/dsd-pc:@/tmp/.ICE-unix/2860,unix/dsd-pc:/tmp/.ICE-unix/2860").
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Freed 4 "pactl"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Connection died.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Created 6 "Native client (UNIX socket client)"
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Protocol version: remote 33, local 33
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=1000 success=1
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: SHM possible: yes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Memfd possible: yes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Negotiated SHM type: shared memfd
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] memblock.c: Using shared memfd memory pool with 1024 slots of size 64.0 KiB each, total size is 64.0 MiB, maximum usable slot size is 65472
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] srbchannel.c: SHM block is 65472 bytes, ringbuffer capacity is 2 * 32712 bytes
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Enabling srbchannel...
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for ukui-settings-daemon
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Client enabled srbchannel.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: [alsa-sink-inno_audio_pcm] alsa-sink.c: Cutting sleep time for the initial iterations by half.
Jun 23 16:37:08 dsd-pc pulseaudio[2928]: message repeated 8 times: [ [alsa-sink-inno_audio_pcm] alsa-sink.c: Cutting sleep time for the initial iterations by half.]
Jun 23 16:37:08 dsd-pc dbus-daemon[911]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service' requested by ':1.87' (uid=1000 pid=2878 comm="/usr/bin/ukui-settings-daemon " label="")
Jun 23 16:37:08 dsd-pc systemd[1]: Starting Daemon for power management...
Jun 23 16:37:08 dsd-pc com.ksc.vulnerability[2840]: 正在读取软件包列表...
Jun 23 16:37:08 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Activating via systemd: service name='org.gtk.vfs.UDisks2VolumeMonitor' unit='gvfs-udisks2-volume-monitor.service' requested by ':1.57' (uid=1000 pid=3045 comm="/usr/libexec/gvfsd-computer --spawner :1.47 /org/g" label="")
Jun 23 16:37:08 dsd-pc systemd[2496]: Starting Virtual filesystem service - disk device monitor...
Jun 23 16:37:08 dsd-pc com.ksc.vulnerability[2840]: W: 无法下载 http://archive.kylinos.cn/kylin/KYLIN-ALL/dists/10.1-kylin/InRelease  暂时不能解析域名“archive.kylinos.cn”
Jun 23 16:37:08 dsd-pc com.ksc.vulnerability[2840]: W: 无法下载 http://archive.kylinos.cn/kylin/KYLIN-ALL/dists/10.1-kylin-2503/InRelease  暂时不能解析域名“archive.kylinos.cn”
Jun 23 16:37:08 dsd-pc com.ksc.vulnerability[2840]: W: 无法下载 http://archive.kylinos.cn/kylin/KYLIN-ALL/dists/10.1-2503-bugfix/InRelease  暂时不能解析域名“archive.kylinos.cn”
Jun 23 16:37:08 dsd-pc com.ksc.vulnerability[2840]: W: 无法下载 http://archive2.kylinos.cn/deb/kylin/production/PART-V10-SP1/custom/partner/V10-SP1/dists/default/InRelease  暂时不能解析域名“archive2.kylinos.cn”
Jun 23 16:37:08 dsd-pc com.ksc.vulnerability[2840]: W: 部分索引文件下载失败。如果忽略它们,那将转而使用旧的索引文件。
Jun 23 16:37:08 dsd-pc com.ksc.vulnerability[3062]: 正在读取软件包列表...
Jun 23 16:37:08 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Successfully activated service 'org.gtk.vfs.UDisks2VolumeMonitor'
Jun 23 16:37:08 dsd-pc systemd[2496]: Started Virtual filesystem service - disk device monitor.
Jun 23 16:37:08 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Activating via systemd: service name='org.gtk.vfs.GoaVolumeMonitor' unit='gvfs-goa-volume-monitor.service' requested by ':1.57' (uid=1000 pid=3045 comm="/usr/libexec/gvfsd-computer --spawner :1.47 /org/g" label="")
Jun 23 16:37:08 dsd-pc systemd[2496]: Starting Virtual filesystem service - GNOME Online Accounts monitor...
Jun 23 16:37:08 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Successfully activated service 'org.gtk.vfs.GoaVolumeMonitor'
Jun 23 16:37:08 dsd-pc systemd[2496]: Started Virtual filesystem service - GNOME Online Accounts monitor.
Jun 23 16:37:08 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Activating via systemd: service name='org.gtk.vfs.GPhoto2VolumeMonitor' unit='gvfs-gphoto2-volume-monitor.service' requested by ':1.57' (uid=1000 pid=3045 comm="/usr/libexec/gvfsd-computer --spawner :1.47 /org/g" label="")
Jun 23 16:37:08 dsd-pc systemd[2496]: Starting Virtual filesystem service - digital camera monitor...
Jun 23 16:37:08 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Successfully activated service 'org.gtk.vfs.GPhoto2VolumeMonitor'
Jun 23 16:37:08 dsd-pc systemd[2496]: Started Virtual filesystem service - digital camera monitor.
Jun 23 16:37:08 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Activating via systemd: service name='org.gtk.vfs.MTPVolumeMonitor' unit='gvfs-mtp-volume-monitor.service' requested by ':1.57' (uid=1000 pid=3045 comm="/usr/libexec/gvfsd-computer --spawner :1.47 /org/g" label="")
Jun 23 16:37:08 dsd-pc systemd[2496]: Starting Virtual filesystem service - Media Transfer Protocol monitor...
Jun 23 16:37:08 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Successfully activated service 'org.gtk.vfs.MTPVolumeMonitor'
Jun 23 16:37:08 dsd-pc systemd[2496]: Started Virtual filesystem service - Media Transfer Protocol monitor.
Jun 23 16:37:08 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Activating via systemd: service name='org.gtk.vfs.AfcVolumeMonitor' unit='gvfs-afc-volume-monitor.service' requested by ':1.57' (uid=1000 pid=3045 comm="/usr/libexec/gvfsd-computer --spawner :1.47 /org/g" label="")
Jun 23 16:37:08 dsd-pc systemd[2496]: Starting Virtual filesystem service - Apple File Conduit monitor...
Jun 23 16:37:08 dsd-pc ukui-session: [ukui-session] start windowmanager done!!
Jun 23 16:37:08 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Successfully activated service 'org.gtk.vfs.AfcVolumeMonitor'
Jun 23 16:37:08 dsd-pc systemd[2496]: Started Virtual filesystem service - Apple File Conduit monitor.
Jun 23 16:37:08 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Activating via systemd: service name='org.gtk.vfs.Metadata' unit='gvfs-metadata.service' requested by ':1.39' (uid=1000 pid=2880 comm="/usr/bin/peony-qt-desktop -w -d " label="")
Jun 23 16:37:08 dsd-pc systemd[2496]: Starting Virtual filesystem metadata service...
Jun 23 16:37:08 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Successfully activated service 'org.gtk.vfs.Metadata'
Jun 23 16:37:08 dsd-pc systemd[2496]: Started Virtual filesystem metadata service.
Jun 23 16:37:08 dsd-pc ukui-session: [ukui-session] start desktop done!!
Jun 23 16:37:08 dsd-pc udisksd[1052]: Mounted /dev/sdb1 at /media/dsd/C20C-9A63 on behalf of uid 1000
Jun 23 16:37:08 dsd-pc kernel: [   13.814175][12] [ T3128] FAT-fs (sdb1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
Jun 23 16:37:08 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:08 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'org.freedesktop.UPower'
Jun 23 16:37:08 dsd-pc systemd[1]: Started Daemon for power management.
Jun 23 16:37:08 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: ESP
Jun 23 16:37:08 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: UEFI_NTFS
Jun 23 16:37:09 dsd-pc kernel: [   13.837191][14] [ T1548] FAT-fs (sdb2): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
Jun 23 16:37:09 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: UEFI_NTFS
Jun 23 16:37:09 dsd-pc udisksd[1052]: Mounted /dev/sdb2 at /media/dsd/UEFI_NTFS on behalf of uid 1000
Jun 23 16:37:09 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: ESP
Jun 23 16:37:09 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: UEFI_NTFS
Jun 23 16:37:09 dsd-pc com.ksc.vulnerability[3062]: 正在分析软件包的依赖关系树...
Jun 23 16:37:09 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:09 dsd-pc com.ksc.vulnerability[3062]: 正在读取状态信息...
Jun 23 16:37:09 dsd-pc ukui-session: [ukui-session] start panel done!!
Jun 23 16:37:09 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Created 7 "Native client (UNIX socket client)"
Jun 23 16:37:09 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Protocol version: remote 33, local 33
Jun 23 16:37:09 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=1000 success=1
Jun 23 16:37:09 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: SHM possible: yes
Jun 23 16:37:09 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
Jun 23 16:37:09 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Memfd possible: yes
Jun 23 16:37:09 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Negotiated SHM type: shared memfd
Jun 23 16:37:09 dsd-pc pulseaudio[2928]: [pulseaudio] memblock.c: Using shared memfd memory pool with 1024 slots of size 64.0 KiB each, total size is 64.0 MiB, maximum usable slot size is 65472
Jun 23 16:37:09 dsd-pc pulseaudio[2928]: [pulseaudio] srbchannel.c: SHM block is 65472 bytes, ringbuffer capacity is 2 * 32712 bytes
Jun 23 16:37:09 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Enabling srbchannel...
Jun 23 16:37:09 dsd-pc pulseaudio[2928]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for ukui-settings-daemon
Jun 23 16:37:09 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Client enabled srbchannel.
Jun 23 16:37:09 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Freed 7 "ukui-settings-daemon"
Jun 23 16:37:09 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Connection died.
Jun 23 16:37:09 dsd-pc dbus-daemon[911]: [system] Activating service name='com.kylin.system.proxy' requested by ':1.87' (uid=1000 pid=2878 comm="/usr/bin/ukui-settings-daemon " label="") (using servicehelper)
Jun 23 16:37:09 dsd-pc com.kylin.system.proxy[3153]: <debug> Manager.go:58: enter Manager.go Init
Jun 23 16:37:09 dsd-pc proxy/dbus[3153]: Manager.go:58: enter Manager.go Init
Jun 23 16:37:09 dsd-pc com.kylin.system.proxy[3153]: <debug> Manager.go:75: Manager enter LoadConfig
Jun 23 16:37:09 dsd-pc com.kylin.system.proxy[3153]: <debug> utils.go:348: enter GetConfigDir
Jun 23 16:37:09 dsd-pc proxy/dbus[3153]: Manager.go:75: Manager enter LoadConfig
Jun 23 16:37:09 dsd-pc com.kylin.system.proxy[3153]: <debug> Manager.go:78: com.GetConfigDir path : /etc/kylin/kylin-proxy
Jun 23 16:37:09 dsd-pc com.kylin.system.proxy[3153]: <debug> Manager.go:84: filepath.Join path : /etc/kylin/kylin-proxy/proxy.yaml
Jun 23 16:37:09 dsd-pc proxy/com[3153]: utils.go:348: enter GetConfigDir
Jun 23 16:37:09 dsd-pc proxy/dbus[3153]: Manager.go:78: com.GetConfigDir path : /etc/kylin/kylin-proxy
Jun 23 16:37:09 dsd-pc proxy/dbus[3153]: Manager.go:84: filepath.Join path : /etc/kylin/kylin-proxy/proxy.yaml
Jun 23 16:37:09 dsd-pc com.kylin.system.proxy[3153]: <debug> Manager.go:115: Manager enter Export
Jun 23 16:37:09 dsd-pc com.kylin.system.proxy[3153]: <debug> proxyPriv.go:174: proxyPrv enter LoadConfig
Jun 23 16:37:09 dsd-pc proxy/dbus[3153]: Manager.go:115: Manager enter Export
Jun 23 16:37:09 dsd-pc com.kylin.system.proxy[3153]: <debug> proxyPriv.go:177: [App] load config success, config: {map[http:[{http http_1 10.20.31.158 808  } {http http_2 10.20.31.132 80 kylin 12345678}] sock4:[{sock4 sock4_1 10.20.31.132 1080 kylin 12345678} {sock4 sock4_2 10.20.31.132 1080 kylin 12345678}] sock5:[{sock5 sock5_1 10.20.31.154 1080 kylin 12345678} {sock5 sock5_2 10.20.31.132 1080 kylin 12345678}]] [apt ssr] [apt ssr] [baidu.com si.com] 8090 6363 true}
Jun 23 16:37:09 dsd-pc proxy/dbus[3153]: proxyPriv.go:174: proxyPrv enter LoadConfig
Jun 23 16:37:09 dsd-pc proxy/dbus[3153]: proxyPriv.go:177: [App] load config success, config: {map[http:[{http http_1 10.20.31.158 808  } {http http_2 10.20.31.132 80 kylin 12345678}] sock4:[{sock4 sock4_1 10.20.31.132 1080 kylin 12345678} {sock4 sock4_2 10.20.31.132 1080 kylin 12345678}] sock5:[{sock5 sock5_1 10.20.31.154 1080 kylin 12345678} {sock5 sock5_2 10.20.31.132 1080 kylin 12345678}]] [apt ssr] [apt ssr] [baidu.com si.com] 8090 6363 true}
Jun 23 16:37:09 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:09 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'com.kylin.system.proxy'
Jun 23 16:37:09 dsd-pc com.kylin.system.proxy[3153]: <debug> proxyPriv_proxy.go:152: enter StopProxy
Jun 23 16:37:09 dsd-pc com.kylin.system.proxy[3153]: <debug> proxyPriv_proxy.go:154: mgr.Enabled == false
Jun 23 16:37:09 dsd-pc proxy/dbus[3153]: proxyPriv_proxy.go:152: enter StopProxy
Jun 23 16:37:09 dsd-pc proxy/dbus[3153]: proxyPriv_proxy.go:154: mgr.Enabled == false
Jun 23 16:37:09 dsd-pc com.ksc.vulnerability[3062]: 下列软件包将被升级:
Jun 23 16:37:09 dsd-pc com.ksc.vulnerability[3062]:   kylin-vulnerability-info
Jun 23 16:37:09 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Activating service name='org.kde.KScreen' requested by ':1.41' (uid=1000 pid=2878 comm="/usr/bin/ukui-settings-daemon " label="")
Jun 23 16:37:09 dsd-pc com.ksc.vulnerability[3062]: 升级了 1 个软件包,新安装了 0 个软件包,要卸载 0 个软件包,有 670 个软件包未被升级。
Jun 23 16:37:09 dsd-pc com.ksc.vulnerability[3062]: 需要下载 1,069 kB 的归档。
Jun 23 16:37:09 dsd-pc com.ksc.vulnerability[3062]: 解压缩后会消耗 1,382 kB 的额外空间。
Jun 23 16:37:09 dsd-pc com.ksc.vulnerability[3062]: 错误:1 http://archive.kylinos.cn/kylin/KYLIN-ALL 10.1-kylin-2503/universe amd64 kylin-vulnerability-info all 1.1.0.0-0k0.6
Jun 23 16:37:09 dsd-pc com.ksc.vulnerability[3062]:   暂时不能解析域名“archive.kylinos.cn”
Jun 23 16:37:09 dsd-pc com.ksc.vulnerability[3062]: E: 无法下载 http://archive.kylinos.cn/kylin/KYLIN-ALL/pool/universe/k/kylin-vulnerability-info/kylin-vulnerability-info_1.1.0.0-0k0.6_all.deb  暂时不能解析域名“archive.kylinos.cn”
Jun 23 16:37:09 dsd-pc com.ksc.vulnerability[3062]: E: 有几个软件包无法下载,要不运行 apt-get update 或者加上 --fix-missing 的选项再试试?
Jun 23 16:37:09 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Successfully activated service 'org.kde.KScreen'
Jun 23 16:37:09 dsd-pc org.kde.KScreen[3167]: kscreen.xrandr: Connected output 66 to CRTC 65
Jun 23 16:37:09 dsd-pc org.kde.KScreen[3167]: kscreen.xrandr: checkGpuType init
Jun 23 16:37:09 dsd-pc org.kde.KScreen[3167]: kscreen.xcb.helper: Detected XRandR 1.6
Jun 23 16:37:09 dsd-pc org.kde.KScreen[3167]: kscreen.xcb.helper: Event Base:  89
Jun 23 16:37:09 dsd-pc org.kde.KScreen[3167]: kscreen.xcb.helper: Event Er Base:  147
Jun 23 16:37:09 dsd-pc : DEBUG [ukui-settings-daemon] xrandr->../../common/touch-calibrate.cpp getScreenList line:207   HDMI-1  width : 621 height : 341
Jun 23 16:37:10 dsd-pc ukui-session: [ukui-session] start windowmanager done!!
Jun 23 16:37:11 dsd-pc ukui-session: [ukui-session] start other apps begin!!
Jun 23 16:37:11 dsd-pc kysdk-logrotate[1008]: begin
Jun 23 16:37:11 dsd-pc kysec-daemon[1684]: delete_invalid_device_record: 3937: delete sql: DELETE FROM device_record WHERE id in (SELECT id FROM device_record WHERE datetime(access_t)<'2026-06-23 16:36:54' and duration='00:00:00' and perm!='2')
Jun 23 16:37:11 dsd-pc kysdk-logrotate[1008]: end
Jun 23 16:37:11 dsd-pc kysec-daemon[1684]: delete_invalid_device_record: 3945: delete sql exec success!
Jun 23 16:37:11 dsd-pc dbus-daemon[911]: [system] Activating service name='org.freedesktop.activation' requested by ':1.117' (uid=1000 pid=3342 comm="/usr/bin/kylin-activation-volume " label="") (using servicehelper)
Jun 23 16:37:11 dsd-pc systemd[1]: Started Kylin VD Daemon Service.
Jun 23 16:37:11 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:11 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:11 dsd-pc systemd[2496]: Started Daily update attention when user login.
Jun 23 16:37:11 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Activating service name='com.kylin.softwarecenter.packageInfo' requested by ':1.86' (uid=1000 pid=3360 comm="/usr/bin/kylin-software-center -quiet " label="")
Jun 23 16:37:11 dsd-pc kysdk-logrotate[1008]: begin
Jun 23 16:37:11 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: /dev/snd/controlC1 is accessible: yes
Jun 23 16:37:11 dsd-pc secRiskBox: connect(signal_create):state:1  
Jun 23 16:37:11 dsd-pc secRiskBox: connect(signal_show):state:1  
Jun 23 16:37:11 dsd-pc dbus-daemon[911]: [system] Activating service name='com.kylin.screen.rotation' requested by ':1.125' (uid=1000 pid=3396 comm="/usr/bin/screenMonitorGeneral " label="") (using servicehelper)
Jun 23 16:37:11 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: /devices/pci0000:00/0000:00:07.1/0000:03:00.3/usb1/1-3/1-3:1.0/sound/card1 is busy: no
Jun 23 16:37:11 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: Loading module-alsa-card with arguments 'device_id="1" name="usb-Generic_USB_Audio-00" card_name="alsa_card.usb-Generic_USB_Audio-00" namereg_fail=false tsched=yes fixed_latency_range=no ignore_dB=no deferred_volume=yes use_ucm=yes avoid_resampling=no card_properties="module-udev-detect.discovered=1"'
Jun 23 16:37:11 dsd-pc lightdm[1921]: instance with invalid (NULL) class pointer
Jun 23 16:37:11 dsd-pc lightdm[1921]: g_signal_emit_valist: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
Jun 23 16:37:11 dsd-pc pulseaudio[2928]: [pulseaudio] reserve-wrap.c: Successfully acquired reservation lock on device 'Audio1'
Jun 23 16:37:11 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Activating service name='org.ukui.ukcc.session' requested by ':1.83' (uid=1000 pid=3350 comm="/usr/bin/kylin-nm " label="")
Jun 23 16:37:11 dsd-pc pulseaudio[2928]: [pulseaudio] (alsa-lib)parser.c: uknown master file field Error
Jun 23 16:37:11 dsd-pc pulseaudio[2928]: [pulseaudio] (alsa-lib)main.c: error: failed to import hw:1 (empty configuration)
Jun 23 16:37:11 dsd-pc pulseaudio[2928]: [pulseaudio] (alsa-lib)parser.c: uknown master file field Error
Jun 23 16:37:11 dsd-pc pulseaudio[2928]: [pulseaudio] (alsa-lib)main.c: error: failed to import USB Audio (empty configuration)
Jun 23 16:37:11 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-ucm.c: UCM not available for card USB Audio
Jun 23 16:37:11 dsd-pc pulseaudio[2928]: [pulseaudio] module-alsa-card.c: Load the corresponding configuration file: dsd-m26-usb-audio.conf
Jun 23 16:37:11 dsd-pc pulseaudio[2928]: [pulseaudio] conf-parser.c: Parsing configuration file '/usr/share/pulseaudio/alsa-mixer/profile-sets/dsd-m26-usb-audio.conf'
Jun 23 16:37:11 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Looking at profile input:analog-input-front-mic
Jun 23 16:37:11 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Stereo Front Mic (analog-input-front-mic)
Jun 23 16:37:11 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Trying hw:1,2 with SND_PCM_NO_AUTO_FORMAT ...
Jun 23 16:37:11 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Managed to open hw:1,2
Jun 23 16:37:11 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Maximum hw buffer size is 5944 ms
Jun 23 16:37:11 dsd-pc kysdk-logrotate[1008]: end
Jun 23 16:37:11 dsd-pc kysdk-logrotate[1008]: begin
Jun 23 16:37:11 dsd-pc kysdk-logrotate[1008]: end
Jun 23 16:37:11 dsd-pc vddaemon[3359]: socketName: "kyipcsocket-47a24e15-7d19" "kylin-vd-daemon"
Jun 23 16:37:11 dsd-pc ukui-session: [ukui-session] start other apps done!!
Jun 23 16:37:11 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Set buffer size first (to 4408 samples), period size second (to 1102 samples).
Jun 23 16:37:11 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile input:analog-input-front-mic supported.
Jun 23 16:37:11 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:11 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'com.kylin.screen.rotation'
Jun 23 16:37:11 dsd-pc kysdk-logrotate[1008]: begin
Jun 23 16:37:11 dsd-pc dbus-daemon[911]: [system] Activating service name='com.kylin.daq' requested by ':1.132' (uid=1000 pid=3492 comm="/usr/bin/ukui-sidebar " label="") (using servicehelper)
Jun 23 16:37:11 dsd-pc dbus-daemon[911]: [system] Activating service name='com.kylin.screen.rotation' requested by ':1.125' (uid=1000 pid=3396 comm="/usr/bin/screenMonitorGeneral " label="") (using servicehelper)
Jun 23 16:37:11 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Successfully activated service 'com.kylin.softwarecenter.packageInfo'
Jun 23 16:37:12 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:12 dsd-pc dbus-daemon[911]: message repeated 2 times: [ [system] [limitCtl]:service integrity check skiped: integrity map missing]
Jun 23 16:37:12 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'com.kylin.screen.rotation'
Jun 23 16:37:12 dsd-pc ukui-volume-control-applet-qt: usr info file path: /home/dsd/.config/audio.json.
Jun 23 16:37:12 dsd-pc dbus-daemon[911]: [system] Activating service name='com.ukui.search.qt.systemdbus' requested by ':1.141' (uid=1000 pid=3470 comm="/usr/bin/ukui-search-app-data-service " label="") (using servicehelper)
Jun 23 16:37:12 dsd-pc python3[1939]: caller:  :1.142
Jun 23 16:37:12 dsd-pc systemd[1]: NetworkManager-dispatcher.service: Succeeded.
Jun 23 16:37:12 dsd-pc kysdk-logrotate[1008]: end
Jun 23 16:37:12 dsd-pc kysdk-logrotate[1008]: begin
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] conf-parser.c: Parsing configuration file '/usr/share/pulseaudio/alsa-mixer/paths/analog-input-mic.conf'
Jun 23 16:37:12 dsd-pc vddaemon[3359]: kylin-vd-daemon run as server, is running
Jun 23 16:37:12 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:12 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'com.ukui.search.qt.systemdbus'
Jun 23 16:37:12 dsd-pc dbus-daemon[2581]: [session uid=1000 pid=2581] Successfully activated service 'org.ukui.ukcc.session'
Jun 23 16:37:12 dsd-pc org.ukui.ukcc.session[3512]: removeRecursively: "/home/dsd/.local/share/ukui-control-center/wallpaperData/"
Jun 23 16:37:12 dsd-pc org.ukui.ukcc.session[3512]: mkpath: "/home/dsd/.local/share/ukui-control-center/wallpaperData/" success.
Jun 23 16:37:12 dsd-pc dbus-daemon[911]: [system] Activating service name='com.control.center.qt.systemdbus' requested by ':1.152' (uid=1000 pid=3512 comm="/usr/bin/ukui-control-center-session " label="") (using servicehelper)
Jun 23 16:37:12 dsd-pc kysdk-logrotate[1008]: end
Jun 23 16:37:12 dsd-pc kysdk-logrotate[1008]: begin
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] conf-parser.c: Parsing configuration file '/usr/share/pulseaudio/alsa-mixer/paths/analog-input-mic.conf.common'
Jun 23 16:37:12 dsd-pc kysdk-logrotate[1008]: end
Jun 23 16:37:12 dsd-pc kysdk-logrotate[1008]: begin
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Successfully attached to mixer 'hw:1'
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-mic'
Jun 23 16:37:12 dsd-pc kysdk-logrotate[1008]: end
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Mic Jack' succeeded (found!)
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Mic - Input Jack' succeeded (not found)
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Mic Phantom Jack' succeeded (not found)
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Microphone - Input Jack' succeeded (not found)
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Boost' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=1, switch=1, enumeration=0, has_dB=1).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Input Source' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Capture Source' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'PCM Capture Source' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Select' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Boost (+20dB)' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic' succeeded (volume=2, switch=2, enumeration=0, has_dB=1).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic Boost' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic Boost' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic Boost' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic Boost' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=2, switch=2, enumeration=0, has_dB=1).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Line Boost' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'FM' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Inverted Internal Mic' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Jack Mode' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Available mixer paths (after tidying):
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Path Set 0x723110, direction=2
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Path analog-input-mic (话筒), direction=2, priority=87, probed=yes, supported=yes, has_mute=yes, has_volume=yes, has_dB=yes, min_volume=0, max_volume=39, min_dB=-17.25, max_dB=12
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: [frank] ismultichannel = 0
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Element 'Mic', direction=2, switch=1, volume=1, volume_limit=-1, enumeration=0, required=0, required_any=4, required_absent=0, mask=0x3600000000f66, n_channels=2, override_map=03
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Element 'Rear Mic', direction=2, switch=2, volume=2, volume_limit=-1, enumeration=0, required=0, required_any=0, required_absent=0, mask=0x6, n_channels=2, override_map=00
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Element 'Line', direction=2, switch=2, volume=2, volume_limit=-1, enumeration=0, required=0, required_any=0, required_absent=0, mask=0x6, n_channels=2, override_map=00
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Mic, alsa_name='Mic Jack', index='0', detection possible
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Mic - Input, alsa_name='Mic - Input Jack', index='0', detection unavailable
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Mic Phantom, alsa_name='Mic Phantom Jack', index='0', detection unavailable
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Microphone - Input, alsa_name='Microphone - Input Jack', index='0', detection unavailable
Jun 23 16:37:12 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:12 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'org.freedesktop.activation'
Jun 23 16:37:12 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:12 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:12 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'com.control.center.qt.systemdbus'
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Looking at profile input:analog-input-rear-mic
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Stereo Rear Mic (analog-input-rear-mic)
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Trying hw:1,0 with SND_PCM_NO_AUTO_FORMAT ...
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Managed to open hw:1,0
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Maximum hw buffer size is 5944 ms
Jun 23 16:37:12 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:12 dsd-pc dbus-daemon[911]: message repeated 2 times: [ [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation]
Jun 23 16:37:12 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:12 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'com.kylin.daq'
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Set buffer size first (to 4408 samples), period size second (to 1102 samples).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile input:analog-input-rear-mic supported.
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] conf-parser.c: Parsing configuration file '/usr/share/pulseaudio/alsa-mixer/paths/analog-input-rear-mic.conf'
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] conf-parser.c: Parsing configuration file '/usr/share/pulseaudio/alsa-mixer/paths/analog-input-mic.conf.common'
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-rear-mic'
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Rear Mic Jack' succeeded (found!)
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Rear Mic - Input Jack' succeeded (not found)
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Rear Mic Phantom Jack' succeeded (not found)
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Front Mic Jack' succeeded (not found)
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Mic Jack' succeeded (found!)
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic Boost' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic' succeeded (volume=1, switch=1, enumeration=0, has_dB=1).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Panel Mic in' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Stereo Mic' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Channel Mode' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Input Source' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Capture Source' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=2, switch=2, enumeration=0, has_dB=1).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Boost' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic Boost' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic Boost' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic Boost' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=2, switch=2, enumeration=0, has_dB=1).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Line Boost' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'FM' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Inverted Internal Mic' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Jack Mode' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Available mixer paths (after tidying):
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Path Set 0x7273a0, direction=2
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Path analog-input-rear-mic (后麦克风), direction=2, priority=82, probed=yes, supported=yes, has_mute=yes, has_volume=yes, has_dB=yes, min_volume=0, max_volume=39, min_dB=-17.25, max_dB=12
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: [frank] ismultichannel = 0
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Element 'Rear Mic', direction=2, switch=1, volume=1, volume_limit=-1, enumeration=0, required=0, required_any=4, required_absent=0, mask=0x3600000000f66, n_channels=2, override_map=03
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Element 'Mic', direction=2, switch=2, volume=2, volume_limit=-1, enumeration=0, required=0, required_any=0, required_absent=0, mask=0x6, n_channels=2, override_map=00
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Element 'Line', direction=2, switch=2, volume=2, volume_limit=-1, enumeration=0, required=0, required_any=0, required_absent=0, mask=0x6, n_channels=2, override_map=00
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Rear Mic, alsa_name='Rear Mic Jack', index='0', detection possible
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Rear Mic - Input, alsa_name='Rear Mic - Input Jack', index='0', detection unavailable
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Rear Mic Phantom, alsa_name='Rear Mic Phantom Jack', index='0', detection unavailable
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Front Mic, alsa_name='Front Mic Jack', index='0', detection unavailable
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Mic, alsa_name='Mic Jack', index='0', detection possible
Jun 23 16:37:12 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:12 dsd-pc dbus-daemon[911]: message repeated 2 times: [ [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation]
Jun 23 16:37:12 dsd-pc org.ukui.ukcc.session[3512]: get boot list =  "Kylin V10 SP1 5.4.18-164-generic:menuentry,Kylin V10 SP1 (系统备份还原模式):submenu,Kylin V10 SP1 的高级选项:submenu"
Jun 23 16:37:12 dsd-pc org.ukui.ukcc.session[3512]: grub menu type : "menuentry"
Jun 23 16:37:12 dsd-pc org.ukui.ukcc.session[3512]: grub menu : "Kylin V10 SP1 5.4.18-164-generic"
Jun 23 16:37:12 dsd-pc org.ukui.ukcc.session[3512]: grub menu type : "submenu"
Jun 23 16:37:12 dsd-pc org.ukui.ukcc.session[3512]: grub menu type : "submenu"
Jun 23 16:37:12 dsd-pc org.ukui.ukcc.session[3512]: device: "tmpfs" path: "/run"
Jun 23 16:37:12 dsd-pc org.ukui.ukcc.session[3512]: device: "/dev/sda3" path: "/"
Jun 23 16:37:12 dsd-pc org.ukui.ukcc.session[3512]: device: "/dev/sda2" path: "/boot"
Jun 23 16:37:12 dsd-pc org.ukui.ukcc.session[3512]: device: "/dev/sda1" path: "/boot/efi"
Jun 23 16:37:12 dsd-pc org.ukui.ukcc.session[3512]: device: "/dev/sda5" path: "/data"
Jun 23 16:37:12 dsd-pc org.ukui.ukcc.session[3512]: device: "/dev/sda5" path: "/home"
Jun 23 16:37:12 dsd-pc org.ukui.ukcc.session[3512]: device: "/dev/sda5" path: "/root"
Jun 23 16:37:12 dsd-pc org.ukui.ukcc.session[3512]: device: "tmpfs" path: "/run/lock"
Jun 23 16:37:12 dsd-pc org.ukui.ukcc.session[3512]: device: "tmpfs" path: "/run/user/1000"
Jun 23 16:37:12 dsd-pc org.ukui.ukcc.session[3512]: device: "/dev/sdb1" path: "/media/dsd/C20C-9A63"
Jun 23 16:37:12 dsd-pc org.ukui.ukcc.session[3512]: device: "/dev/sdb2" path: "/media/dsd/UEFI_NTFS"
Jun 23 16:37:12 dsd-pc org.ukui.ukcc.session[3512]: gotsystems =  1 actualsystems =  1
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Looking at profile input:analog-input-linein
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Stereo Linein (analog-input-linein)
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Trying hw:1,1 with SND_PCM_NO_AUTO_FORMAT ...
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Managed to open hw:1,1
Jun 23 16:37:12 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Maximum hw buffer size is 5944 ms
Jun 23 16:37:12 dsd-pc com.control.center.qt.systemdbus[3706]: GRUB_TIMEOUT =  1
Jun 23 16:37:12 dsd-pc com.control.center.qt.systemdbus[3706]: GRUB_TIMEOUT =  0
Jun 23 16:37:12 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:12 dsd-pc kernel: [   17.832913][ 6] [ T1684] blk_update_request: I/O error, dev sdb, sector 2049 op 0x1:(WRITE) flags 0x0 phys_seg 1 prio class 0
Jun 23 16:37:12 dsd-pc kernel: [   17.832927][ 6] [ T1684] Buffer I/O error on dev sdb1, logical block 1, lost async page write
Jun 23 16:37:13 dsd-pc udisksd[1052]: Cleaning up mount point /media/dsd/C20C-9A63 (device 8:17 no longer exists)
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: QDir( "/usr/lib/x86_64-linux-gnu/ukui-control-center" , nameFilters = { "*" },  QDir::SortFlags( Name | IgnoreCase ) , QDir::Filters( Dirs|Files|Drives|AllEntries ) )
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libabout.so"
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Set buffer size first (to 4408 samples), period size second (to 1102 samples).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile input:analog-input-linein supported.
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] conf-parser.c: Parsing configuration file '/usr/share/pulseaudio/alsa-mixer/paths/analog-input-linein.conf'
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libaccessibility.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libarea.so"
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probing path 'analog-input-linein'
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Line Jack' succeeded (found!)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Line - Input Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Line Phantom Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Rear Mic Jack' succeeded (found!)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Front Mic Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Capture' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Line Boost' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Line' succeeded (volume=1, switch=1, enumeration=0, has_dB=1).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Panel Line in' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Line-in' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Input Source' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Capture Source' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'PCM Capture Source' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Mic' succeeded (volume=2, switch=2, enumeration=0, has_dB=1).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic' succeeded (volume=2, switch=2, enumeration=0, has_dB=1).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Boost' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Dock Mic Boost' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Internal Mic Boost' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Front Mic Boost' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Rear Mic Boost' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Aux' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Video' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Mic/Line' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'TV Tuner' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'FM' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Mic Jack Mode' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Available mixer paths (after tidying):
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Path Set 0x731620, direction=2
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Path analog-input-linein (输入插孔), direction=2, priority=81, probed=yes, supported=yes, has_mute=yes, has_volume=yes, has_dB=yes, min_volume=0, max_volume=39, min_dB=-17.25, max_dB=12
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: [frank] ismultichannel = 0
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Element 'Line', direction=2, switch=1, volume=1, volume_limit=-1, enumeration=0, required=0, required_any=4, required_absent=0, mask=0x3600000000f66, n_channels=2, override_map=03
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Element 'Mic', direction=2, switch=2, volume=2, volume_limit=-1, enumeration=0, required=0, required_any=0, required_absent=0, mask=0x6, n_channels=2, override_map=00
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Element 'Rear Mic', direction=2, switch=2, volume=2, volume_limit=-1, enumeration=0, required=0, required_any=0, required_absent=0, mask=0x6, n_channels=2, override_map=00
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line, alsa_name='Line Jack', index='0', detection possible
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line - Input, alsa_name='Line - Input Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Phantom, alsa_name='Line Phantom Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Rear Mic, alsa_name='Rear Mic Jack', index='0', detection possible
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Front Mic, alsa_name='Front Mic Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libaudio.so"
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-output-headphones
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Stereo Headphones (analog-output-headphones)
Jun 23 16:37:13 dsd-pc kernel: [   17.906411][ 6] [ T1684] usb-storage 1-4.2:1.0: USB Mass Storage device detected
Jun 23 16:37:13 dsd-pc kernel: [   17.906568][ 6] [ T1684] scsi host2: usb-storage 1-4.2:1.0
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Trying hw:1,1 with SND_PCM_NO_AUTO_FORMAT ...
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Managed to open hw:1,1
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Maximum hw buffer size is 5944 ms
Jun 23 16:37:13 dsd-pc udisksd[1052]: Cleaning up mount point /media/dsd/UEFI_NTFS (device 8:18 no longer exists)
Jun 23 16:37:13 dsd-pc systemd[2496]: media-dsd-C20C\x2d9A63.mount: Succeeded.
Jun 23 16:37:13 dsd-pc systemd[1]: media-dsd-C20C\x2d9A63.mount: Succeeded.
Jun 23 16:37:13 dsd-pc systemd[2496]: media-dsd-UEFI_NTFS.mount: Succeeded.
Jun 23 16:37:13 dsd-pc kernel: [   18.016752][13] [ T3943] usb-storage 1-4.2:1.0: USB Mass Storage device detected
Jun 23 16:37:13 dsd-pc kernel: [   18.017405][13] [ T3943] scsi host2: usb-storage 1-4.2:1.0
Jun 23 16:37:13 dsd-pc kernel: [   18.017679][13] [ T3943] usb 1-4.2: authorized to connect
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Set buffer size first (to 4408 samples), period size second (to 1102 samples).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:analog-output-headphones supported.
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] conf-parser.c: Parsing configuration file '/usr/share/pulseaudio/alsa-mixer/paths/analog-output-headphones.conf'
Jun 23 16:37:13 dsd-pc systemd[1]: media-dsd-UEFI_NTFS.mount: Succeeded.
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] conf-parser.c: Parsing configuration file '/usr/share/pulseaudio/alsa-mixer/paths/analog-output.conf.common'
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probing path 'analog-output-headphones'
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Dock Headphone Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Dock Headphone Phantom Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Front Headphone Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Headphone - Output Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Front Headphone Jack',1 succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Front Headphone Front Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Front Headphone Surround Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Front Headphone Phantom Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Headphone Jack' succeeded (found!)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Headphone Phantom Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Headphone Mic Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Hardware Master' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Master' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'DAC' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Master Mono' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Speaker+LO' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone+LO' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone' succeeded (volume=1, switch=1, enumeration=0, has_dB=1).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Front' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Headset' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Line HP Swap' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Auto-Mute Mode' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone2' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Speaker' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Desktop Speaker' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Rear' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Surround' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Side' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Center' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'LFE' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Bass Speaker' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Speaker Front' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Speaker Surround' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Speaker Side' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Speaker CLFE' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone',1 succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Line Out' succeeded (volume=2, switch=2, enumeration=0, has_dB=1).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'PCM' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'External Amplifier' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Bass Boost' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'IEC958' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'IEC958 Optical Raw' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Analog Output' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Available mixer paths (after tidying):
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libautoboot.so"
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Path Set 0x72f2d0, direction=1
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Path analog-output-headphones (模拟耳机), direction=1, priority=99, probed=yes, supported=yes, has_mute=yes, has_volume=yes, has_dB=yes, min_volume=0, max_volume=87, min_dB=-65.25, max_dB=0
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: [frank] ismultichannel = 0
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Element 'Headphone', direction=1, switch=1, volume=1, volume_limit=-1, enumeration=0, required=0, required_any=4, required_absent=0, mask=0x3600000000f66, n_channels=2, override_map=03
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Element 'Line Out', direction=1, switch=2, volume=2, volume_limit=-1, enumeration=0, required=0, required_any=0, required_absent=0, mask=0x6, n_channels=2, override_map=00
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Dock Headphone, alsa_name='Dock Headphone Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Dock Headphone Phantom, alsa_name='Dock Headphone Phantom Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Front Headphone, alsa_name='Front Headphone Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Headphone - Output, alsa_name='Headphone - Output Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Front Headphone, alsa_name='Front Headphone Jack', index='1', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Front Headphone Front, alsa_name='Front Headphone Front Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Front Headphone Surround, alsa_name='Front Headphone Surround Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Front Headphone Phantom, alsa_name='Front Headphone Phantom Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Headphone, alsa_name='Headphone Jack', index='0', detection possible
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Headphone Phantom, alsa_name='Headphone Phantom Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Headphone Mic, alsa_name='Headphone Mic Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-output-headphones+input:analog-input-front-mic
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Stereo Front Mic (analog-input-front-mic)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Trying hw:1,2 with SND_PCM_NO_AUTO_FORMAT ...
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Managed to open hw:1,2
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Maximum hw buffer size is 5944 ms
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libbackup.so"
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Set buffer size first (to 4408 samples), period size second (to 1102 samples).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:analog-output-headphones+input:analog-input-front-mic supported.
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:13 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: ESP
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libbiometrics.so"
Jun 23 16:37:13 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: ESP
Jun 23 16:37:13 dsd-pc sys-dbus-netctrl[2049]: [getNetContrlRule][259]getNetContrlRule modName:Connect
Jun 23 16:37:13 dsd-pc sys-dbus-netctrl[2049]: [kylinCfgGetModItems][214]insert key:netWireWirelessSyncConnectCtrol!
Jun 23 16:37:13 dsd-pc sys-dbus-netctrl[2049]: [getNetContrlRule][280]getNetContrlRule insert modName:netWireWirelessSyncConnectCtrol
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-output-headphones+input:analog-input-rear-mic
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Stereo Rear Mic (analog-input-rear-mic)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Trying hw:1,0 with SND_PCM_NO_AUTO_FORMAT ...
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Managed to open hw:1,0
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Maximum hw buffer size is 5944 ms
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Set buffer size first (to 4408 samples), period size second (to 1102 samples).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:analog-output-headphones+input:analog-input-rear-mic supported.
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] Activating service name='com.kylin.network.qt.systemdbus' requested by ':1.120' (uid=1000 pid=3350 comm="/usr/bin/kylin-nm " label="") (using servicehelper)
Jun 23 16:37:13 dsd-pc proxy/dbus[3153]: proxyPriv_proxy.go:152: enter StopProxy
Jun 23 16:37:13 dsd-pc com.kylin.system.proxy[3153]: <debug> proxyPriv_proxy.go:152: enter StopProxy
Jun 23 16:37:13 dsd-pc com.kylin.system.proxy[3153]: <debug> proxyPriv_proxy.go:154: mgr.Enabled == false
Jun 23 16:37:13 dsd-pc proxy/dbus[3153]: proxyPriv_proxy.go:154: mgr.Enabled == false
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-output-headphones+input:analog-input-linein
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Stereo Linein (analog-input-linein)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Trying hw:1,1 with SND_PCM_NO_AUTO_FORMAT ...
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Managed to open hw:1,1
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Maximum hw buffer size is 5944 ms
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'com.kylin.network.qt.systemdbus'
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Set buffer size first (to 4408 samples), period size second (to 1102 samples).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:analog-output-headphones+input:analog-input-linein supported.
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libboot.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: platformName =  "General"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libdatetime.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libdefaultapp.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libdisplay.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libfonts.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libkeyboard.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libkylinaisubsystemplugin.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libmobilehotspot.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: "/usr/share/kylin-nm/mobilehotspot/zh_CN"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: "移动热点"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: no wireless device
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: false
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libmouse.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libnetconnect.so"
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-stereo-output
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Stereo SPDIF Output (iec958-stereo-output)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Trying hw:1,2 with SND_PCM_NO_AUTO_FORMAT ...
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Managed to open hw:1,2
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Maximum hw buffer size is 5944 ms
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libnetworkaccount.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libnotice.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libplugin-panel.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libpower.so"
Jun 23 16:37:13 dsd-pc systemd-logind: [Support suspend]
Jun 23 16:37:13 dsd-pc systemd-logind: [Support hibernate]
Jun 23 16:37:13 dsd-pc uniauth-backend: [Uniauth-Backend] dsd setSaverState: 1!!
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: "none" static bool ukcc::UkccCommon::isPowerEnable()
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libprinter.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libprojection.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: 123456456
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: Attribute Qt::AA_EnableHighDpiScaling must be set before QCoreApplication is created.
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: Attribute Qt::AA_EnableHighDpiScaling must be set before QCoreApplication is created.
Jun 23 16:37:13 dsd-pc kysdk-logrotate[1008]: begin
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: false bo
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: =====================
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: ----------------
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libproxy.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libscreenlock.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libscreensaver.so"
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Set buffer size first (to 4408 samples), period size second (to 1102 samples).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:iec958-stereo-output supported.
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] conf-parser.c: Parsing configuration file '/usr/share/pulseaudio/alsa-mixer/paths/iec958-stereo-output.conf'
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libsearch-ukcc-plugin.so"
Jun 23 16:37:13 dsd-pc uniauth-backend: [Uniauth-Backend] dsd getSaverState: 1!!
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libsecuritycenter.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libshortcut.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libtheme.so"
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probing path 'iec958-stereo-output'
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'IEC958' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone' succeeded (volume=1, switch=1, enumeration=0, has_dB=1).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'PCM' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Speaker' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Available mixer paths (after tidying):
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Path Set 0x7357c0, direction=1
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Path iec958-stereo-output (数字输出 (S/PDIF)), direction=1, priority=0, probed=yes, supported=yes, has_mute=yes, has_volume=yes, has_dB=yes, min_volume=0, max_volume=87, min_dB=-65.25, max_dB=0
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: [frank] ismultichannel = 0
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Element 'Headphone', direction=1, switch=1, volume=1, volume_limit=-1, enumeration=0, required=0, required_any=4, required_absent=0, mask=0x3600000000f66, n_channels=2, override_map=03
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-stereo-output+input:analog-input-front-mic
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Stereo Front Mic (analog-input-front-mic)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Trying hw:1,2 with SND_PCM_NO_AUTO_FORMAT ...
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Managed to open hw:1,2
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Maximum hw buffer size is 5944 ms
Jun 23 16:37:13 dsd-pc kysdk-logrotate[1008]: end
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Set buffer size first (to 4408 samples), period size second (to 1102 samples).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:iec958-stereo-output+input:analog-input-front-mic supported.
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libtouchpad.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libtouchscreen.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libtouchscreenui.so"
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-stereo-output+input:analog-input-rear-mic
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Stereo Rear Mic (analog-input-rear-mic)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Trying hw:1,0 with SND_PCM_NO_AUTO_FORMAT ...
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Managed to open hw:1,0
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Maximum hw buffer size is 5944 ms
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libukcc-bluetooth.so"
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Set buffer size first (to 4408 samples), period size second (to 1102 samples).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:iec958-stereo-output+input:analog-input-rear-mic supported.
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: start ++ukccBluetooth========================
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Client[3512] call member Introspect @ com.ukui.bluetooth is forbiden!
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Client[3512] call member getAllAdapterAddress @ com.ukui.bluetooth is forbiden!
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: "org.freedesktop.DBus.Error.NotSupported" :  "dbus limit control,operation not permitted"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: 0
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Client[3512] call member Introspect @ com.ukui.bluetooth is forbiden!
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] [limitCtl]:Client[3512] call member getAllAdapterAddress @ com.ukui.bluetooth is forbiden!
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: "org.freedesktop.DBus.Error.NotSupported" :  "dbus limit control,operation not permitted"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: ()
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: Bluetooth::isEnable is false
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libukcc-plugin.so"
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Looking at profile output:iec958-stereo-output+input:analog-input-linein
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Stereo Linein (analog-input-linein)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Trying hw:1,1 with SND_PCM_NO_AUTO_FORMAT ...
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Managed to open hw:1,1
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Maximum hw buffer size is 5944 ms
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: platType is  General
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: [Settings::isEnable] is platform  edu  false
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libupgrade.so"
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: the system.name is  "zh_CN"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libuserinfo.so"
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Set buffer size first (to 4408 samples), period size second (to 1102 samples).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:iec958-stereo-output+input:analog-input-linein supported.
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libvino.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libvpn.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libwallpaper.so"
Jun 23 16:37:13 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libwlanconnect.so"
Jun 23 16:37:13 dsd-pc org.ukui.ukcc.session[3512]: loading "libupgrade.so"
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-output-lineout
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Checking for playback on Analog Stereo Lineout (analog-output-lineout)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Trying hw:1,0 with SND_PCM_NO_AUTO_FORMAT ...
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Managed to open hw:1,0
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Maximum hw buffer size is 5944 ms
Jun 23 16:37:13 dsd-pc com.ksc.defender[2075]: TRUSTED_GetCurrentUseTrustMode:
Jun 23 16:37:13 dsd-pc com.ksc.defender[2075]: TRUSTED_GetCurrentUseTrustMode:
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Set buffer size first (to 4408 samples), period size second (to 1102 samples).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:analog-output-lineout supported.
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] conf-parser.c: Parsing configuration file '/usr/share/pulseaudio/alsa-mixer/paths/analog-output-lineout.conf'
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] conf-parser.c: Parsing configuration file '/usr/share/pulseaudio/alsa-mixer/paths/analog-output.conf.common'
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probing path 'analog-output-lineout'
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Line Out Jack' succeeded (found!)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Speaker - Output Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Line Out Phantom Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Headphone Jack' succeeded (found!)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Headphone Surround Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Front Headphone Front Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Front Headphone Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Front Line Out Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Headphone Front Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Front Line Out Phantom Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Rear Line Out Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Rear Line Out Phantom Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Line Out Front Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Line Out Front Phantom Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Line Out CLFE Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Line Out CLFE Phantom Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Line Out Surround Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Line Out Surround Phantom Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Line Out Side Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Line Out Side Phantom Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Dock Line Out Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of jack 'Dock Line Out Phantom Jack' succeeded (not found)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Hardware Master' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Master' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone',1 succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Speaker+LO' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone+LO' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Line Out' succeeded (volume=1, switch=1, enumeration=0, has_dB=1).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Master Mono' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Line HP Swap' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone' succeeded (volume=2, switch=2, enumeration=0, has_dB=1).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Headphone2' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Speaker' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Desktop Speaker' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Front' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Rear' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Surround' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Side' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Center' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'LFE' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'CLFE' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Bass Speaker' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Speaker Front' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Speaker Surround' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Speaker Side' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Speaker CLFE' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'PCM' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'External Amplifier' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Bass Boost' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'IEC958' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'IEC958 Optical Raw' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Probe of element 'Analog Output' succeeded (volume=0, switch=0, enumeration=0, has_dB=0).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Available mixer paths (after tidying):
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Path Set 0x727350, direction=1
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Path analog-output-lineout (线缆输出), direction=1, priority=90, probed=yes, supported=yes, has_mute=yes, has_volume=yes, has_dB=yes, min_volume=0, max_volume=87, min_dB=-65.25, max_dB=0
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: [frank] ismultichannel = 0
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Element 'Line Out', direction=1, switch=1, volume=1, volume_limit=-1, enumeration=0, required=0, required_any=4, required_absent=0, mask=0x3600000000f66, n_channels=2, override_map=03
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Element 'Headphone', direction=1, switch=2, volume=2, volume_limit=-1, enumeration=0, required=0, required_any=0, required_absent=0, mask=0x6, n_channels=2, override_map=00
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Out, alsa_name='Line Out Jack', index='0', detection possible
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Speaker - Output, alsa_name='Speaker - Output Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Out Phantom, alsa_name='Line Out Phantom Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Headphone, alsa_name='Headphone Jack', index='0', detection possible
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Headphone Surround, alsa_name='Headphone Surround Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Front Headphone Front, alsa_name='Front Headphone Front Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Front Headphone, alsa_name='Front Headphone Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Front Line Out, alsa_name='Front Line Out Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Headphone Front, alsa_name='Headphone Front Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Front Line Out Phantom, alsa_name='Front Line Out Phantom Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Rear Line Out, alsa_name='Rear Line Out Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Rear Line Out Phantom, alsa_name='Rear Line Out Phantom Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Out Front, alsa_name='Line Out Front Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Out Front Phantom, alsa_name='Line Out Front Phantom Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Out CLFE, alsa_name='Line Out CLFE Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Out CLFE Phantom, alsa_name='Line Out CLFE Phantom Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Out Surround, alsa_name='Line Out Surround Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Out Surround Phantom, alsa_name='Line Out Surround Phantom Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Out Side, alsa_name='Line Out Side Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Out Side Phantom, alsa_name='Line Out Side Phantom Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Dock Line Out, alsa_name='Dock Line Out Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Dock Line Out Phantom, alsa_name='Dock Line Out Phantom Jack', index='0', detection unavailable
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-output-lineout+input:analog-input-front-mic
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Stereo Front Mic (analog-input-front-mic)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Trying hw:1,2 with SND_PCM_NO_AUTO_FORMAT ...
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Managed to open hw:1,2
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Maximum hw buffer size is 5944 ms
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Set buffer size first (to 4408 samples), period size second (to 1102 samples).
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:analog-output-lineout+input:analog-input-front-mic supported.
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-output-lineout+input:analog-input-rear-mic
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Stereo Rear Mic (analog-input-rear-mic)
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Trying hw:1,0 with SND_PCM_NO_AUTO_FORMAT ...
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Managed to open hw:1,0
Jun 23 16:37:13 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Maximum hw buffer size is 5944 ms
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Set buffer size first (to 4408 samples), period size second (to 1102 samples).
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:analog-output-lineout+input:analog-input-rear-mic supported.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Looking at profile output:analog-output-lineout+input:analog-input-linein
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Stereo Linein (analog-input-linein)
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Trying hw:1,1 with SND_PCM_NO_AUTO_FORMAT ...
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Managed to open hw:1,1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Maximum hw buffer size is 5944 ms
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Set buffer size first (to 4408 samples), period size second (to 1102 samples).
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:analog-output-lineout+input:analog-input-linein supported.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile set 0x716e00, auto_profiles=yes, probed=yes, n_mappings=6, n_profiles=15, n_decibel_fixes=0
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Mapping analog-output-headphones (Analog Stereo Headphones), priority=50, channel_map=front-left,front-right, supported=yes, direction=1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Mapping analog-input-front-mic (Analog Stereo Front Mic), priority=50, channel_map=front-left,front-right, supported=yes, direction=2
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Mapping iec958-stereo-output (Analog Stereo SPDIF Output), priority=50, channel_map=front-left,front-right, supported=yes, direction=1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Mapping analog-input-rear-mic (Analog Stereo Rear Mic), priority=50, channel_map=front-left,front-right, supported=yes, direction=2
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Mapping analog-output-lineout (Analog Stereo Lineout), priority=50, channel_map=front-left,front-right, supported=yes, direction=1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Mapping analog-input-linein (Analog Stereo Linein), priority=50, channel_map=front-left,front-right, supported=yes, direction=2
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile input:analog-input-front-mic (Analog Stereo Front Mic 输入), input=analog-input-front-mic, output=(null) priority=50, supported=yes n_input_mappings=1, n_output_mappings=0
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Input analog-input-front-mic
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile input:analog-input-rear-mic (Analog Stereo Rear Mic 输入), input=analog-input-rear-mic, output=(null) priority=50, supported=yes n_input_mappings=1, n_output_mappings=0
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Input analog-input-rear-mic
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile input:analog-input-linein (Analog Stereo Linein 输入), input=analog-input-linein, output=(null) priority=50, supported=yes n_input_mappings=1, n_output_mappings=0
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Input analog-input-linein
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:analog-output-headphones (Analog Stereo Headphones 输出), input=(null), output=analog-output-headphones priority=5000, supported=yes n_input_mappings=0, n_output_mappings=1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Output analog-output-headphones
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:analog-output-headphones+input:analog-input-front-mic (Analog Stereo Headphones 输出 + Analog Stereo Front Mic 输入), input=analog-input-front-mic, output=analog-output-headphones priority=5050, supported=yes n_input_mappings=1, n_output_mappings=1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Input analog-input-front-mic
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Output analog-output-headphones
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:analog-output-headphones+input:analog-input-rear-mic (Analog Stereo Headphones 输出 + Analog Stereo Rear Mic 输入), input=analog-input-rear-mic, output=analog-output-headphones priority=5050, supported=yes n_input_mappings=1, n_output_mappings=1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Input analog-input-rear-mic
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Output analog-output-headphones
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:analog-output-headphones+input:analog-input-linein (Analog Stereo Headphones 输出 + Analog Stereo Linein 输入), input=analog-input-linein, output=analog-output-headphones priority=5050, supported=yes n_input_mappings=1, n_output_mappings=1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Input analog-input-linein
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Output analog-output-headphones
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:iec958-stereo-output (Analog Stereo SPDIF Output 输出), input=(null), output=iec958-stereo-output priority=5000, supported=yes n_input_mappings=0, n_output_mappings=1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Output iec958-stereo-output
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:iec958-stereo-output+input:analog-input-front-mic (Analog Stereo SPDIF Output 输出 + Analog Stereo Front Mic 输入), input=analog-input-front-mic, output=iec958-stereo-output priority=5050, supported=yes n_input_mappings=1, n_output_mappings=1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Input analog-input-front-mic
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Output iec958-stereo-output
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:iec958-stereo-output+input:analog-input-rear-mic (Analog Stereo SPDIF Output 输出 + Analog Stereo Rear Mic 输入), input=analog-input-rear-mic, output=iec958-stereo-output priority=5050, supported=yes n_input_mappings=1, n_output_mappings=1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Input analog-input-rear-mic
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Output iec958-stereo-output
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:iec958-stereo-output+input:analog-input-linein (Analog Stereo SPDIF Output 输出 + Analog Stereo Linein 输入), input=analog-input-linein, output=iec958-stereo-output priority=5050, supported=yes n_input_mappings=1, n_output_mappings=1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Input analog-input-linein
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Output iec958-stereo-output
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:analog-output-lineout (Analog Stereo Lineout 输出), input=(null), output=analog-output-lineout priority=5000, supported=yes n_input_mappings=0, n_output_mappings=1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Output analog-output-lineout
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:analog-output-lineout+input:analog-input-front-mic (Analog Stereo Lineout 输出 + Analog Stereo Front Mic 输入), input=analog-input-front-mic, output=analog-output-lineout priority=5050, supported=yes n_input_mappings=1, n_output_mappings=1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Input analog-input-front-mic
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Output analog-output-lineout
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:analog-output-lineout+input:analog-input-rear-mic (Analog Stereo Lineout 输出 + Analog Stereo Rear Mic 输入), input=analog-input-rear-mic, output=analog-output-lineout priority=5050, supported=yes n_input_mappings=1, n_output_mappings=1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Input analog-input-rear-mic
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Output analog-output-lineout
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Profile output:analog-output-lineout+input:analog-input-linein (Analog Stereo Lineout 输出 + Analog Stereo Linein 输入), input=analog-input-linein, output=analog-output-lineout priority=5050, supported=yes n_input_mappings=1, n_output_mappings=1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Input analog-input-linein
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Output analog-output-lineout
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-card-restore.c: Restoring port latency offsets for card alsa_card.usb-Generic_USB_Audio-00.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-alsa-card.c: Found 8 jacks.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-alsa-card.c: Jack 'Headphone Jack' is now unplugged
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: Setting card alsa_card.usb-Generic_USB_Audio-00 profile input:analog-input-front-mic to availability status no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: Setting card alsa_card.usb-Generic_USB_Audio-00 profile input:analog-input-linein to availability status no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: Setting card alsa_card.usb-Generic_USB_Audio-00 profile output:analog-output-headphones to availability status no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: Setting card alsa_card.usb-Generic_USB_Audio-00 profile output:analog-output-headphones+input:analog-input-front-mic to availability status no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: Setting card alsa_card.usb-Generic_USB_Audio-00 profile output:analog-output-headphones+input:analog-input-rear-mic to availability status no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: Setting card alsa_card.usb-Generic_USB_Audio-00 profile output:analog-output-headphones+input:analog-input-linein to availability status no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: Setting card alsa_card.usb-Generic_USB_Audio-00 profile output:iec958-stereo-output+input:analog-input-front-mic to availability status no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: Setting card alsa_card.usb-Generic_USB_Audio-00 profile output:iec958-stereo-output+input:analog-input-linein to availability status no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: Setting card alsa_card.usb-Generic_USB_Audio-00 profile output:analog-output-lineout+input:analog-input-front-mic to availability status no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: Setting card alsa_card.usb-Generic_USB_Audio-00 profile output:analog-output-lineout+input:analog-input-linein to availability status no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-alsa-card.c: Jack 'Line Out Jack' is now unplugged
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] device-port.c: Setting port analog-output-lineout to status no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: Setting card alsa_card.usb-Generic_USB_Audio-00 profile output:analog-output-lineout to availability status no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: Setting card alsa_card.usb-Generic_USB_Audio-00 profile output:analog-output-lineout+input:analog-input-rear-mic to availability status no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-alsa-card.c: Jack 'Headphone Jack' is now unplugged
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-alsa-card.c: Jack 'Mic Jack' is now unplugged
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-alsa-card.c: Jack 'Rear Mic Jack' is now unplugged
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] device-port.c: Setting port analog-input-rear-mic to status no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: Setting card alsa_card.usb-Generic_USB_Audio-00 profile input:analog-input-rear-mic to availability status no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: Setting card alsa_card.usb-Generic_USB_Audio-00 profile output:iec958-stereo-output+input:analog-input-rear-mic to availability status no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-alsa-card.c: Jack 'Mic Jack' is now unplugged
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-alsa-card.c: Jack 'Line Jack' is now unplugged
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-alsa-card.c: Jack 'Rear Mic Jack' is now unplugged
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: Looking for initial profile for card alsa_card.usb-Generic_USB_Audio-00
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: input:analog-input-front-mic availability no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: input:analog-input-rear-mic availability no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: input:analog-input-linein availability no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: output:analog-output-headphones availability no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: output:analog-output-headphones+input:analog-input-front-mic availability no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: output:analog-output-headphones+input:analog-input-rear-mic availability no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: output:analog-output-headphones+input:analog-input-linein availability no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: output:iec958-stereo-output availability unknown
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: output:iec958-stereo-output+input:analog-input-front-mic availability no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: output:iec958-stereo-output+input:analog-input-rear-mic availability no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: output:iec958-stereo-output+input:analog-input-linein availability no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: output:analog-output-lineout availability no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: output:analog-output-lineout+input:analog-input-front-mic availability no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: output:analog-output-lineout+input:analog-input-rear-mic availability no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: output:analog-output-lineout+input:analog-input-linein availability no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: off availability unknown
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: alsa_card.usb-Generic_USB_Audio-00: active_profile: output:iec958-stereo-output
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: Created 1 "alsa_card.usb-Generic_USB_Audio-00"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-card-restore.c: Storing port latency offsets for card alsa_card.usb-Generic_USB_Audio-00.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : input:analog-input-front-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : input:analog-input-rear-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : input:analog-input-linein status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-headphones status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-headphones+input:analog-input-front-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-headphones+input:analog-input-rear-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-headphones+input:analog-input-linein status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:iec958-stereo-output status from: unknown changes to: unknown
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:iec958-stereo-output+input:analog-input-front-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:iec958-stereo-output+input:analog-input-rear-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:iec958-stereo-output+input:analog-input-linein status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-lineout status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-lineout+input:analog-input-front-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-lineout+input:analog-input-rear-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-lineout+input:analog-input-linein status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : off status from: unknown changes to: unknown
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : input:analog-input-front-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : input:analog-input-rear-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : input:analog-input-linein status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-headphones status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-headphones+input:analog-input-front-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-headphones+input:analog-input-rear-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-headphones+input:analog-input-linein status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:iec958-stereo-output status from: unknown changes to: unknown
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:iec958-stereo-output+input:analog-input-front-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:iec958-stereo-output+input:analog-input-rear-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:iec958-stereo-output+input:analog-input-linein status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-lineout status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-lineout+input:analog-input-front-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-lineout+input:analog-input-rear-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-lineout+input:analog-input-linein status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : off status from: unknown changes to: unknown
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : input:analog-input-front-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : input:analog-input-rear-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : input:analog-input-linein status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-headphones status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-headphones+input:analog-input-front-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-headphones+input:analog-input-rear-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-headphones+input:analog-input-linein status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:iec958-stereo-output status from: unknown changes to: unknown
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:iec958-stereo-output+input:analog-input-front-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:iec958-stereo-output+input:analog-input-rear-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:iec958-stereo-output+input:analog-input-linein status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-lineout status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-lineout+input:analog-input-front-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-lineout+input:analog-input-rear-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-lineout+input:analog-input-linein status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : off status from: unknown changes to: unknown
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : input:analog-input-front-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : input:analog-input-rear-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : input:analog-input-linein status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-headphones status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-headphones+input:analog-input-front-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-headphones+input:analog-input-rear-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-headphones+input:analog-input-linein status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:iec958-stereo-output status from: unknown changes to: unknown
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:iec958-stereo-output+input:analog-input-front-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:iec958-stereo-output+input:analog-input-rear-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:iec958-stereo-output+input:analog-input-linein status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-lineout status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-lineout+input:analog-input-front-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-lineout+input:analog-input-rear-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-lineout+input:analog-input-linein status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : off status from: unknown changes to: unknown
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : input:analog-input-front-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : input:analog-input-rear-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : input:analog-input-linein status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-headphones status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-headphones+input:analog-input-front-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-headphones+input:analog-input-rear-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-headphones+input:analog-input-linein status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:iec958-stereo-output status from: unknown changes to: unknown
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:iec958-stereo-output+input:analog-input-front-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:iec958-stereo-output+input:analog-input-rear-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:iec958-stereo-output+input:analog-input-linein status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-lineout status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-lineout+input:analog-input-front-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-lineout+input:analog-input-rear-mic status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : output:analog-output-lineout+input:analog-input-linein status from: no changes to: no
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] card.c:  Card :alsa_card.usb-Generic_USB_Audio-00 profile : off status from: unknown changes to: unknown
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] reserve-wrap.c: Successfully create reservation lock monitor for device 'Audio1'
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Trying hw:1,2 with SND_PCM_NO_AUTO_FORMAT ...
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Managed to open hw:1,2
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Cannot disable ALSA period wakeups
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Maximum hw buffer size is 5944 ms
Jun 23 16:37:14 dsd-pc kernel: [   19.026417][13] [  T118] scsi 2:0:0:0: Direct-Access     SanDisk  Cruzer Blade     1.00 PQ: 0 ANSI: 6
Jun 23 16:37:14 dsd-pc kernel: [   19.027453][13] [  T118] sd 2:0:0:0: Attached scsi generic sg1 type 0
Jun 23 16:37:14 dsd-pc kernel: [   19.028217][13] [  T234] sd 2:0:0:0: [sdb] 61341696 512-byte logical blocks: (31.4 GB/29.3 GiB)
Jun 23 16:37:14 dsd-pc kernel: [   19.028472][13] [  T234] sd 2:0:0:0: [sdb] Write Protect is off
Jun 23 16:37:14 dsd-pc kernel: [   19.028479][13] [  T234] sd 2:0:0:0: [sdb] Mode Sense: 43 00 00 00
Jun 23 16:37:14 dsd-pc kernel: [   19.028727][13] [  T234] sd 2:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Set buffer size first (to 88200 samples), period size second (to 88200 samples).
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: ALSA period wakeups were not disabled
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Successfully opened device hw:1,2.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Selected mapping 'Analog Stereo SPDIF Output' (iec958-stereo-output).
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Successfully enabled mmap() mode.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Successfully enabled timer-based scheduling mode.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Successfully attached to mixer 'hw:1'
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Added 1 ports
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: profile_name = usb-Generic_USB_Audio-00
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: input profile = 0xffffffff, port_name=usb-Generic_USB_Audio-00
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: pa_device_init_priority, sink->name = alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output,sink->priority  =9048
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: Created sink 1 "alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output" with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.resolution_bits = "16"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.api = "alsa"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.class = "sound"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.class = "generic"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.subclass = "generic-mix"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.name = "USB Audio #2"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.id = "USB Audio"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.subdevice = "0"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.subdevice_name = "subdevice #0"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.device = "2"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.card = "1"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.card_name = "USB Audio"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.long_card_name = "Generic USB Audio at usb-0000:03:00.3-3, high speed"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.driver_name = "snd_usb_audio"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.bus_path = "pci-0000:03:00.3-usb-0:3:1.0"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     sysfs.path = "/devices/pci0000:00/0000:00:07.1/0000:03:00.3/usb1/1-3/1-3:1.0/sound/card1"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     udev.id = "usb-Generic_USB_Audio-00"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.bus = "usb"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.vendor.id = "1e0b"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.vendor.name = "Generic"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.product.id = "d01e"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.product.name = "USB Audio"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.serial = "Generic_USB_Audio"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.string = "hw:1,2"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.buffering.buffer_size = "352800"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.buffering.fragment_size = "176400"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.access_mode = "mmap+timer"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.profile.name = "iec958-stereo-output"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.profile.description = "Analog Stereo SPDIF Output"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.description = "USB Audio Analog Stereo SPDIF Output"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     module-udev-detect.discovered = "1"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.icon_name = "audio-card-usb"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c: Created source 1 "alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output.monitor" with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.description = "Monitor of USB Audio Analog Stereo SPDIF Output"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.class = "monitor"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     alsa.card = "1"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     alsa.card_name = "USB Audio"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     alsa.long_card_name = "Generic USB Audio at usb-0000:03:00.3-3, high speed"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     alsa.driver_name = "snd_usb_audio"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.bus_path = "pci-0000:03:00.3-usb-0:3:1.0"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     sysfs.path = "/devices/pci0000:00/0000:00:07.1/0000:03:00.3/usb1/1-3/1-3:1.0/sound/card1"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     udev.id = "usb-Generic_USB_Audio-00"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.bus = "usb"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.vendor.id = "1e0b"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.vendor.name = "Generic"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.product.id = "d01e"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.product.name = "USB Audio"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.serial = "Generic_USB_Audio"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.string = "1"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     module-udev-detect.discovered = "1"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.icon_name = "audio-card-usb"  data->name == alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output.monitor ,data->channel_map 
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Using 2.0 fragments of size 176400 bytes (1000.00ms), buffer size is 352800 bytes (2000.00ms)
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Time scheduling watermark is 20.00ms
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: hwbuf_unused=0
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: setting avail_min=87319
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Activating path iec958-stereo-output
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Path iec958-stereo-output (数字输出 (S/PDIF)), direction=1, priority=0, probed=yes, supported=yes, has_mute=yes, has_volume=yes, has_dB=yes, min_volume=0, max_volume=87, min_dB=-65.25, max_dB=0
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: [frank] ismultichannel = 0
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Element 'Headphone', direction=1, switch=1, volume=1, volume_limit=-1, enumeration=0, required=0, required_any=4, required_absent=0, mask=0x3600000000f66, n_channels=2, override_map=03
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Successfully enabled deferred volume.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Hardware volume ranges from -65.25 dB to 0.00 dB.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] volume.c: Init PulseAudio pow exponent 1.800000 of sink alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Fixing base volume to 0.00 dB
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Using hardware volume control. Hardware dB scale supported.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Using hardware mute control.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: snd_pcm_dump():
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Hardware PCM card 1 'USB Audio' device 2 subdevice 0
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Its setup is:
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   stream       : PLAYBACK
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   access       : MMAP_INTERLEAVED
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   format       : S16_LE
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   subformat    : STD
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   channels     : 2
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   rate         : 44100
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   exact rate   : 44100 (44100/1)
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   msbits       : 16
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   buffer_size  : 88200
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   period_size  : 44100
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   period_time  : 1000000
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   tstamp_mode  : ENABLE
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   tstamp_type  : MONOTONIC
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   period_step  : 1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   avail_min    : 87319
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   period_event : 0
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   start_threshold  : -1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   stop_threshold   : 6206523236469964800
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   silence_threshold: 0
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   silence_size : 0
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   boundary     : 6206523236469964800
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   appl_ptr     : 0
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   hw_ptr       : 0
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Read hardware volume: front-left: 44649 /  68% / -6.00 dB,   front-right: 44649 /  68% / -6.00 dB
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Current hardware dB value is the same as the min_dB value, do not need to change it
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Thread starting up
Jun 23 16:37:14 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:14 dsd-pc dbus-daemon[911]: message repeated 4 times: [ [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation]
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] util.c: Failed to acquire real-time scheduling: 没有那个文件或目录
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output: state: INIT -> IDLE
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Starting playback.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] ratelimit.c: 5 events suppressed
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Cutting sleep time for the initial iterations by half.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Cutting sleep time for the initial iterations by half.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output.monitor: state: INIT -> IDLE
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: pa_core_update_default_source,best->source= alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output.monitor ,old_default_source=alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink.monitor
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: default_source: alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink.monitor -> alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output.monitor
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: pa_source_move_streams_to_default_source old_default_source
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-device-restore.c: Could not set format on sink alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output becomes idle, timeout in 5 seconds.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-switch-on-connect.c: Trying to switch to new sink alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-switch-on-connect.c: pa_core_set_configured_default_sink ,sink->name = alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output,default_sink = alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink ,configure_default_sink = alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output s = usb
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: default_sink: alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink -> alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: pa_core_update_default_source,best->source= alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output.monitor ,old_default_source=alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output.monitor
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Loaded "module-alsa-card" (index: #25; argument: "device_id="1" name="usb-Generic_USB_Audio-00" card_name="alsa_card.usb-Generic_USB_Audio-00" namereg_fail=false tsched=yes fixed_latency_range=no ignore_dB=no deferred_volume=yes use_ucm=yes avoid_resampling=no card_properties="module-udev-detect.discovered=1"").
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: Card /devices/pci0000:00/0000:00:07.1/0000:03:00.3/usb1/1-3/1-3:1.0/sound/card1 (alsa_card.usb-Generic_USB_Audio-00) module loaded.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink idle for too long, suspending ...
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-inno_audio_pcm] alsa-sink.c: Device suspended...
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink: suspend_cause: (none) -> IDLE,default_sink->name = alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output ,s->core->default_sink->state=1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink: state: IDLE -> SUSPENDED
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c: alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink.monitor: suspend_cause: (none) -> IDLE ,default_sourec->name = alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output.monitor ,s->core->default_source->state=1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] source.c: alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink.monitor: state: IDLE -> SUSPENDED
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Created 8 "Native client (UNIX socket client)"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: /dev/snd/controlC0 is accessible: yes
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: Resuming all sinks and sources of card alsa_card.pci-0000_02_00.0-platform-inno-audio.12.auto.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: /dev/snd/controlC1 is accessible: yes
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: Resuming all sinks and sources of card alsa_card.usb-Generic_USB_Audio-00.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Cutting sleep time for the initial iterations by half.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: message repeated 8 times: [ [alsa-sink-USB Audio] alsa-sink.c: Cutting sleep time for the initial iterations by half.]
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Protocol version: remote 33, local 33
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=1000 success=1
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: SHM possible: yes
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Memfd possible: yes
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Negotiated SHM type: shared memfd
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] memblock.c: Using shared memfd memory pool with 1024 slots of size 64.0 KiB each, total size is 64.0 MiB, maximum usable slot size is 65472
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] srbchannel.c: SHM block is 65472 bytes, ringbuffer capacity is 2 * 32712 bytes
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Enabling srbchannel...
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for sound-theme-player
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Client enabled srbchannel.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c: Negotiated format: pcm, format.sample_format = "\"s16le\""  format.rate = "44100"  format.channels = "2"  format.channel_map = "\"front-left,front-right\""
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output becomes busy, resuming.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output becomes idle, timeout in 5 seconds.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] memblockq.c: memblockq requested: maxlength=33554432, tlength=0, base=4, prebuf=0, minreq=1 maxrewind=0
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=33554432, tlength=33554432, base=4, prebuf=0, minreq=4 maxrewind=0
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c: Created input 0 "device-removed" on alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     event.description = "Sound Theme Player"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     event.id = "device-removed"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     media.role = "event"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     media.name = "device-removed"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     media.filename = "/usr/share//sounds/Light-Seeking/stereo/device-removed.ogg"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.name = "libcanberra"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     native-protocol.peer = "UNIX socket client"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     native-protocol.version = "33"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.version = "0.30"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.id = "org.freedesktop.libcanberra"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.process.id = "3439"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.process.user = "dsd"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.process.host = "dsd-pc"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.process.binary = "sound-theme-player"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.language = "zh_CN.UTF-8"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     window.x11.display = ":0"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.process.machine_id = "976685320ed2404a906bfd8a91832b98"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.process.session_id = "3"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     module-stream-restore.id = "sink-input-by-media-role:event"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.move = "yes"
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Requested tlength=2000.00 ms, minreq=20.00 ms
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Traditional mode enabled, modifying sink usec only for compat with minreq.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Requested latency=1960.00 ms, Received latency=1960.00 ms
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] memblockq.c: memblockq requested: maxlength=4194304, tlength=352800, base=4, prebuf=349276, minreq=3528 maxrewind=0
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=4194304, tlength=352800, base=4, prebuf=349276, minreq=3528 maxrewind=0
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Final latency 3960.00 ms = 1960.00 ms + 2*20.00 ms + 1960.00 ms
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Latency set to 1960.00ms
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: hwbuf_unused=7056
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: setting avail_min=87319
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requesting rewind due to latency change.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requested volume: front-left: 65536 / 100% / 0.00 dB,   front-right: 65536 / 100% / 0.00 dB
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Got hardware volume: front-left: 65536 / 100% / 0.00 dB,   front-right: 65536 / 100% / 0.00 dB
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Calculated software volume: front-left: 65536 / 100% / 0.00 dB,   front-right: 65536 / 100% / 0.00 dB (accurate-enough=yes)
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Volume not changing
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requested to rewind 352800 bytes.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Limited to 351576 bytes.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: before: 87894
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: after: 87894
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Rewound 351576 bytes.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Processing rewind...
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: latency = 2165
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink-input.c: Have to rewind 351576 bytes on render memblockq.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] source.c: Processing rewind...
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output: state: IDLE -> RUNNING
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] protocol-native.c: Requesting rewind due to end of underrun.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requested to rewind 345744 bytes.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Limited to 344516 bytes.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: before: 86129
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: after: 86129
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Rewound 344516 bytes.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Processing rewind...
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: latency = 2205
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink-input.c: Have to rewind 344516 bytes on render memblockq.
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] source.c: Processing rewind...
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] protocol-native.c: Implicit drain of 'device-removed'
Jun 23 16:37:14 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output: Found underrun 127536 bytes ago (218208 bytes ahead in playback buffer)
Jun 23 16:37:14 dsd-pc kernel: [   19.106138][13] [  T234]  sdb: sdb1 sdb2
Jun 23 16:37:14 dsd-pc kernel: [   19.108087][13] [  T234] sd 2:0:0:0: [sdb] Attached SCSI removable disk
Jun 23 16:37:14 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:14 dsd-pc dbus-daemon[911]: message repeated 2 times: [ [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation]
Jun 23 16:37:14 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: UEFI_NTFS
Jun 23 16:37:14 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: UEFI_NTFS
Jun 23 16:37:14 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:14 dsd-pc dbus-daemon[911]: message repeated 5 times: [ [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation]
Jun 23 16:37:14 dsd-pc udisksd[1052]: Mounted /dev/sdb1 at /media/dsd/C20C-9A63 on behalf of uid 1000
Jun 23 16:37:14 dsd-pc kernel: [   19.355534][13] [ T3128] FAT-fs (sdb1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
Jun 23 16:37:14 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: UEFI_NTFS
Jun 23 16:37:14 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: ESP
Jun 23 16:37:14 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: UEFI_NTFS
Jun 23 16:37:14 dsd-pc udisksd[1052]: Mounted /dev/sdb2 at /media/dsd/UEFI_NTFS on behalf of uid 1000
Jun 23 16:37:14 dsd-pc kernel: [   19.458099][13] [ T3128] FAT-fs (sdb2): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
Jun 23 16:37:14 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: UEFI_NTFS
Jun 23 16:37:14 dsd-pc udisksd[1052]: **** NOTE: gbk to utf-8 sucess: ESP
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output becomes idle, timeout in 5 seconds.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output: Found underrun 127536 bytes ago (56936 bytes ahead in playback buffer)
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: hwbuf_unused=0
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: setting avail_min=87319
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requested volume: front-left: 65536 / 100% / 0.00 dB,   front-right: 65536 / 100% / 0.00 dB
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Got hardware volume: front-left: 65536 / 100% / 0.00 dB,   front-right: 65536 / 100% / 0.00 dB
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Calculated software volume: front-left: 65536 / 100% / 0.00 dB,   front-right: 65536 / 100% / 0.00 dB (accurate-enough=yes)
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Volume not changing
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requested to rewind 352800 bytes.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Limited to 184216 bytes.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: before: 46054
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: after: 46054
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Rewound 184216 bytes.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Processing rewind...
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: latency = 2683
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] source.c: Processing rewind...
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output: state: RUNNING -> IDLE
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output becomes idle, timeout in 5 seconds.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c: Freeing input 0 "device-removed"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Freed 8 "libcanberra"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Connection died.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Created 9 "Native client (UNIX socket client)"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Protocol version: remote 33, local 33
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=1000 success=1
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: SHM possible: yes
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Memfd possible: yes
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Negotiated SHM type: shared memfd
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] memblock.c: Using shared memfd memory pool with 1024 slots of size 64.0 KiB each, total size is 64.0 MiB, maximum usable slot size is 65472
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] srbchannel.c: SHM block is 65472 bytes, ringbuffer capacity is 2 * 32712 bytes
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Enabling srbchannel...
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for sound-theme-player
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Client enabled srbchannel.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c: Negotiated format: pcm, format.sample_format = "\"s16le\""  format.rate = "44100"  format.channels = "2"  format.channel_map = "\"front-left,front-right\""
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output becomes busy, resuming.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output becomes idle, timeout in 5 seconds.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] memblockq.c: memblockq requested: maxlength=33554432, tlength=0, base=4, prebuf=0, minreq=1 maxrewind=0
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=33554432, tlength=33554432, base=4, prebuf=0, minreq=4 maxrewind=0
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c: Created input 1 "device-added" on alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     event.description = "Sound Theme Player"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     event.id = "device-added"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     media.role = "event"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     media.name = "device-added"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     media.filename = "/usr/share//sounds/Light-Seeking/stereo/device-added.ogg"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.name = "libcanberra"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     native-protocol.peer = "UNIX socket client"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     native-protocol.version = "33"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.version = "0.30"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.id = "org.freedesktop.libcanberra"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.process.id = "3439"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.process.user = "dsd"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.process.host = "dsd-pc"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.process.binary = "sound-theme-player"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.language = "zh_CN.UTF-8"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     window.x11.display = ":0"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.process.machine_id = "976685320ed2404a906bfd8a91832b98"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.process.session_id = "3"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     module-stream-restore.id = "sink-input-by-media-role:event"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.move = "yes"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Requested tlength=2000.00 ms, minreq=20.00 ms
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Traditional mode enabled, modifying sink usec only for compat with minreq.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Requested latency=1960.00 ms, Received latency=1960.00 ms
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] memblockq.c: memblockq requested: maxlength=4194304, tlength=352800, base=4, prebuf=349276, minreq=3528 maxrewind=0
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=4194304, tlength=352800, base=4, prebuf=349276, minreq=3528 maxrewind=0
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Final latency 3960.00 ms = 1960.00 ms + 2*20.00 ms + 1960.00 ms
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Latency set to 1960.00ms
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: hwbuf_unused=7056
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: setting avail_min=87319
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requesting rewind due to latency change.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requested volume: front-left: 65536 / 100% / 0.00 dB,   front-right: 65536 / 100% / 0.00 dB
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Got hardware volume: front-left: 65536 / 100% / 0.00 dB,   front-right: 65536 / 100% / 0.00 dB
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Calculated software volume: front-left: 65536 / 100% / 0.00 dB,   front-right: 65536 / 100% / 0.00 dB (accurate-enough=yes)
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Volume not changing
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requested to rewind 352800 bytes.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Limited to 351596 bytes.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: before: 87899
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: after: 87899
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Rewound 351596 bytes.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Processing rewind...
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: latency = 1960
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink-input.c: Have to rewind 351596 bytes on render memblockq.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] source.c: Processing rewind...
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output: state: IDLE -> RUNNING
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] protocol-native.c: Requesting rewind due to end of underrun.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requested to rewind 345744 bytes.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Limited to 344516 bytes.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: before: 86129
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: after: 86129
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Rewound 344516 bytes.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Processing rewind...
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: latency = 1477
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink-input.c: Have to rewind 344516 bytes on render memblockq.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] source.c: Processing rewind...
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] protocol-native.c: Implicit drain of 'device-added'
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output: Found underrun 142124 bytes ago (203620 bytes ahead in playback buffer)
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Created 10 "Native client (UNIX socket client)"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Protocol version: remote 33, local 33
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=1000 success=1
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: SHM possible: yes
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Memfd possible: yes
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Negotiated SHM type: shared memfd
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] memblock.c: Using shared memfd memory pool with 1024 slots of size 64.0 KiB each, total size is 64.0 MiB, maximum usable slot size is 65472
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] srbchannel.c: SHM block is 65472 bytes, ringbuffer capacity is 2 * 32712 bytes
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Enabling srbchannel...
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for ukui-volume-control-applet-qt
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Client enabled srbchannel.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output: Found underrun 142124 bytes ago (194976 bytes ahead in playback buffer)
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: message repeated 9 times: [ [alsa-sink-USB Audio] sink.c: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output: Found underrun 142124 bytes ago (194976 bytes ahead in playback buffer)]
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Created 11 "Native client (UNIX socket client)"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Freed 11 "Native client (UNIX socket client)"
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Connection died.
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output: Found underrun 142124 bytes ago (191384 bytes ahead in playback buffer)
Jun 23 16:37:15 dsd-pc pulseaudio[2928]: message repeated 7 times: [ [alsa-sink-USB Audio] sink.c: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output: Found underrun 142124 bytes ago (191384 bytes ahead in playback buffer)]
Jun 23 16:37:16 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] protocol-native.c: Drain acknowledged of 'device-added'
Jun 23 16:37:16 dsd-pc pulseaudio[2928]: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output becomes idle, timeout in 5 seconds.
Jun 23 16:37:16 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: hwbuf_unused=0
Jun 23 16:37:16 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: setting avail_min=87319
Jun 23 16:37:16 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requested volume: front-left: 65536 / 100% / 0.00 dB,   front-right: 65536 / 100% / 0.00 dB
Jun 23 16:37:16 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Got hardware volume: front-left: 65536 / 100% / 0.00 dB,   front-right: 65536 / 100% / 0.00 dB
Jun 23 16:37:16 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Calculated software volume: front-left: 65536 / 100% / 0.00 dB,   front-right: 65536 / 100% / 0.00 dB (accurate-enough=yes)
Jun 23 16:37:16 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Volume not changing
Jun 23 16:37:16 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requested to rewind 352800 bytes.
Jun 23 16:37:16 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Limited to 345488 bytes.
Jun 23 16:37:16 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: before: 86372
Jun 23 16:37:16 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: after: 86372
Jun 23 16:37:16 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Rewound 345488 bytes.
Jun 23 16:37:16 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Processing rewind...
Jun 23 16:37:16 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: latency = 4583
Jun 23 16:37:16 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] source.c: Processing rewind...
Jun 23 16:37:16 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output: state: RUNNING -> IDLE
Jun 23 16:37:16 dsd-pc pulseaudio[2928]: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output becomes idle, timeout in 5 seconds.
Jun 23 16:37:16 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
Jun 23 16:37:16 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c: Freeing input 1 "device-added"
Jun 23 16:37:16 dsd-pc dbus-daemon[911]: [system] Activating service name='com.ksc.virus' requested by ':1.209' (uid=1000 pid=3339 comm="/usr/sbin/ksc-virus-dialog " label="") (using servicehelper)
Jun 23 16:37:16 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:16 dsd-pc dbus-daemon[911]: [system] Successfully activated service 'com.ksc.virus'
Jun 23 16:37:16 dsd-pc com.ksc.virus[4579]: db_check_colume_exist: cmd =  "select COUNT(*) from sqlite_master where type = 'table' and name= 'File_list' and sql like '%Uid%' " , rc =  0
Jun 23 16:37:16 dsd-pc com.ksc.virus[4579]: db_check_colume_exist: cmd =  "select COUNT(*) from sqlite_master where type = 'table' and name= 'File_list' and sql like '%Gid%' " , rc =  0
Jun 23 16:37:16 dsd-pc com.ksc.virus[4579]: start load_plugins m_engineList =  0 , engineNameList =  0
Jun 23 16:37:16 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:16 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:16 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:16 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:16 dsd-pc dbus-daemon[911]: message repeated 7 times: [ [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation]
Jun 23 16:37:16 dsd-pc systemd[1]: Started ACPI event daemon.
Jun 23 16:37:16 dsd-pc acpid: starting up with netlink and the input layer
Jun 23 16:37:16 dsd-pc acpid: 0 rules loaded
Jun 23 16:37:16 dsd-pc acpid: waiting for events: event logging is off
Jun 23 16:37:16 dsd-pc acpid: client connected from 3461[1000:1000]
Jun 23 16:37:16 dsd-pc acpid: 1 client rule loaded
Jun 23 16:37:17 dsd-pc com.ksc.virus[4579]: end load_plugins m_engineList =  1 , engineNameList =  1
Jun 23 16:37:17 dsd-pc ksc-virus-daemon: CVirusService connect signal_engineLoadingSuccess:slot_virusEngineServiceLoadingSuccess success
Jun 23 16:37:17 dsd-pc ksc-virus-daemon: Slow SEngineInfoList:0
Jun 23 16:37:17 dsd-pc com.ksc.virus[4579]: start load_plugins m_engineList =  1 , engineNameList =  1
Jun 23 16:37:17 dsd-pc com.ksc.virus[4579]: end load_plugins m_engineList =  1 , engineNameList =  1
Jun 23 16:37:17 dsd-pc ksc-virus-daemon: VirusEngineThread emit signal_engineLoadingSuccess success
Jun 23 16:37:17 dsd-pc com.ksc.virus[4579]: finish!!!
Jun 23 16:37:17 dsd-pc ksc-virus-daemon: CVirusService emit signal_virusEngineServiceLoadingSuccess success
Jun 23 16:37:18 dsd-pc kernel: [   23.168693][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1870 (reg 14963, index 5) beyond range (1871, 717)
Jun 23 16:37:18 dsd-pc kernel: [   23.168696][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.169257][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1870 (reg 14967, index 6) beyond range (1872, 717)
Jun 23 16:37:18 dsd-pc kernel: [   23.169258][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.169825][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1870 (reg 14972, index 7) beyond range (1872, 718)
Jun 23 16:37:18 dsd-pc kernel: [   23.169826][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.170017][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1871 (reg 14973, index 8) beyond range (1872, 718)
Jun 23 16:37:18 dsd-pc kernel: [   23.170019][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.170584][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1871 (reg 14978, index 9) beyond range (1873, 719)
Jun 23 16:37:18 dsd-pc kernel: [   23.170585][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.171621][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1871 (reg 14986, index 10) beyond range (1874, 720)
Jun 23 16:37:18 dsd-pc kernel: [   23.171622][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.172657][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1871 (reg 14995, index 11) beyond range (1875, 721)
Jun 23 16:37:18 dsd-pc kernel: [   23.172658][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.173693][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1871 (reg 15003, index 12) beyond range (1876, 722)
Jun 23 16:37:18 dsd-pc kernel: [   23.173694][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.174731][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1871 (reg 15011, index 13) beyond range (1877, 723)
Jun 23 16:37:18 dsd-pc kernel: [   23.174732][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.174921][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1871 (reg 15013, index 14) beyond range (1877, 723)
Jun 23 16:37:18 dsd-pc kernel: [   23.174922][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.175487][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1871 (reg 15017, index 15) beyond range (1878, 724)
Jun 23 16:37:18 dsd-pc kernel: [   23.175488][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.176524][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1872 (reg 15025, index 16) beyond range (1879, 725)
Jun 23 16:37:18 dsd-pc kernel: [   23.176525][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.177560][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1872 (reg 15034, index 17) beyond range (1880, 726)
Jun 23 16:37:18 dsd-pc kernel: [   23.177561][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.178598][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1872 (reg 15042, index 18) beyond range (1881, 727)
Jun 23 16:37:18 dsd-pc kernel: [   23.178599][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.179070][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1872 (reg 15046, index 19) beyond range (1881, 727)
Jun 23 16:37:18 dsd-pc kernel: [   23.179071][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.179637][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1872 (reg 15050, index 20) beyond range (1882, 728)
Jun 23 16:37:18 dsd-pc kernel: [   23.179638][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.180203][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1872 (reg 15055, index 21) beyond range (1883, 728)
Jun 23 16:37:18 dsd-pc kernel: [   23.180204][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.180772][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1872 (reg 15059, index 22) beyond range (1883, 729)
Jun 23 16:37:18 dsd-pc kernel: [   23.180772][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.181340][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1872 (reg 15064, index 23) beyond range (1884, 730)
Jun 23 16:37:18 dsd-pc kernel: [   23.181341][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.181909][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1873 (reg 15069, index 24) beyond range (1884, 730)
Jun 23 16:37:18 dsd-pc kernel: [   23.181910][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.182479][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1873 (reg 15073, index 25) beyond range (1885, 731)
Jun 23 16:37:18 dsd-pc kernel: [   23.182480][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.183045][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1873 (reg 15078, index 26) beyond range (1885, 731)
Jun 23 16:37:18 dsd-pc kernel: [   23.183046][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.183612][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1873 (reg 15082, index 27) beyond range (1886, 732)
Jun 23 16:37:18 dsd-pc kernel: [   23.183612][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.184178][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1873 (reg 15087, index 28) beyond range (1887, 732)
Jun 23 16:37:18 dsd-pc kernel: [   23.184179][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.184181][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1873 (reg 15087, index 29) beyond range (1887, 732)
Jun 23 16:37:18 dsd-pc kernel: [   23.184182][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.184747][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1873 (reg 15091, index 30) beyond range (1887, 733)
Jun 23 16:37:18 dsd-pc kernel: [   23.184748][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.185314][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1873 (reg 15096, index 31) beyond range (1888, 734)
Jun 23 16:37:18 dsd-pc kernel: [   23.185315][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.185880][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1874 (reg 15100, index 32) beyond range (1888, 734)
Jun 23 16:37:18 dsd-pc kernel: [   23.185881][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.186917][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1874 (reg 15109, index 33) beyond range (1889, 735)
Jun 23 16:37:18 dsd-pc kernel: [   23.186918][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.187013][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1874 (reg 15109, index 34) beyond range (1889, 735)
Jun 23 16:37:18 dsd-pc kernel: [   23.187014][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.187581][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1874 (reg 15114, index 35) beyond range (1890, 736)
Jun 23 16:37:18 dsd-pc kernel: [   23.187582][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.188617][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1874 (reg 15122, index 36) beyond range (1891, 737)
Jun 23 16:37:18 dsd-pc kernel: [   23.188618][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.189653][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1874 (reg 15131, index 37) beyond range (1892, 738)
Jun 23 16:37:18 dsd-pc kernel: [   23.189654][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.190691][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1874 (reg 15139, index 38) beyond range (1893, 739)
Jun 23 16:37:18 dsd-pc kernel: [   23.190692][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.190975][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1874 (reg 15141, index 39) beyond range (1893, 739)
Jun 23 16:37:18 dsd-pc kernel: [   23.190976][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.191542][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1875 (reg 15146, index 40) beyond range (1894, 740)
Jun 23 16:37:18 dsd-pc kernel: [   23.191543][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.191732][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1875 (reg 15147, index 41) beyond range (1894, 740)
Jun 23 16:37:18 dsd-pc kernel: [   23.191733][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.192769][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1875 (reg 15155, index 42) beyond range (1895, 741)
Jun 23 16:37:18 dsd-pc kernel: [   23.192770][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.193241][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1875 (reg 15159, index 43) beyond range (1896, 741)
Jun 23 16:37:18 dsd-pc kernel: [   23.193242][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.197217][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1899 (reg 15191, index 2) beyond range (1900, 745)
Jun 23 16:37:18 dsd-pc kernel: [   23.197218][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.197500][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1899 (reg 15193, index 3) beyond range (1900, 746)
Jun 23 16:37:18 dsd-pc kernel: [   23.197501][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.198068][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1899 (reg 15198, index 4) beyond range (1900, 746)
Jun 23 16:37:18 dsd-pc kernel: [   23.198069][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.198447][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1899 (reg 15201, index 5) beyond range (1901, 747)
Jun 23 16:37:18 dsd-pc kernel: [   23.198448][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.198450][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1899 (reg 15201, index 6) beyond range (1901, 747)
Jun 23 16:37:18 dsd-pc kernel: [   23.198451][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.199016][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1899 (reg 15205, index 7) beyond range (1901, 747)
Jun 23 16:37:18 dsd-pc kernel: [   23.199017][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.199583][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1900 (reg 15210, index 8) beyond range (1902, 748)
Jun 23 16:37:18 dsd-pc kernel: [   23.199583][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.200150][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1900 (reg 15214, index 9) beyond range (1902, 748)
Jun 23 16:37:18 dsd-pc kernel: [   23.200151][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.200716][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1900 (reg 15219, index 10) beyond range (1903, 749)
Jun 23 16:37:18 dsd-pc kernel: [   23.200717][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.201282][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1900 (reg 15224, index 11) beyond range (1904, 750)
Jun 23 16:37:18 dsd-pc kernel: [   23.201283][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.201848][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1900 (reg 15228, index 12) beyond range (1904, 750)
Jun 23 16:37:18 dsd-pc kernel: [   23.201850][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.202415][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1900 (reg 15233, index 13) beyond range (1905, 751)
Jun 23 16:37:18 dsd-pc kernel: [   23.202417][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.202419][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1900 (reg 15233, index 14) beyond range (1905, 751)
Jun 23 16:37:18 dsd-pc kernel: [   23.202420][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.203172][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1900 (reg 15239, index 15) beyond range (1906, 751)
Jun 23 16:37:18 dsd-pc kernel: [   23.203173][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.204209][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1901 (reg 15247, index 16) beyond range (1907, 752)
Jun 23 16:37:18 dsd-pc kernel: [   23.204209][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.205245][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1901 (reg 15255, index 17) beyond range (1908, 753)
Jun 23 16:37:18 dsd-pc kernel: [   23.205246][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.206282][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1901 (reg 15264, index 18) beyond range (1909, 755)
Jun 23 16:37:18 dsd-pc kernel: [   23.206283][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.206942][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1901 (reg 15269, index 19) beyond range (1909, 755)
Jun 23 16:37:18 dsd-pc kernel: [   23.206944][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.207510][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1901 (reg 15273, index 20) beyond range (1910, 756)
Jun 23 16:37:18 dsd-pc kernel: [   23.207512][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.208546][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1901 (reg 15282, index 21) beyond range (1911, 757)
Jun 23 16:37:18 dsd-pc kernel: [   23.208547][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.209583][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1901 (reg 15290, index 22) beyond range (1912, 758)
Jun 23 16:37:18 dsd-pc kernel: [   23.209584][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.210619][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1901 (reg 15298, index 23) beyond range (1913, 759)
Jun 23 16:37:18 dsd-pc kernel: [   23.210620][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.210904][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1902 (reg 15301, index 24) beyond range (1913, 759)
Jun 23 16:37:18 dsd-pc kernel: [   23.210905][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.211471][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1902 (reg 15305, index 25) beyond range (1914, 760)
Jun 23 16:37:18 dsd-pc kernel: [   23.211472][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.212038][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1902 (reg 15310, index 26) beyond range (1914, 760)
Jun 23 16:37:18 dsd-pc kernel: [   23.212039][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.212604][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1902 (reg 15314, index 27) beyond range (1915, 761)
Jun 23 16:37:18 dsd-pc kernel: [   23.212605][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.213171][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1902 (reg 15319, index 28) beyond range (1916, 761)
Jun 23 16:37:18 dsd-pc kernel: [   23.213172][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.213737][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1902 (reg 15323, index 29) beyond range (1916, 762)
Jun 23 16:37:18 dsd-pc kernel: [   23.213738][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.214303][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1902 (reg 15328, index 30) beyond range (1917, 763)
Jun 23 16:37:18 dsd-pc kernel: [   23.214304][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.214494][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1902 (reg 15329, index 31) beyond range (1917, 763)
Jun 23 16:37:18 dsd-pc kernel: [   23.214495][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.214497][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1903 (reg 15329, index 32) beyond range (1917, 763)
Jun 23 16:37:18 dsd-pc kernel: [   23.214498][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.215062][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1903 (reg 15334, index 33) beyond range (1917, 763)
Jun 23 16:37:18 dsd-pc kernel: [   23.215063][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.215631][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1903 (reg 15338, index 34) beyond range (1918, 764)
Jun 23 16:37:18 dsd-pc kernel: [   23.215632][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.216199][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1903 (reg 15343, index 35) beyond range (1919, 764)
Jun 23 16:37:18 dsd-pc kernel: [   23.216200][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.216769][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1903 (reg 15347, index 36) beyond range (1919, 765)
Jun 23 16:37:18 dsd-pc kernel: [   23.216770][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.217337][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1903 (reg 15352, index 37) beyond range (1920, 766)
Jun 23 16:37:18 dsd-pc kernel: [   23.217338][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.217903][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1903 (reg 15356, index 38) beyond range (1920, 766)
Jun 23 16:37:18 dsd-pc kernel: [   23.217904][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.218469][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1903 (reg 15361, index 39) beyond range (1921, 767)
Jun 23 16:37:18 dsd-pc kernel: [   23.218470][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.218473][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1904 (reg 15361, index 40) beyond range (1921, 767)
Jun 23 16:37:18 dsd-pc kernel: [   23.218474][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.218476][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1904 (reg 15361, index 41) beyond range (1921, 767)
Jun 23 16:37:18 dsd-pc kernel: [   23.218477][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.218479][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1904 (reg 15361, index 42) beyond range (1921, 767)
Jun 23 16:37:18 dsd-pc kernel: [   23.218480][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.230652][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1932 (reg 15458, index 2) beyond range (1933, 779)
Jun 23 16:37:18 dsd-pc kernel: [   23.230654][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.230935][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1932 (reg 15461, index 3) beyond range (1933, 779)
Jun 23 16:37:18 dsd-pc kernel: [   23.230936][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.231503][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1932 (reg 15465, index 4) beyond range (1934, 780)
Jun 23 16:37:18 dsd-pc kernel: [   23.231504][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.232539][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1932 (reg 15474, index 5) beyond range (1935, 781)
Jun 23 16:37:18 dsd-pc kernel: [   23.232540][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.233576][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1932 (reg 15482, index 6) beyond range (1936, 782)
Jun 23 16:37:18 dsd-pc kernel: [   23.233577][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.234612][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1932 (reg 15490, index 7) beyond range (1937, 783)
Jun 23 16:37:18 dsd-pc kernel: [   23.234613][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.234897][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1933 (reg 15492, index 8) beyond range (1937, 783)
Jun 23 16:37:18 dsd-pc kernel: [   23.234898][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.235464][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1933 (reg 15497, index 9) beyond range (1938, 784)
Jun 23 16:37:18 dsd-pc kernel: [   23.235464][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.236500][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1933 (reg 15505, index 10) beyond range (1939, 785)
Jun 23 16:37:18 dsd-pc kernel: [   23.236501][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.237538][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1933 (reg 15514, index 11) beyond range (1940, 786)
Jun 23 16:37:18 dsd-pc kernel: [   23.237539][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.238574][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1933 (reg 15522, index 12) beyond range (1941, 787)
Jun 23 16:37:18 dsd-pc kernel: [   23.238575][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.239047][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1933 (reg 15526, index 13) beyond range (1941, 787)
Jun 23 16:37:18 dsd-pc kernel: [   23.239048][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.239614][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1933 (reg 15530, index 14) beyond range (1942, 788)
Jun 23 16:37:18 dsd-pc kernel: [   23.239615][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.240650][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1933 (reg 15538, index 15) beyond range (1943, 789)
Jun 23 16:37:18 dsd-pc kernel: [   23.240651][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.241687][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1934 (reg 15547, index 16) beyond range (1944, 790)
Jun 23 16:37:18 dsd-pc kernel: [   23.241688][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.242724][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1934 (reg 15555, index 17) beyond range (1945, 791)
Jun 23 16:37:18 dsd-pc kernel: [   23.242725][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.243008][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1934 (reg 15557, index 18) beyond range (1945, 791)
Jun 23 16:37:18 dsd-pc kernel: [   23.243009][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.243011][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1934 (reg 15557, index 19) beyond range (1945, 791)
Jun 23 16:37:18 dsd-pc kernel: [   23.243011][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.244047][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1934 (reg 15566, index 20) beyond range (1946, 792)
Jun 23 16:37:18 dsd-pc kernel: [   23.244048][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.245086][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1934 (reg 15574, index 21) beyond range (1947, 793)
Jun 23 16:37:18 dsd-pc kernel: [   23.245086][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.246125][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1934 (reg 15582, index 22) beyond range (1948, 794)
Jun 23 16:37:18 dsd-pc kernel: [   23.246126][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.246976][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1934 (reg 15589, index 23) beyond range (1949, 795)
Jun 23 16:37:18 dsd-pc kernel: [   23.246977][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.247543][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1935 (reg 15594, index 24) beyond range (1950, 796)
Jun 23 16:37:18 dsd-pc kernel: [   23.247544][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.248109][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1935 (reg 15598, index 25) beyond range (1950, 796)
Jun 23 16:37:18 dsd-pc kernel: [   23.248110][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.248675][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1935 (reg 15603, index 26) beyond range (1951, 797)
Jun 23 16:37:18 dsd-pc kernel: [   23.248676][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.249242][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1935 (reg 15607, index 27) beyond range (1952, 797)
Jun 23 16:37:18 dsd-pc kernel: [   23.249242][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.249808][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1935 (reg 15612, index 28) beyond range (1952, 798)
Jun 23 16:37:18 dsd-pc kernel: [   23.249809][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.250375][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1935 (reg 15616, index 29) beyond range (1953, 799)
Jun 23 16:37:18 dsd-pc kernel: [   23.250376][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.250378][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1935 (reg 15616, index 30) beyond range (1953, 799)
Jun 23 16:37:18 dsd-pc kernel: [   23.250379][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.250944][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1935 (reg 15621, index 31) beyond range (1953, 799)
Jun 23 16:37:18 dsd-pc kernel: [   23.250945][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.251135][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1936 (reg 15622, index 32) beyond range (1953, 799)
Jun 23 16:37:18 dsd-pc kernel: [   23.251136][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.251325][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1936 (reg 15624, index 33) beyond range (1954, 800)
Jun 23 16:37:18 dsd-pc kernel: [   23.251326][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.252361][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1936 (reg 15632, index 34) beyond range (1955, 801)
Jun 23 16:37:18 dsd-pc kernel: [   23.252363][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.253398][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1936 (reg 15640, index 35) beyond range (1956, 802)
Jun 23 16:37:18 dsd-pc kernel: [   23.253399][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.254435][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1936 (reg 15649, index 36) beyond range (1957, 803)
Jun 23 16:37:18 dsd-pc kernel: [   23.254436][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.254907][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1936 (reg 15653, index 37) beyond range (1957, 803)
Jun 23 16:37:18 dsd-pc kernel: [   23.254908][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.255474][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1936 (reg 15657, index 38) beyond range (1958, 804)
Jun 23 16:37:18 dsd-pc kernel: [   23.255475][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.255664][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1936 (reg 15659, index 39) beyond range (1958, 804)
Jun 23 16:37:18 dsd-pc kernel: [   23.255665][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.256700][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1937 (reg 15667, index 40) beyond range (1959, 805)
Jun 23 16:37:18 dsd-pc kernel: [   23.256701][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.257737][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1937 (reg 15675, index 41) beyond range (1960, 806)
Jun 23 16:37:18 dsd-pc kernel: [   23.257737][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.258775][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1937 (reg 15683, index 42) beyond range (1961, 807)
Jun 23 16:37:18 dsd-pc kernel: [   23.258776][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.259058][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1937 (reg 15686, index 43) beyond range (1961, 807)
Jun 23 16:37:18 dsd-pc kernel: [   23.259059][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.266602][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1968 (reg 15746, index 2) beyond range (1969, 815)
Jun 23 16:37:18 dsd-pc kernel: [   23.266603][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.266979][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1968 (reg 15749, index 3) beyond range (1969, 815)
Jun 23 16:37:18 dsd-pc kernel: [   23.266981][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.267546][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1968 (reg 15754, index 4) beyond range (1970, 816)
Jun 23 16:37:18 dsd-pc kernel: [   23.267548][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.268583][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1968 (reg 15762, index 5) beyond range (1971, 817)
Jun 23 16:37:18 dsd-pc kernel: [   23.268584][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.269619][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1968 (reg 15770, index 6) beyond range (1972, 818)
Jun 23 16:37:18 dsd-pc kernel: [   23.269620][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.270656][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1968 (reg 15779, index 7) beyond range (1973, 819)
Jun 23 16:37:18 dsd-pc kernel: [   23.270657][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.270940][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1969 (reg 15781, index 8) beyond range (1973, 819)
Jun 23 16:37:18 dsd-pc kernel: [   23.270941][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.271506][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1969 (reg 15785, index 9) beyond range (1974, 820)
Jun 23 16:37:18 dsd-pc kernel: [   23.271507][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.272543][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1969 (reg 15794, index 10) beyond range (1975, 821)
Jun 23 16:37:18 dsd-pc kernel: [   23.272544][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.273579][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1969 (reg 15802, index 11) beyond range (1976, 822)
Jun 23 16:37:18 dsd-pc kernel: [   23.273580][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.274617][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1969 (reg 15810, index 12) beyond range (1977, 823)
Jun 23 16:37:18 dsd-pc kernel: [   23.274618][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.274901][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1969 (reg 15812, index 13) beyond range (1977, 823)
Jun 23 16:37:18 dsd-pc kernel: [   23.274902][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.275468][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1969 (reg 15817, index 14) beyond range (1978, 824)
Jun 23 16:37:18 dsd-pc kernel: [   23.275469][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.276504][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1969 (reg 15825, index 15) beyond range (1979, 825)
Jun 23 16:37:18 dsd-pc kernel: [   23.276505][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.277540][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1970 (reg 15834, index 16) beyond range (1980, 826)
Jun 23 16:37:18 dsd-pc kernel: [   23.277541][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.278578][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1970 (reg 15842, index 17) beyond range (1981, 827)
Jun 23 16:37:18 dsd-pc kernel: [   23.278579][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.279051][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1970 (reg 15846, index 18) beyond range (1981, 827)
Jun 23 16:37:18 dsd-pc kernel: [   23.279052][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.279617][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1970 (reg 15850, index 19) beyond range (1982, 828)
Jun 23 16:37:18 dsd-pc kernel: [   23.279618][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.279807][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1970 (reg 15852, index 20) beyond range (1982, 828)
Jun 23 16:37:18 dsd-pc kernel: [   23.279807][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.280373][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1970 (reg 15856, index 21) beyond range (1983, 829)
Jun 23 16:37:18 dsd-pc kernel: [   23.280374][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.280942][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1970 (reg 15861, index 22) beyond range (1983, 829)
Jun 23 16:37:18 dsd-pc kernel: [   23.280942][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.281510][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1970 (reg 15865, index 23) beyond range (1984, 830)
Jun 23 16:37:18 dsd-pc kernel: [   23.281511][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.282080][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1971 (reg 15870, index 24) beyond range (1984, 830)
Jun 23 16:37:18 dsd-pc kernel: [   23.282081][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.282460][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1971 (reg 15873, index 25) beyond range (1985, 831)
Jun 23 16:37:18 dsd-pc kernel: [   23.282461][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.282463][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1971 (reg 15873, index 26) beyond range (1985, 831)
Jun 23 16:37:18 dsd-pc kernel: [   23.282464][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.283028][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1971 (reg 15878, index 27) beyond range (1985, 831)
Jun 23 16:37:18 dsd-pc kernel: [   23.283029][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.284065][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1971 (reg 15886, index 28) beyond range (1986, 832)
Jun 23 16:37:18 dsd-pc kernel: [   23.284066][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.285102][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1971 (reg 15894, index 29) beyond range (1987, 833)
Jun 23 16:37:18 dsd-pc kernel: [   23.285102][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.286139][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1971 (reg 15902, index 30) beyond range (1988, 834)
Jun 23 16:37:18 dsd-pc kernel: [   23.286140][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.286990][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1971 (reg 15909, index 31) beyond range (1989, 835)
Jun 23 16:37:18 dsd-pc kernel: [   23.286991][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.287557][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1972 (reg 15914, index 32) beyond range (1990, 836)
Jun 23 16:37:18 dsd-pc kernel: [   23.287558][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.288593][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1972 (reg 15922, index 33) beyond range (1991, 837)
Jun 23 16:37:18 dsd-pc kernel: [   23.288594][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.289629][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1972 (reg 15930, index 34) beyond range (1992, 838)
Jun 23 16:37:18 dsd-pc kernel: [   23.289630][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.290667][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1972 (reg 15939, index 35) beyond range (1993, 839)
Jun 23 16:37:18 dsd-pc kernel: [   23.290668][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.290951][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1972 (reg 15941, index 36) beyond range (1993, 839)
Jun 23 16:37:18 dsd-pc kernel: [   23.290952][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.291518][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1972 (reg 15945, index 37) beyond range (1994, 840)
Jun 23 16:37:18 dsd-pc kernel: [   23.291519][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.292554][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1972 (reg 15954, index 38) beyond range (1995, 841)
Jun 23 16:37:18 dsd-pc kernel: [   23.292555][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.293590][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1972 (reg 15962, index 39) beyond range (1996, 842)
Jun 23 16:37:18 dsd-pc kernel: [   23.293591][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.294627][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1973 (reg 15970, index 40) beyond range (1997, 843)
Jun 23 16:37:18 dsd-pc kernel: [   23.294629][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.294911][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1973 (reg 15973, index 41) beyond range (1997, 843)
Jun 23 16:37:18 dsd-pc kernel: [   23.294912][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.295478][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1973 (reg 15977, index 42) beyond range (1998, 844)
Jun 23 16:37:18 dsd-pc kernel: [   23.295479][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.306699][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2008 (reg 16067, index 2) beyond range (2009, 855)
Jun 23 16:37:18 dsd-pc kernel: [   23.306700][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.306983][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2008 (reg 16069, index 3) beyond range (2009, 855)
Jun 23 16:37:18 dsd-pc kernel: [   23.306984][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.307549][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2008 (reg 16074, index 4) beyond range (2010, 856)
Jun 23 16:37:18 dsd-pc kernel: [   23.307550][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.307739][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2008 (reg 16075, index 5) beyond range (2010, 856)
Jun 23 16:37:18 dsd-pc kernel: [   23.307741][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.308776][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2008 (reg 16083, index 6) beyond range (2011, 857)
Jun 23 16:37:18 dsd-pc kernel: [   23.308777][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.309813][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2008 (reg 16092, index 7) beyond range (2012, 858)
Jun 23 16:37:18 dsd-pc kernel: [   23.309813][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.310850][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2009 (reg 16100, index 8) beyond range (2013, 859)
Jun 23 16:37:18 dsd-pc kernel: [   23.310852][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.310946][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2009 (reg 16101, index 9) beyond range (2013, 859)
Jun 23 16:37:18 dsd-pc kernel: [   23.310947][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.311512][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2009 (reg 16105, index 10) beyond range (2014, 860)
Jun 23 16:37:18 dsd-pc kernel: [   23.311513][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.312549][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2009 (reg 16114, index 11) beyond range (2015, 861)
Jun 23 16:37:18 dsd-pc kernel: [   23.312549][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.313585][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2009 (reg 16122, index 12) beyond range (2016, 862)
Jun 23 16:37:18 dsd-pc kernel: [   23.313586][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.313775][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2009 (reg 16123, index 13) beyond range (2016, 862)
Jun 23 16:37:18 dsd-pc kernel: [   23.313776][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.314343][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2009 (reg 16128, index 14) beyond range (2017, 863)
Jun 23 16:37:18 dsd-pc kernel: [   23.314344][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.314346][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2009 (reg 16128, index 15) beyond range (2017, 863)
Jun 23 16:37:18 dsd-pc kernel: [   23.314347][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.314913][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2010 (reg 16133, index 16) beyond range (2017, 863)
Jun 23 16:37:18 dsd-pc kernel: [   23.314914][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.315479][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2010 (reg 16137, index 17) beyond range (2018, 864)
Jun 23 16:37:18 dsd-pc kernel: [   23.315480][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.316045][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2010 (reg 16142, index 18) beyond range (2018, 864)
Jun 23 16:37:18 dsd-pc kernel: [   23.316046][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.317082][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2010 (reg 16150, index 19) beyond range (2019, 865)
Jun 23 16:37:18 dsd-pc kernel: [   23.317083][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.318119][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2010 (reg 16158, index 20) beyond range (2020, 866)
Jun 23 16:37:18 dsd-pc kernel: [   23.318120][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.319063][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2010 (reg 16166, index 21) beyond range (2021, 867)
Jun 23 16:37:18 dsd-pc kernel: [   23.319065][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.319631][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2010 (reg 16170, index 22) beyond range (2022, 868)
Jun 23 16:37:18 dsd-pc kernel: [   23.319632][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.320667][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2010 (reg 16179, index 23) beyond range (2023, 869)
Jun 23 16:37:18 dsd-pc kernel: [   23.320668][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.321705][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2011 (reg 16187, index 24) beyond range (2024, 870)
Jun 23 16:37:18 dsd-pc kernel: [   23.321706][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.322740][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2011 (reg 16195, index 25) beyond range (2025, 871)
Jun 23 16:37:18 dsd-pc kernel: [   23.322741][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.323026][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2011 (reg 16197, index 26) beyond range (2025, 871)
Jun 23 16:37:18 dsd-pc kernel: [   23.323027][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.323591][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2011 (reg 16202, index 27) beyond range (2026, 872)
Jun 23 16:37:18 dsd-pc kernel: [   23.323593][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.324628][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2011 (reg 16210, index 28) beyond range (2027, 873)
Jun 23 16:37:18 dsd-pc kernel: [   23.324629][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.325665][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2011 (reg 16219, index 29) beyond range (2028, 874)
Jun 23 16:37:18 dsd-pc kernel: [   23.325666][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.326701][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2011 (reg 16227, index 30) beyond range (2029, 875)
Jun 23 16:37:18 dsd-pc kernel: [   23.326702][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.326986][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2011 (reg 16229, index 31) beyond range (2029, 875)
Jun 23 16:37:18 dsd-pc kernel: [   23.326988][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.327552][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2012 (reg 16234, index 32) beyond range (2030, 876)
Jun 23 16:37:18 dsd-pc kernel: [   23.327553][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.328589][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2012 (reg 16242, index 33) beyond range (2031, 877)
Jun 23 16:37:18 dsd-pc kernel: [   23.328590][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.329625][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2012 (reg 16250, index 34) beyond range (2032, 878)
Jun 23 16:37:18 dsd-pc kernel: [   23.329626][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.330662][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2012 (reg 16259, index 35) beyond range (2033, 879)
Jun 23 16:37:18 dsd-pc kernel: [   23.330662][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.330947][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2012 (reg 16261, index 36) beyond range (2033, 879)
Jun 23 16:37:18 dsd-pc kernel: [   23.330948][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.331513][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2012 (reg 16265, index 37) beyond range (2034, 880)
Jun 23 16:37:18 dsd-pc kernel: [   23.331515][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.331892][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2012 (reg 16268, index 38) beyond range (2034, 880)
Jun 23 16:37:18 dsd-pc kernel: [   23.331893][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.332928][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2012 (reg 16277, index 39) beyond range (2035, 881)
Jun 23 16:37:18 dsd-pc kernel: [   23.332929][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.333964][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2013 (reg 16285, index 40) beyond range (2036, 882)
Jun 23 16:37:18 dsd-pc kernel: [   23.333965][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.334908][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2013 (reg 16293, index 41) beyond range (2037, 883)
Jun 23 16:37:18 dsd-pc kernel: [   23.334909][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.335475][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2013 (reg 16297, index 42) beyond range (2038, 884)
Jun 23 16:37:18 dsd-pc kernel: [   23.335476][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.336512][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2013 (reg 16305, index 43) beyond range (2039, 885)
Jun 23 16:37:18 dsd-pc kernel: [   23.336513][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.343586][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2045 (reg 16362, index 5) beyond range (2046, 892)
Jun 23 16:37:18 dsd-pc kernel: [   23.343588][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.343776][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2045 (reg 16363, index 6) beyond range (2046, 892)
Jun 23 16:37:18 dsd-pc kernel: [   23.343777][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.344812][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2045 (reg 16372, index 7) beyond range (2047, 893)
Jun 23 16:37:18 dsd-pc kernel: [   23.344813][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.345849][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2046 (reg 16380, index 8) beyond range (0, 894)
Jun 23 16:37:18 dsd-pc kernel: [   23.345850][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.346885][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2046 (reg 4, index 9) beyond range (1, 895)
Jun 23 16:37:18 dsd-pc kernel: [   23.346887][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.346982][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2046 (reg 5, index 10) beyond range (1, 895)
Jun 23 16:37:18 dsd-pc kernel: [   23.346983][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.347550][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2046 (reg 10, index 11) beyond range (2, 896)
Jun 23 16:37:18 dsd-pc kernel: [   23.347551][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.348116][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2046 (reg 14, index 12) beyond range (2, 896)
Jun 23 16:37:18 dsd-pc kernel: [   23.348117][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.348683][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2046 (reg 19, index 13) beyond range (3, 897)
Jun 23 16:37:18 dsd-pc kernel: [   23.348684][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.349249][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2046 (reg 23, index 14) beyond range (4, 897)
Jun 23 16:37:18 dsd-pc kernel: [   23.349250][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.349815][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2046 (reg 28, index 15) beyond range (4, 898)
Jun 23 16:37:18 dsd-pc kernel: [   23.349816][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.350381][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2047 (reg 32, index 16) beyond range (5, 899)
Jun 23 16:37:18 dsd-pc kernel: [   23.350382][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.350384][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2047 (reg 32, index 17) beyond range (5, 899)
Jun 23 16:37:18 dsd-pc kernel: [   23.350386][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.350950][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2047 (reg 37, index 18) beyond range (5, 899)
Jun 23 16:37:18 dsd-pc kernel: [   23.350952][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.352080][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2047 (reg 46, index 19) beyond range (6, 900)
Jun 23 16:37:18 dsd-pc kernel: [   23.352081][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.353116][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2047 (reg 54, index 20) beyond range (7, 901)
Jun 23 16:37:18 dsd-pc kernel: [   23.353117][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.354153][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2047 (reg 63, index 21) beyond range (9, 902)
Jun 23 16:37:18 dsd-pc kernel: [   23.354154][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.355003][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2047 (reg 69, index 22) beyond range (9, 903)
Jun 23 16:37:18 dsd-pc kernel: [   23.355005][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.355570][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2047 (reg 74, index 23) beyond range (10, 904)
Jun 23 16:37:18 dsd-pc kernel: [   23.355571][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.356607][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 0 (reg 82, index 24) beyond range (11, 905)
Jun 23 16:37:18 dsd-pc kernel: [   23.356608][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.357643][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 0 (reg 90, index 25) beyond range (12, 906)
Jun 23 16:37:18 dsd-pc kernel: [   23.357644][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.358680][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 0 (reg 99, index 26) beyond range (13, 907)
Jun 23 16:37:18 dsd-pc kernel: [   23.358680][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.358965][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 0 (reg 101, index 27) beyond range (13, 907)
Jun 23 16:37:18 dsd-pc kernel: [   23.358967][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.359531][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 0 (reg 106, index 28) beyond range (14, 908)
Jun 23 16:37:18 dsd-pc kernel: [   23.359533][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.360568][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 0 (reg 114, index 29) beyond range (15, 909)
Jun 23 16:37:18 dsd-pc kernel: [   23.360569][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.361604][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 0 (reg 122, index 30) beyond range (16, 910)
Jun 23 16:37:18 dsd-pc kernel: [   23.361605][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.362641][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 0 (reg 130, index 31) beyond range (17, 911)
Jun 23 16:37:18 dsd-pc kernel: [   23.362641][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.362926][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1 (reg 133, index 32) beyond range (17, 911)
Jun 23 16:37:18 dsd-pc kernel: [   23.362927][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.363492][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1 (reg 137, index 33) beyond range (18, 912)
Jun 23 16:37:18 dsd-pc kernel: [   23.363494][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.363682][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1 (reg 139, index 34) beyond range (18, 912)
Jun 23 16:37:18 dsd-pc kernel: [   23.363683][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.364719][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1 (reg 147, index 35) beyond range (19, 913)
Jun 23 16:37:18 dsd-pc kernel: [   23.364719][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.365755][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1 (reg 155, index 36) beyond range (20, 914)
Jun 23 16:37:18 dsd-pc kernel: [   23.365756][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.366792][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1 (reg 164, index 37) beyond range (21, 915)
Jun 23 16:37:18 dsd-pc kernel: [   23.366792][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.366888][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1 (reg 164, index 38) beyond range (21, 915)
Jun 23 16:37:18 dsd-pc kernel: [   23.366889][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.366891][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1 (reg 164, index 39) beyond range (21, 915)
Jun 23 16:37:18 dsd-pc kernel: [   23.366892][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.367456][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2 (reg 169, index 40) beyond range (22, 916)
Jun 23 16:37:18 dsd-pc kernel: [   23.367457][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.368492][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2 (reg 177, index 41) beyond range (23, 917)
Jun 23 16:37:18 dsd-pc kernel: [   23.368493][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.369529][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 2 (reg 186, index 42) beyond range (24, 918)
Jun 23 16:37:18 dsd-pc kernel: [   23.369529][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.380669][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 34 (reg 275, index 6) beyond range (35, 929)
Jun 23 16:37:18 dsd-pc kernel: [   23.380670][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.381236][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 34 (reg 279, index 7) beyond range (36, 929)
Jun 23 16:37:18 dsd-pc kernel: [   23.381237][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.381804][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 35 (reg 284, index 8) beyond range (36, 930)
Jun 23 16:37:18 dsd-pc kernel: [   23.381805][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.382373][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 35 (reg 288, index 9) beyond range (37, 931)
Jun 23 16:37:18 dsd-pc kernel: [   23.382373][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.382375][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 35 (reg 288, index 10) beyond range (37, 931)
Jun 23 16:37:18 dsd-pc kernel: [   23.382376][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.382943][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 35 (reg 293, index 11) beyond range (37, 931)
Jun 23 16:37:18 dsd-pc kernel: [   23.382944][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.383979][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 35 (reg 301, index 12) beyond range (38, 932)
Jun 23 16:37:18 dsd-pc kernel: [   23.383980][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.385015][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 35 (reg 309, index 13) beyond range (39, 933)
Jun 23 16:37:18 dsd-pc kernel: [   23.385016][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.386052][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 35 (reg 318, index 14) beyond range (40, 934)
Jun 23 16:37:18 dsd-pc kernel: [   23.386053][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.386902][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 35 (reg 324, index 15) beyond range (41, 935)
Jun 23 16:37:18 dsd-pc kernel: [   23.386904][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.387468][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 36 (reg 329, index 16) beyond range (42, 936)
Jun 23 16:37:18 dsd-pc kernel: [   23.387469][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.388504][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 36 (reg 337, index 17) beyond range (43, 937)
Jun 23 16:37:18 dsd-pc kernel: [   23.388505][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.389540][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 36 (reg 346, index 18) beyond range (44, 938)
Jun 23 16:37:18 dsd-pc kernel: [   23.389542][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.390577][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 36 (reg 354, index 19) beyond range (45, 939)
Jun 23 16:37:18 dsd-pc kernel: [   23.390577][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.391050][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 36 (reg 358, index 20) beyond range (45, 939)
Jun 23 16:37:18 dsd-pc kernel: [   23.391051][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.391616][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 36 (reg 362, index 21) beyond range (46, 940)
Jun 23 16:37:18 dsd-pc kernel: [   23.391618][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.391806][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 36 (reg 364, index 22) beyond range (46, 940)
Jun 23 16:37:18 dsd-pc kernel: [   23.391808][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.392843][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 36 (reg 372, index 23) beyond range (47, 941)
Jun 23 16:37:18 dsd-pc kernel: [   23.392843][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.393879][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 37 (reg 380, index 24) beyond range (48, 942)
Jun 23 16:37:18 dsd-pc kernel: [   23.393880][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.394916][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 37 (reg 389, index 25) beyond range (49, 943)
Jun 23 16:37:18 dsd-pc kernel: [   23.394916][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.395012][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 37 (reg 389, index 26) beyond range (49, 943)
Jun 23 16:37:18 dsd-pc kernel: [   23.395013][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.395016][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 37 (reg 389, index 27) beyond range (49, 943)
Jun 23 16:37:18 dsd-pc kernel: [   23.395017][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.395580][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 37 (reg 394, index 28) beyond range (50, 944)
Jun 23 16:37:18 dsd-pc kernel: [   23.395581][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.396617][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 37 (reg 402, index 29) beyond range (51, 945)
Jun 23 16:37:18 dsd-pc kernel: [   23.396617][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.397653][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 37 (reg 410, index 30) beyond range (52, 946)
Jun 23 16:37:18 dsd-pc kernel: [   23.397653][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.398689][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 37 (reg 419, index 31) beyond range (53, 947)
Jun 23 16:37:18 dsd-pc kernel: [   23.398690][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.398974][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 38 (reg 421, index 32) beyond range (53, 947)
Jun 23 16:37:18 dsd-pc kernel: [   23.398975][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.399541][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 38 (reg 426, index 33) beyond range (54, 948)
Jun 23 16:37:18 dsd-pc kernel: [   23.399542][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.399730][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 38 (reg 427, index 34) beyond range (54, 948)
Jun 23 16:37:18 dsd-pc kernel: [   23.399731][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.400767][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 38 (reg 435, index 35) beyond range (55, 949)
Jun 23 16:37:18 dsd-pc kernel: [   23.400768][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.401804][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 38 (reg 444, index 36) beyond range (56, 950)
Jun 23 16:37:18 dsd-pc kernel: [   23.401804][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.402840][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 38 (reg 452, index 37) beyond range (57, 951)
Jun 23 16:37:18 dsd-pc kernel: [   23.402841][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.402937][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 38 (reg 453, index 38) beyond range (57, 951)
Jun 23 16:37:18 dsd-pc kernel: [   23.402937][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.402940][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 38 (reg 453, index 39) beyond range (57, 951)
Jun 23 16:37:18 dsd-pc kernel: [   23.402941][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.403975][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 39 (reg 461, index 40) beyond range (58, 952)
Jun 23 16:37:18 dsd-pc kernel: [   23.403977][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.405011][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 39 (reg 469, index 41) beyond range (59, 953)
Jun 23 16:37:18 dsd-pc kernel: [   23.405012][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.406048][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 39 (reg 478, index 42) beyond range (60, 954)
Jun 23 16:37:18 dsd-pc kernel: [   23.406048][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.406896][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 39 (reg 484, index 43) beyond range (61, 955)
Jun 23 16:37:18 dsd-pc kernel: [   23.406897][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.412658][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 66 (reg 531, index 2) beyond range (67, 961)
Jun 23 16:37:18 dsd-pc kernel: [   23.412660][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.413695][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 66 (reg 539, index 3) beyond range (68, 962)
Jun 23 16:37:18 dsd-pc kernel: [   23.413696][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.414261][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 66 (reg 543, index 4) beyond range (69, 962)
Jun 23 16:37:18 dsd-pc kernel: [   23.414262][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.414451][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 66 (reg 545, index 5) beyond range (69, 963)
Jun 23 16:37:18 dsd-pc kernel: [   23.414452][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.414454][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 66 (reg 545, index 6) beyond range (69, 963)
Jun 23 16:37:18 dsd-pc kernel: [   23.414455][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.415022][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 66 (reg 549, index 7) beyond range (69, 963)
Jun 23 16:37:18 dsd-pc kernel: [   23.415024][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.415588][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 67 (reg 554, index 8) beyond range (70, 964)
Jun 23 16:37:18 dsd-pc kernel: [   23.415588][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.416154][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 67 (reg 559, index 9) beyond range (71, 964)
Jun 23 16:37:18 dsd-pc kernel: [   23.416155][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.417190][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 67 (reg 567, index 10) beyond range (72, 965)
Jun 23 16:37:18 dsd-pc kernel: [   23.417191][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.418227][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 67 (reg 575, index 11) beyond range (73, 966)
Jun 23 16:37:18 dsd-pc kernel: [   23.418228][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.418982][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 67 (reg 581, index 12) beyond range (73, 967)
Jun 23 16:37:18 dsd-pc kernel: [   23.418983][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.419549][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 67 (reg 586, index 13) beyond range (74, 968)
Jun 23 16:37:18 dsd-pc kernel: [   23.419550][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.420586][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 67 (reg 594, index 14) beyond range (75, 969)
Jun 23 16:37:18 dsd-pc kernel: [   23.420587][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.421622][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 67 (reg 602, index 15) beyond range (76, 970)
Jun 23 16:37:18 dsd-pc kernel: [   23.421623][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.422659][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 68 (reg 611, index 16) beyond range (77, 971)
Jun 23 16:37:18 dsd-pc kernel: [   23.422659][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.422944][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 68 (reg 613, index 17) beyond range (77, 971)
Jun 23 16:37:18 dsd-pc kernel: [   23.422945][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.423510][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 68 (reg 617, index 18) beyond range (78, 972)
Jun 23 16:37:18 dsd-pc kernel: [   23.423512][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.424547][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 68 (reg 626, index 19) beyond range (79, 973)
Jun 23 16:37:18 dsd-pc kernel: [   23.424548][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.425583][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 68 (reg 634, index 20) beyond range (80, 974)
Jun 23 16:37:18 dsd-pc kernel: [   23.425584][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.426619][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 68 (reg 642, index 21) beyond range (81, 975)
Jun 23 16:37:18 dsd-pc kernel: [   23.426620][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.426905][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 68 (reg 645, index 22) beyond range (81, 975)
Jun 23 16:37:18 dsd-pc kernel: [   23.426906][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.427471][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 68 (reg 649, index 23) beyond range (82, 976)
Jun 23 16:37:18 dsd-pc kernel: [   23.427472][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.428508][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 69 (reg 657, index 24) beyond range (83, 977)
Jun 23 16:37:18 dsd-pc kernel: [   23.428509][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.429544][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 69 (reg 666, index 25) beyond range (84, 978)
Jun 23 16:37:18 dsd-pc kernel: [   23.429545][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.430581][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 69 (reg 674, index 26) beyond range (85, 979)
Jun 23 16:37:18 dsd-pc kernel: [   23.430581][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.431054][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 69 (reg 678, index 27) beyond range (85, 979)
Jun 23 16:37:18 dsd-pc kernel: [   23.431056][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.431620][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 69 (reg 682, index 28) beyond range (86, 980)
Jun 23 16:37:18 dsd-pc kernel: [   23.431621][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.431810][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 69 (reg 684, index 29) beyond range (86, 980)
Jun 23 16:37:18 dsd-pc kernel: [   23.431811][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.432846][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 69 (reg 692, index 30) beyond range (87, 981)
Jun 23 16:37:18 dsd-pc kernel: [   23.432847][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.433883][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 69 (reg 700, index 31) beyond range (88, 982)
Jun 23 16:37:18 dsd-pc kernel: [   23.433884][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.434920][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 70 (reg 709, index 32) beyond range (89, 983)
Jun 23 16:37:18 dsd-pc kernel: [   23.434920][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.435016][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 70 (reg 709, index 33) beyond range (89, 983)
Jun 23 16:37:18 dsd-pc kernel: [   23.435017][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.435019][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 70 (reg 709, index 34) beyond range (89, 983)
Jun 23 16:37:18 dsd-pc kernel: [   23.435020][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.435584][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 70 (reg 714, index 35) beyond range (90, 984)
Jun 23 16:37:18 dsd-pc kernel: [   23.435585][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.436621][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 70 (reg 722, index 36) beyond range (91, 985)
Jun 23 16:37:18 dsd-pc kernel: [   23.436622][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.437657][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 70 (reg 731, index 37) beyond range (92, 986)
Jun 23 16:37:18 dsd-pc kernel: [   23.437659][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.438698][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 70 (reg 739, index 38) beyond range (93, 987)
Jun 23 16:37:18 dsd-pc kernel: [   23.438700][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.438985][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 70 (reg 741, index 39) beyond range (93, 987)
Jun 23 16:37:18 dsd-pc kernel: [   23.438985][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.438988][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 71 (reg 741, index 40) beyond range (93, 987)
Jun 23 16:37:18 dsd-pc kernel: [   23.438989][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.439553][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 71 (reg 746, index 41) beyond range (94, 988)
Jun 23 16:37:18 dsd-pc kernel: [   23.439554][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.440589][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 71 (reg 754, index 42) beyond range (95, 989)
Jun 23 16:37:18 dsd-pc kernel: [   23.440590][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.446157][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 100 (reg 799, index 1) beyond range (101, 994)
Jun 23 16:37:18 dsd-pc kernel: [   23.446159][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.446910][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 100 (reg 805, index 2) beyond range (101, 995)
Jun 23 16:37:18 dsd-pc kernel: [   23.446912][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.447477][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 100 (reg 809, index 3) beyond range (102, 996)
Jun 23 16:37:18 dsd-pc kernel: [   23.447478][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.448044][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 100 (reg 814, index 4) beyond range (102, 996)
Jun 23 16:37:18 dsd-pc kernel: [   23.448045][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.448609][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 100 (reg 818, index 5) beyond range (103, 997)
Jun 23 16:37:18 dsd-pc kernel: [   23.448610][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.449176][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 100 (reg 823, index 6) beyond range (104, 997)
Jun 23 16:37:18 dsd-pc kernel: [   23.449176][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.449742][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 100 (reg 827, index 7) beyond range (104, 998)
Jun 23 16:37:18 dsd-pc kernel: [   23.449743][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.450308][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 101 (reg 832, index 8) beyond range (105, 999)
Jun 23 16:37:18 dsd-pc kernel: [   23.450309][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.450499][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 101 (reg 833, index 9) beyond range (105, 999)
Jun 23 16:37:18 dsd-pc kernel: [   23.450501][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.450503][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 101 (reg 833, index 10) beyond range (105, 999)
Jun 23 16:37:18 dsd-pc kernel: [   23.450504][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.451068][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 101 (reg 838, index 11) beyond range (105, 999)
Jun 23 16:37:18 dsd-pc kernel: [   23.451070][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.452105][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 101 (reg 846, index 12) beyond range (106, 1000)
Jun 23 16:37:18 dsd-pc kernel: [   23.452106][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.453141][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 101 (reg 854, index 13) beyond range (107, 1001)
Jun 23 16:37:18 dsd-pc kernel: [   23.453142][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.454177][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 101 (reg 863, index 14) beyond range (109, 1002)
Jun 23 16:37:18 dsd-pc kernel: [   23.454178][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.455027][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 101 (reg 869, index 15) beyond range (109, 1003)
Jun 23 16:37:18 dsd-pc kernel: [   23.455028][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.455593][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 102 (reg 874, index 16) beyond range (110, 1004)
Jun 23 16:37:18 dsd-pc kernel: [   23.455595][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.456630][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 102 (reg 882, index 17) beyond range (111, 1005)
Jun 23 16:37:18 dsd-pc kernel: [   23.456632][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.457666][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 102 (reg 891, index 18) beyond range (112, 1006)
Jun 23 16:37:18 dsd-pc kernel: [   23.457667][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.458703][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 102 (reg 899, index 19) beyond range (113, 1007)
Jun 23 16:37:18 dsd-pc kernel: [   23.458704][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.458988][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 102 (reg 901, index 20) beyond range (113, 1007)
Jun 23 16:37:18 dsd-pc kernel: [   23.458990][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.459554][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 102 (reg 906, index 21) beyond range (114, 1008)
Jun 23 16:37:18 dsd-pc kernel: [   23.459555][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.460591][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 102 (reg 914, index 22) beyond range (115, 1009)
Jun 23 16:37:18 dsd-pc kernel: [   23.460591][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.461627][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 102 (reg 922, index 23) beyond range (116, 1010)
Jun 23 16:37:18 dsd-pc kernel: [   23.461628][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.462664][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 103 (reg 931, index 24) beyond range (117, 1011)
Jun 23 16:37:18 dsd-pc kernel: [   23.462664][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.462949][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 103 (reg 933, index 25) beyond range (117, 1011)
Jun 23 16:37:18 dsd-pc kernel: [   23.462950][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.463515][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 103 (reg 937, index 26) beyond range (118, 1012)
Jun 23 16:37:18 dsd-pc kernel: [   23.463516][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.463705][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 103 (reg 939, index 27) beyond range (118, 1012)
Jun 23 16:37:18 dsd-pc kernel: [   23.463706][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.464741][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 103 (reg 947, index 28) beyond range (119, 1013)
Jun 23 16:37:18 dsd-pc kernel: [   23.464742][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.465778][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 103 (reg 955, index 29) beyond range (120, 1014)
Jun 23 16:37:18 dsd-pc kernel: [   23.465778][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.466815][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 103 (reg 964, index 30) beyond range (121, 1015)
Jun 23 16:37:18 dsd-pc kernel: [   23.466815][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.466912][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 103 (reg 965, index 31) beyond range (121, 1015)
Jun 23 16:37:18 dsd-pc kernel: [   23.466913][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.467478][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 104 (reg 969, index 32) beyond range (122, 1016)
Jun 23 16:37:18 dsd-pc kernel: [   23.467479][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.467668][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 104 (reg 971, index 33) beyond range (122, 1016)
Jun 23 16:37:18 dsd-pc kernel: [   23.467669][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.468704][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 104 (reg 979, index 34) beyond range (123, 1017)
Jun 23 16:37:18 dsd-pc kernel: [   23.468705][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.469741][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 104 (reg 987, index 35) beyond range (124, 1018)
Jun 23 16:37:18 dsd-pc kernel: [   23.469742][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.470778][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 104 (reg 995, index 36) beyond range (125, 1019)
Jun 23 16:37:18 dsd-pc kernel: [   23.470779][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.471064][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 104 (reg 998, index 37) beyond range (125, 1019)
Jun 23 16:37:18 dsd-pc kernel: [   23.471065][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.471068][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 104 (reg 998, index 38) beyond range (125, 1019)
Jun 23 16:37:18 dsd-pc kernel: [   23.471069][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.471632][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 104 (reg 1002, index 39) beyond range (126, 1020)
Jun 23 16:37:18 dsd-pc kernel: [   23.471633][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.472669][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 105 (reg 1011, index 40) beyond range (127, 1021)
Jun 23 16:37:18 dsd-pc kernel: [   23.472670][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.473705][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 105 (reg 1019, index 41) beyond range (128, 1022)
Jun 23 16:37:18 dsd-pc kernel: [   23.473706][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.474742][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 105 (reg 1027, index 42) beyond range (129, 1023)
Jun 23 16:37:18 dsd-pc kernel: [   23.474744][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.475026][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 105 (reg 1029, index 43) beyond range (129, 1023)
Jun 23 16:37:18 dsd-pc kernel: [   23.475027][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.481634][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 135 (reg 1082, index 4) beyond range (136, 1030)
Jun 23 16:37:18 dsd-pc kernel: [   23.481635][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.482198][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 135 (reg 1087, index 5) beyond range (137, 1030)
Jun 23 16:37:18 dsd-pc kernel: [   23.482199][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.482388][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 135 (reg 1088, index 6) beyond range (137, 1031)
Jun 23 16:37:18 dsd-pc kernel: [   23.482389][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.482390][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 135 (reg 1088, index 7) beyond range (137, 1031)
Jun 23 16:37:18 dsd-pc kernel: [   23.482392][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.482958][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 136 (reg 1093, index 8) beyond range (137, 1031)
Jun 23 16:37:18 dsd-pc kernel: [   23.482959][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.483994][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 136 (reg 1101, index 9) beyond range (138, 1032)
Jun 23 16:37:18 dsd-pc kernel: [   23.483996][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.485031][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 136 (reg 1110, index 10) beyond range (139, 1033)
Jun 23 16:37:18 dsd-pc kernel: [   23.485032][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.486067][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 136 (reg 1118, index 11) beyond range (140, 1034)
Jun 23 16:37:18 dsd-pc kernel: [   23.486068][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.486917][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 136 (reg 1125, index 12) beyond range (141, 1035)
Jun 23 16:37:18 dsd-pc kernel: [   23.486918][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.487483][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 136 (reg 1129, index 13) beyond range (142, 1036)
Jun 23 16:37:18 dsd-pc kernel: [   23.487484][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.488519][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 136 (reg 1137, index 14) beyond range (143, 1037)
Jun 23 16:37:18 dsd-pc kernel: [   23.488520][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.489555][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 136 (reg 1146, index 15) beyond range (144, 1038)
Jun 23 16:37:18 dsd-pc kernel: [   23.489556][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.490592][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 137 (reg 1154, index 16) beyond range (145, 1039)
Jun 23 16:37:18 dsd-pc kernel: [   23.490593][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.491066][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 137 (reg 1158, index 17) beyond range (145, 1039)
Jun 23 16:37:18 dsd-pc kernel: [   23.491067][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.491632][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 137 (reg 1162, index 18) beyond range (146, 1040)
Jun 23 16:37:18 dsd-pc kernel: [   23.491634][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.492668][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 137 (reg 1171, index 19) beyond range (147, 1041)
Jun 23 16:37:18 dsd-pc kernel: [   23.492669][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.493704][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 137 (reg 1179, index 20) beyond range (148, 1042)
Jun 23 16:37:18 dsd-pc kernel: [   23.493705][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.494741][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 137 (reg 1187, index 21) beyond range (149, 1043)
Jun 23 16:37:18 dsd-pc kernel: [   23.494742][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.495025][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 137 (reg 1189, index 22) beyond range (149, 1043)
Jun 23 16:37:18 dsd-pc kernel: [   23.495026][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.495593][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 137 (reg 1194, index 23) beyond range (150, 1044)
Jun 23 16:37:18 dsd-pc kernel: [   23.495594][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.496630][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 138 (reg 1202, index 24) beyond range (151, 1045)
Jun 23 16:37:18 dsd-pc kernel: [   23.496631][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.497666][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 138 (reg 1211, index 25) beyond range (152, 1046)
Jun 23 16:37:18 dsd-pc kernel: [   23.497667][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.498703][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 138 (reg 1219, index 26) beyond range (153, 1047)
Jun 23 16:37:18 dsd-pc kernel: [   23.498703][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.498988][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 138 (reg 1221, index 27) beyond range (153, 1047)
Jun 23 16:37:18 dsd-pc kernel: [   23.498989][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.500026][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 138 (reg 1229, index 28) beyond range (154, 1048)
Jun 23 16:37:18 dsd-pc kernel: [   23.500028][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.501064][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 138 (reg 1238, index 29) beyond range (155, 1049)
Jun 23 16:37:18 dsd-pc kernel: [   23.501065][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.502102][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 138 (reg 1246, index 30) beyond range (156, 1050)
Jun 23 16:37:18 dsd-pc kernel: [   23.502103][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.502953][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 138 (reg 1253, index 31) beyond range (157, 1051)
Jun 23 16:37:18 dsd-pc kernel: [   23.502954][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.502956][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 139 (reg 1253, index 32) beyond range (157, 1051)
Jun 23 16:37:18 dsd-pc kernel: [   23.502957][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.503521][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 139 (reg 1257, index 33) beyond range (158, 1052)
Jun 23 16:37:18 dsd-pc kernel: [   23.503522][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.504558][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 139 (reg 1266, index 34) beyond range (159, 1053)
Jun 23 16:37:18 dsd-pc kernel: [   23.504559][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.505594][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 139 (reg 1274, index 35) beyond range (160, 1054)
Jun 23 16:37:18 dsd-pc kernel: [   23.505595][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.506631][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 139 (reg 1282, index 36) beyond range (161, 1055)
Jun 23 16:37:18 dsd-pc kernel: [   23.506631][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.506916][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 139 (reg 1285, index 37) beyond range (161, 1055)
Jun 23 16:37:18 dsd-pc kernel: [   23.506917][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.507482][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 139 (reg 1289, index 38) beyond range (162, 1056)
Jun 23 16:37:18 dsd-pc kernel: [   23.507484][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.508518][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 139 (reg 1297, index 39) beyond range (163, 1057)
Jun 23 16:37:18 dsd-pc kernel: [   23.508519][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.509555][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 140 (reg 1306, index 40) beyond range (164, 1058)
Jun 23 16:37:18 dsd-pc kernel: [   23.509555][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.510592][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 140 (reg 1314, index 41) beyond range (165, 1059)
Jun 23 16:37:18 dsd-pc kernel: [   23.510592][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.511064][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 140 (reg 1318, index 42) beyond range (165, 1059)
Jun 23 16:37:18 dsd-pc kernel: [   23.511065][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.517306][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 171 (reg 1368, index 13) beyond range (172, 1066)
Jun 23 16:37:18 dsd-pc kernel: [   23.517308][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.518342][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 171 (reg 1376, index 14) beyond range (173, 1067)
Jun 23 16:37:18 dsd-pc kernel: [   23.518342][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.519002][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 171 (reg 1381, index 15) beyond range (173, 1067)
Jun 23 16:37:18 dsd-pc kernel: [   23.519003][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.519569][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 172 (reg 1386, index 16) beyond range (174, 1068)
Jun 23 16:37:18 dsd-pc kernel: [   23.519571][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.520606][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 172 (reg 1394, index 17) beyond range (175, 1069)
Jun 23 16:37:18 dsd-pc kernel: [   23.520607][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.521643][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 172 (reg 1402, index 18) beyond range (176, 1070)
Jun 23 16:37:18 dsd-pc kernel: [   23.521644][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.522679][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 172 (reg 1411, index 19) beyond range (177, 1071)
Jun 23 16:37:18 dsd-pc kernel: [   23.522680][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.522964][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 172 (reg 1413, index 20) beyond range (177, 1071)
Jun 23 16:37:18 dsd-pc kernel: [   23.522966][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.523531][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 172 (reg 1418, index 21) beyond range (178, 1072)
Jun 23 16:37:18 dsd-pc kernel: [   23.523533][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.524567][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 172 (reg 1426, index 22) beyond range (179, 1073)
Jun 23 16:37:18 dsd-pc kernel: [   23.524568][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.525603][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 172 (reg 1434, index 23) beyond range (180, 1074)
Jun 23 16:37:18 dsd-pc kernel: [   23.525604][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.526640][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 173 (reg 1442, index 24) beyond range (181, 1075)
Jun 23 16:37:18 dsd-pc kernel: [   23.526641][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.526924][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 173 (reg 1445, index 25) beyond range (181, 1075)
Jun 23 16:37:18 dsd-pc kernel: [   23.526925][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.526927][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 173 (reg 1445, index 26) beyond range (181, 1075)
Jun 23 16:37:18 dsd-pc kernel: [   23.526929][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.527492][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 173 (reg 1449, index 27) beyond range (182, 1076)
Jun 23 16:37:18 dsd-pc kernel: [   23.527493][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.527682][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 173 (reg 1451, index 28) beyond range (182, 1076)
Jun 23 16:37:18 dsd-pc kernel: [   23.527683][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.528719][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 173 (reg 1459, index 29) beyond range (183, 1077)
Jun 23 16:37:18 dsd-pc kernel: [   23.528719][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.529755][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 173 (reg 1467, index 30) beyond range (184, 1078)
Jun 23 16:37:18 dsd-pc kernel: [   23.529756][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.530792][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 173 (reg 1476, index 31) beyond range (185, 1079)
Jun 23 16:37:18 dsd-pc kernel: [   23.530793][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.530888][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 174 (reg 1476, index 32) beyond range (185, 1079)
Jun 23 16:37:18 dsd-pc kernel: [   23.530889][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.531456][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 174 (reg 1481, index 33) beyond range (186, 1080)
Jun 23 16:37:18 dsd-pc kernel: [   23.531457][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.532492][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 174 (reg 1489, index 34) beyond range (187, 1081)
Jun 23 16:37:18 dsd-pc kernel: [   23.532493][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.533529][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 174 (reg 1498, index 35) beyond range (188, 1082)
Jun 23 16:37:18 dsd-pc kernel: [   23.533530][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.534570][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 174 (reg 1506, index 36) beyond range (189, 1083)
Jun 23 16:37:18 dsd-pc kernel: [   23.534570][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.535045][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 174 (reg 1510, index 37) beyond range (189, 1083)
Jun 23 16:37:18 dsd-pc kernel: [   23.535046][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.535612][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 174 (reg 1514, index 38) beyond range (190, 1084)
Jun 23 16:37:18 dsd-pc kernel: [   23.535613][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.536648][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 174 (reg 1522, index 39) beyond range (191, 1085)
Jun 23 16:37:18 dsd-pc kernel: [   23.536649][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.537685][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 175 (reg 1531, index 40) beyond range (192, 1086)
Jun 23 16:37:18 dsd-pc kernel: [   23.537685][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.538721][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 175 (reg 1539, index 41) beyond range (193, 1087)
Jun 23 16:37:18 dsd-pc kernel: [   23.538722][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.539006][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 175 (reg 1541, index 42) beyond range (193, 1087)
Jun 23 16:37:18 dsd-pc kernel: [   23.539007][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc kernel: [   23.539010][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 175 (reg 1541, index 43) beyond range (193, 1087)
Jun 23 16:37:18 dsd-pc kernel: [   23.539011][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:18 dsd-pc pulseaudio[2928]: [pulseaudio] module-card-restore.c: Synced.
Jun 23 16:37:18 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:19 dsd-pc kernel: [   24.031276][13] [ T5034] Bluetooth: Core ver 2.22
Jun 23 16:37:19 dsd-pc kernel: [   24.031300][13] [ T5034] NET: Registered protocol family 31
Jun 23 16:37:19 dsd-pc kernel: [   24.031301][13] [ T5034] Bluetooth: HCI device and connection manager initialized
Jun 23 16:37:19 dsd-pc kernel: [   24.031305][13] [ T5034] Bluetooth: HCI socket layer initialized
Jun 23 16:37:19 dsd-pc kernel: [   24.031307][13] [ T5034] Bluetooth: L2CAP socket layer initialized
Jun 23 16:37:19 dsd-pc kernel: [   24.031313][13] [ T5034] Bluetooth: SCO socket layer initialized
Jun 23 16:37:19 dsd-pc kernel: [   24.803972][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1457 (reg 11661, index 12) beyond range (1458, 304)
Jun 23 16:37:19 dsd-pc kernel: [   24.803975][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.805002][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1457 (reg 11669, index 13) beyond range (1459, 305)
Jun 23 16:37:19 dsd-pc kernel: [   24.805003][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.806039][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1458 (reg 11678, index 14) beyond range (1460, 306)
Jun 23 16:37:19 dsd-pc kernel: [   24.806040][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.806887][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1458 (reg 11684, index 15) beyond range (1461, 307)
Jun 23 16:37:19 dsd-pc kernel: [   24.806888][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.807924][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1458 (reg 11693, index 16) beyond range (1462, 308)
Jun 23 16:37:19 dsd-pc kernel: [   24.807925][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.808961][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1458 (reg 11701, index 17) beyond range (1463, 309)
Jun 23 16:37:19 dsd-pc kernel: [   24.808961][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.809997][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1458 (reg 11709, index 18) beyond range (1464, 310)
Jun 23 16:37:19 dsd-pc kernel: [   24.809998][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.810940][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1458 (reg 11717, index 19) beyond range (1465, 311)
Jun 23 16:37:19 dsd-pc kernel: [   24.810940][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.811977][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1458 (reg 11725, index 20) beyond range (1466, 312)
Jun 23 16:37:19 dsd-pc kernel: [   24.811977][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.813013][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1458 (reg 11733, index 21) beyond range (1467, 313)
Jun 23 16:37:19 dsd-pc kernel: [   24.813014][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.814052][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1459 (reg 11742, index 22) beyond range (1468, 314)
Jun 23 16:37:19 dsd-pc kernel: [   24.814053][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.814997][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1459 (reg 11749, index 23) beyond range (1469, 315)
Jun 23 16:37:19 dsd-pc kernel: [   24.814997][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.816033][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1459 (reg 11758, index 24) beyond range (1470, 316)
Jun 23 16:37:19 dsd-pc kernel: [   24.816034][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.817070][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1459 (reg 11766, index 25) beyond range (1471, 317)
Jun 23 16:37:19 dsd-pc kernel: [   24.817071][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.818107][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1459 (reg 11774, index 26) beyond range (1472, 318)
Jun 23 16:37:19 dsd-pc kernel: [   24.818107][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.818955][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1459 (reg 11781, index 27) beyond range (1473, 319)
Jun 23 16:37:19 dsd-pc kernel: [   24.818956][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.818957][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1459 (reg 11781, index 28) beyond range (1473, 319)
Jun 23 16:37:19 dsd-pc kernel: [   24.818958][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.819993][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1459 (reg 11789, index 29) beyond range (1474, 320)
Jun 23 16:37:19 dsd-pc kernel: [   24.819993][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.821030][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1460 (reg 11798, index 30) beyond range (1475, 321)
Jun 23 16:37:19 dsd-pc kernel: [   24.821030][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.822066][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1460 (reg 11806, index 31) beyond range (1476, 322)
Jun 23 16:37:19 dsd-pc kernel: [   24.822067][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.822915][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1460 (reg 11813, index 32) beyond range (1477, 323)
Jun 23 16:37:19 dsd-pc kernel: [   24.822915][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.823951][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1460 (reg 11821, index 33) beyond range (1478, 324)
Jun 23 16:37:19 dsd-pc kernel: [   24.823952][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.824988][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1460 (reg 11829, index 34) beyond range (1479, 325)
Jun 23 16:37:19 dsd-pc kernel: [   24.824989][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.826025][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1460 (reg 11837, index 35) beyond range (1480, 326)
Jun 23 16:37:19 dsd-pc kernel: [   24.826025][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.827061][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1460 (reg 11846, index 36) beyond range (1481, 327)
Jun 23 16:37:19 dsd-pc kernel: [   24.827062][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.828098][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1460 (reg 11854, index 37) beyond range (1482, 328)
Jun 23 16:37:19 dsd-pc kernel: [   24.828099][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.828758][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1461 (reg 11859, index 38) beyond range (1483, 329)
Jun 23 16:37:19 dsd-pc kernel: [   24.828759][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.829325][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1461 (reg 11864, index 39) beyond range (1484, 330)
Jun 23 16:37:19 dsd-pc kernel: [   24.829326][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.829703][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1461 (reg 11867, index 40) beyond range (1484, 330)
Jun 23 16:37:19 dsd-pc kernel: [   24.829704][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.830740][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1461 (reg 11875, index 41) beyond range (1485, 331)
Jun 23 16:37:19 dsd-pc kernel: [   24.830741][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:19 dsd-pc kernel: [   24.831024][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1461 (reg 11877, index 42) beyond range (1485, 331)
Jun 23 16:37:19 dsd-pc kernel: [   24.831025][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.836309][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1490 (reg 11920, index 2) beyond range (1491, 337)
Jun 23 16:37:20 dsd-pc kernel: [   24.836310][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.837344][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1490 (reg 11928, index 3) beyond range (1492, 338)
Jun 23 16:37:20 dsd-pc kernel: [   24.837345][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.838381][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1490 (reg 11936, index 4) beyond range (1493, 339)
Jun 23 16:37:20 dsd-pc kernel: [   24.838382][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.838946][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1490 (reg 11941, index 5) beyond range (1493, 339)
Jun 23 16:37:20 dsd-pc kernel: [   24.838948][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.838950][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1490 (reg 11941, index 6) beyond range (1493, 339)
Jun 23 16:37:20 dsd-pc kernel: [   24.838951][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.839986][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1490 (reg 11949, index 7) beyond range (1494, 340)
Jun 23 16:37:20 dsd-pc kernel: [   24.839987][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.841024][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1491 (reg 11957, index 8) beyond range (1495, 341)
Jun 23 16:37:20 dsd-pc kernel: [   24.841025][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.842063][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1491 (reg 11966, index 9) beyond range (1496, 342)
Jun 23 16:37:20 dsd-pc kernel: [   24.842064][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.842914][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1491 (reg 11973, index 10) beyond range (1497, 343)
Jun 23 16:37:20 dsd-pc kernel: [   24.842915][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.843951][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1491 (reg 11981, index 11) beyond range (1498, 344)
Jun 23 16:37:20 dsd-pc kernel: [   24.843951][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.844987][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1491 (reg 11989, index 12) beyond range (1499, 345)
Jun 23 16:37:20 dsd-pc kernel: [   24.844988][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.846024][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1491 (reg 11997, index 13) beyond range (1500, 346)
Jun 23 16:37:20 dsd-pc kernel: [   24.846025][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.847061][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1491 (reg 12006, index 14) beyond range (1501, 347)
Jun 23 16:37:20 dsd-pc kernel: [   24.847061][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.848098][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1491 (reg 12014, index 15) beyond range (1502, 348)
Jun 23 16:37:20 dsd-pc kernel: [   24.848099][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.848571][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1492 (reg 12018, index 16) beyond range (1503, 349)
Jun 23 16:37:20 dsd-pc kernel: [   24.848572][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.849138][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1492 (reg 12022, index 17) beyond range (1503, 349)
Jun 23 16:37:20 dsd-pc kernel: [   24.849139][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.849516][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1492 (reg 12025, index 18) beyond range (1504, 350)
Jun 23 16:37:20 dsd-pc kernel: [   24.849517][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.850552][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1492 (reg 12034, index 19) beyond range (1505, 351)
Jun 23 16:37:20 dsd-pc kernel: [   24.850553][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.851024][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1492 (reg 12037, index 20) beyond range (1505, 351)
Jun 23 16:37:20 dsd-pc kernel: [   24.851025][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.852061][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1492 (reg 12046, index 21) beyond range (1506, 352)
Jun 23 16:37:20 dsd-pc kernel: [   24.852062][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.852345][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1492 (reg 12048, index 22) beyond range (1507, 353)
Jun 23 16:37:20 dsd-pc kernel: [   24.852347][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.853383][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1492 (reg 12056, index 23) beyond range (1508, 354)
Jun 23 16:37:20 dsd-pc kernel: [   24.853384][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.854420][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1493 (reg 12065, index 24) beyond range (1509, 355)
Jun 23 16:37:20 dsd-pc kernel: [   24.854421][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.854892][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1493 (reg 12068, index 25) beyond range (1509, 355)
Jun 23 16:37:20 dsd-pc kernel: [   24.854893][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.854895][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1493 (reg 12068, index 26) beyond range (1509, 355)
Jun 23 16:37:20 dsd-pc kernel: [   24.854896][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.855931][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1493 (reg 12077, index 27) beyond range (1510, 356)
Jun 23 16:37:20 dsd-pc kernel: [   24.855932][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.856969][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1493 (reg 12085, index 28) beyond range (1511, 357)
Jun 23 16:37:20 dsd-pc kernel: [   24.856970][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.858009][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1493 (reg 12093, index 29) beyond range (1512, 358)
Jun 23 16:37:20 dsd-pc kernel: [   24.858010][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.859047][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1493 (reg 12102, index 30) beyond range (1513, 359)
Jun 23 16:37:20 dsd-pc kernel: [   24.859048][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.860083][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1493 (reg 12110, index 31) beyond range (1514, 360)
Jun 23 16:37:20 dsd-pc kernel: [   24.860085][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.861120][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1494 (reg 12118, index 32) beyond range (1515, 361)
Jun 23 16:37:20 dsd-pc kernel: [   24.861121][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.862157][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1494 (reg 12127, index 33) beyond range (1517, 362)
Jun 23 16:37:20 dsd-pc kernel: [   24.862158][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.863006][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1494 (reg 12133, index 34) beyond range (1517, 363)
Jun 23 16:37:20 dsd-pc kernel: [   24.863007][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.863009][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1494 (reg 12133, index 35) beyond range (1517, 363)
Jun 23 16:37:20 dsd-pc kernel: [   24.863010][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.864044][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1494 (reg 12142, index 36) beyond range (1518, 364)
Jun 23 16:37:20 dsd-pc kernel: [   24.864045][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.865081][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1494 (reg 12150, index 37) beyond range (1519, 365)
Jun 23 16:37:20 dsd-pc kernel: [   24.865082][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.866117][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1494 (reg 12158, index 38) beyond range (1520, 366)
Jun 23 16:37:20 dsd-pc kernel: [   24.866118][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.866966][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1494 (reg 12165, index 39) beyond range (1521, 367)
Jun 23 16:37:20 dsd-pc kernel: [   24.866967][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.868003][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1495 (reg 12173, index 40) beyond range (1522, 368)
Jun 23 16:37:20 dsd-pc kernel: [   24.868004][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.869041][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1495 (reg 12182, index 41) beyond range (1523, 369)
Jun 23 16:37:20 dsd-pc kernel: [   24.869042][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.870080][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1495 (reg 12190, index 42) beyond range (1524, 370)
Jun 23 16:37:20 dsd-pc kernel: [   24.870081][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.870931][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1495 (reg 12197, index 43) beyond range (1525, 371)
Jun 23 16:37:20 dsd-pc kernel: [   24.870931][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.876972][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1530 (reg 12245, index 4) beyond range (1531, 377)
Jun 23 16:37:20 dsd-pc kernel: [   24.876974][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.878010][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1530 (reg 12253, index 5) beyond range (1532, 378)
Jun 23 16:37:20 dsd-pc kernel: [   24.878011][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.879049][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1530 (reg 12262, index 6) beyond range (1533, 379)
Jun 23 16:37:20 dsd-pc kernel: [   24.879051][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.880087][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1530 (reg 12270, index 7) beyond range (1534, 380)
Jun 23 16:37:20 dsd-pc kernel: [   24.880089][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.881126][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1531 (reg 12278, index 8) beyond range (1535, 381)
Jun 23 16:37:20 dsd-pc kernel: [   24.881128][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.882165][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1531 (reg 12287, index 9) beyond range (1537, 382)
Jun 23 16:37:20 dsd-pc kernel: [   24.882166][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.883016][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1531 (reg 12293, index 10) beyond range (1537, 383)
Jun 23 16:37:20 dsd-pc kernel: [   24.883016][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.883019][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1531 (reg 12293, index 11) beyond range (1537, 383)
Jun 23 16:37:20 dsd-pc kernel: [   24.883020][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.883023][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1531 (reg 12293, index 12) beyond range (1537, 383)
Jun 23 16:37:20 dsd-pc kernel: [   24.883023][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.883026][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1531 (reg 12293, index 13) beyond range (1537, 383)
Jun 23 16:37:20 dsd-pc kernel: [   24.883027][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.883029][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1531 (reg 12294, index 14) beyond range (1537, 383)
Jun 23 16:37:20 dsd-pc kernel: [   24.883030][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.883032][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1531 (reg 12294, index 15) beyond range (1537, 383)
Jun 23 16:37:20 dsd-pc kernel: [   24.883033][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.883035][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1532 (reg 12294, index 16) beyond range (1537, 383)
Jun 23 16:37:20 dsd-pc kernel: [   24.883036][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.883224][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1532 (reg 12295, index 17) beyond range (1538, 383)
Jun 23 16:37:20 dsd-pc kernel: [   24.883226][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.883414][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1532 (reg 12297, index 18) beyond range (1538, 384)
Jun 23 16:37:20 dsd-pc kernel: [   24.883415][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.883981][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1532 (reg 12301, index 19) beyond range (1538, 384)
Jun 23 16:37:20 dsd-pc kernel: [   24.883981][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.884547][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1532 (reg 12306, index 20) beyond range (1539, 385)
Jun 23 16:37:20 dsd-pc kernel: [   24.884548][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.885113][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1532 (reg 12310, index 21) beyond range (1539, 385)
Jun 23 16:37:20 dsd-pc kernel: [   24.885114][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.885870][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1532 (reg 12316, index 22) beyond range (1540, 386)
Jun 23 16:37:20 dsd-pc kernel: [   24.885871][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.886439][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1532 (reg 12321, index 23) beyond range (1541, 387)
Jun 23 16:37:20 dsd-pc kernel: [   24.886440][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.886442][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1533 (reg 12321, index 24) beyond range (1541, 387)
Jun 23 16:37:20 dsd-pc kernel: [   24.886443][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.886445][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1533 (reg 12321, index 25) beyond range (1541, 387)
Jun 23 16:37:20 dsd-pc kernel: [   24.886446][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.887200][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1533 (reg 12327, index 26) beyond range (1542, 387)
Jun 23 16:37:20 dsd-pc kernel: [   24.887201][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.887769][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1533 (reg 12331, index 27) beyond range (1542, 388)
Jun 23 16:37:20 dsd-pc kernel: [   24.887770][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.888338][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1533 (reg 12336, index 28) beyond range (1543, 389)
Jun 23 16:37:20 dsd-pc kernel: [   24.888339][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.889095][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1533 (reg 12342, index 29) beyond range (1543, 389)
Jun 23 16:37:20 dsd-pc kernel: [   24.889096][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.889663][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1533 (reg 12347, index 30) beyond range (1544, 390)
Jun 23 16:37:20 dsd-pc kernel: [   24.889664][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.890420][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1533 (reg 12353, index 31) beyond range (1545, 391)
Jun 23 16:37:20 dsd-pc kernel: [   24.890422][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.890424][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1534 (reg 12353, index 32) beyond range (1545, 391)
Jun 23 16:37:20 dsd-pc kernel: [   24.890425][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.890989][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1534 (reg 12357, index 33) beyond range (1545, 391)
Jun 23 16:37:20 dsd-pc kernel: [   24.890990][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.891745][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1534 (reg 12363, index 34) beyond range (1546, 392)
Jun 23 16:37:20 dsd-pc kernel: [   24.891746][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.892314][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1534 (reg 12368, index 35) beyond range (1547, 393)
Jun 23 16:37:20 dsd-pc kernel: [   24.892315][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.892882][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1534 (reg 12372, index 36) beyond range (1547, 393)
Jun 23 16:37:20 dsd-pc kernel: [   24.892883][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.893639][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1534 (reg 12378, index 37) beyond range (1548, 394)
Jun 23 16:37:20 dsd-pc kernel: [   24.893640][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.894396][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1534 (reg 12384, index 38) beyond range (1549, 395)
Jun 23 16:37:20 dsd-pc kernel: [   24.894397][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.894399][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1534 (reg 12384, index 39) beyond range (1549, 395)
Jun 23 16:37:20 dsd-pc kernel: [   24.894400][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.895155][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1535 (reg 12391, index 40) beyond range (1550, 395)
Jun 23 16:37:20 dsd-pc kernel: [   24.895156][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.895723][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1535 (reg 12395, index 41) beyond range (1550, 396)
Jun 23 16:37:20 dsd-pc kernel: [   24.895724][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.896292][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1535 (reg 12400, index 42) beyond range (1551, 397)
Jun 23 16:37:20 dsd-pc kernel: [   24.896293][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.900645][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1554 (reg 12434, index 3) beyond range (1555, 401)
Jun 23 16:37:20 dsd-pc kernel: [   24.900647][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.901211][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1554 (reg 12439, index 4) beyond range (1556, 401)
Jun 23 16:37:20 dsd-pc kernel: [   24.901212][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.901777][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1554 (reg 12443, index 5) beyond range (1556, 402)
Jun 23 16:37:20 dsd-pc kernel: [   24.901778][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.902343][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1554 (reg 12448, index 6) beyond range (1557, 403)
Jun 23 16:37:20 dsd-pc kernel: [   24.902344][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.902346][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1554 (reg 12448, index 7) beyond range (1557, 403)
Jun 23 16:37:20 dsd-pc kernel: [   24.902347][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.902911][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1555 (reg 12453, index 8) beyond range (1557, 403)
Jun 23 16:37:20 dsd-pc kernel: [   24.902912][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.903478][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1555 (reg 12457, index 9) beyond range (1558, 404)
Jun 23 16:37:20 dsd-pc kernel: [   24.903479][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.904044][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1555 (reg 12462, index 10) beyond range (1558, 404)
Jun 23 16:37:20 dsd-pc kernel: [   24.904045][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.904610][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1555 (reg 12466, index 11) beyond range (1559, 405)
Jun 23 16:37:20 dsd-pc kernel: [   24.904611][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.905177][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1555 (reg 12471, index 12) beyond range (1560, 405)
Jun 23 16:37:20 dsd-pc kernel: [   24.905178][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.905743][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1555 (reg 12475, index 13) beyond range (1560, 406)
Jun 23 16:37:20 dsd-pc kernel: [   24.905744][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.906500][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1555 (reg 12481, index 14) beyond range (1561, 407)
Jun 23 16:37:20 dsd-pc kernel: [   24.906501][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.906503][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1555 (reg 12481, index 15) beyond range (1561, 407)
Jun 23 16:37:20 dsd-pc kernel: [   24.906504][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.907068][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1556 (reg 12486, index 16) beyond range (1561, 407)
Jun 23 16:37:20 dsd-pc kernel: [   24.907070][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.907634][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1556 (reg 12490, index 17) beyond range (1562, 408)
Jun 23 16:37:20 dsd-pc kernel: [   24.907635][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.908201][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1556 (reg 12495, index 18) beyond range (1563, 408)
Jun 23 16:37:20 dsd-pc kernel: [   24.908202][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.908767][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1556 (reg 12499, index 19) beyond range (1563, 409)
Jun 23 16:37:20 dsd-pc kernel: [   24.908768][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.909334][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1556 (reg 12504, index 20) beyond range (1564, 410)
Jun 23 16:37:20 dsd-pc kernel: [   24.909334][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.909900][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1556 (reg 12508, index 21) beyond range (1564, 410)
Jun 23 16:37:20 dsd-pc kernel: [   24.909901][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.910467][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1556 (reg 12513, index 22) beyond range (1565, 411)
Jun 23 16:37:20 dsd-pc kernel: [   24.910468][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.911034][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1556 (reg 12518, index 23) beyond range (1565, 411)
Jun 23 16:37:20 dsd-pc kernel: [   24.911035][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.911600][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1557 (reg 12522, index 24) beyond range (1566, 412)
Jun 23 16:37:20 dsd-pc kernel: [   24.911601][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.912357][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1557 (reg 12528, index 25) beyond range (1567, 413)
Jun 23 16:37:20 dsd-pc kernel: [   24.912358][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.912926][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1557 (reg 12533, index 26) beyond range (1567, 413)
Jun 23 16:37:20 dsd-pc kernel: [   24.912927][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.913496][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1557 (reg 12537, index 27) beyond range (1568, 414)
Jun 23 16:37:20 dsd-pc kernel: [   24.913497][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.914067][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1557 (reg 12542, index 28) beyond range (1568, 414)
Jun 23 16:37:20 dsd-pc kernel: [   24.914068][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.914448][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1557 (reg 12545, index 29) beyond range (1569, 415)
Jun 23 16:37:20 dsd-pc kernel: [   24.914449][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.914451][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1557 (reg 12545, index 30) beyond range (1569, 415)
Jun 23 16:37:20 dsd-pc kernel: [   24.914452][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.915207][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1557 (reg 12551, index 31) beyond range (1570, 415)
Jun 23 16:37:20 dsd-pc kernel: [   24.915208][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.915775][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1558 (reg 12555, index 32) beyond range (1570, 416)
Jun 23 16:37:20 dsd-pc kernel: [   24.915776][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.916344][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1558 (reg 12560, index 33) beyond range (1571, 417)
Jun 23 16:37:20 dsd-pc kernel: [   24.916345][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.916913][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1558 (reg 12565, index 34) beyond range (1571, 417)
Jun 23 16:37:20 dsd-pc kernel: [   24.916914][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.917481][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1558 (reg 12569, index 35) beyond range (1572, 418)
Jun 23 16:37:20 dsd-pc kernel: [   24.917482][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.918050][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1558 (reg 12574, index 36) beyond range (1572, 418)
Jun 23 16:37:20 dsd-pc kernel: [   24.918050][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.918428][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1558 (reg 12577, index 37) beyond range (1573, 419)
Jun 23 16:37:20 dsd-pc kernel: [   24.918430][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.918996][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1558 (reg 12581, index 38) beyond range (1573, 419)
Jun 23 16:37:20 dsd-pc kernel: [   24.918998][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.919562][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1558 (reg 12586, index 39) beyond range (1574, 420)
Jun 23 16:37:20 dsd-pc kernel: [   24.919563][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.920129][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1559 (reg 12590, index 40) beyond range (1574, 420)
Jun 23 16:37:20 dsd-pc kernel: [   24.920130][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.920695][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1559 (reg 12595, index 41) beyond range (1575, 421)
Jun 23 16:37:20 dsd-pc kernel: [   24.920696][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.921262][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1559 (reg 12599, index 42) beyond range (1576, 421)
Jun 23 16:37:20 dsd-pc kernel: [   24.921263][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.921828][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1559 (reg 12604, index 43) beyond range (1576, 422)
Jun 23 16:37:20 dsd-pc kernel: [   24.921829][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.929207][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1583 (reg 12663, index 17) beyond range (1584, 429)
Jun 23 16:37:20 dsd-pc kernel: [   24.929208][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.929772][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1583 (reg 12667, index 18) beyond range (1584, 430)
Jun 23 16:37:20 dsd-pc kernel: [   24.929773][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.930339][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1583 (reg 12672, index 19) beyond range (1585, 431)
Jun 23 16:37:20 dsd-pc kernel: [   24.930340][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.930907][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1583 (reg 12677, index 20) beyond range (1585, 431)
Jun 23 16:37:20 dsd-pc kernel: [   24.930908][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.931473][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1583 (reg 12681, index 21) beyond range (1586, 432)
Jun 23 16:37:20 dsd-pc kernel: [   24.931474][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.932039][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1583 (reg 12686, index 22) beyond range (1586, 432)
Jun 23 16:37:20 dsd-pc kernel: [   24.932040][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.932606][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1583 (reg 12690, index 23) beyond range (1587, 433)
Jun 23 16:37:20 dsd-pc kernel: [   24.932607][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.933172][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1584 (reg 12695, index 24) beyond range (1588, 433)
Jun 23 16:37:20 dsd-pc kernel: [   24.933173][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.933739][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1584 (reg 12699, index 25) beyond range (1588, 434)
Jun 23 16:37:20 dsd-pc kernel: [   24.933740][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.934305][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1584 (reg 12704, index 26) beyond range (1589, 435)
Jun 23 16:37:20 dsd-pc kernel: [   24.934305][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.934495][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1584 (reg 12705, index 27) beyond range (1589, 435)
Jun 23 16:37:20 dsd-pc kernel: [   24.934497][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.934499][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1584 (reg 12705, index 28) beyond range (1589, 435)
Jun 23 16:37:20 dsd-pc kernel: [   24.934499][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.935064][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1584 (reg 12710, index 29) beyond range (1589, 435)
Jun 23 16:37:20 dsd-pc kernel: [   24.935064][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.935630][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1584 (reg 12714, index 30) beyond range (1590, 436)
Jun 23 16:37:20 dsd-pc kernel: [   24.935631][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.936196][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1584 (reg 12719, index 31) beyond range (1591, 436)
Jun 23 16:37:20 dsd-pc kernel: [   24.936197][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.936763][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1585 (reg 12723, index 32) beyond range (1591, 437)
Jun 23 16:37:20 dsd-pc kernel: [   24.936764][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.937329][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1585 (reg 12728, index 33) beyond range (1592, 438)
Jun 23 16:37:20 dsd-pc kernel: [   24.937331][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.937896][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1585 (reg 12732, index 34) beyond range (1592, 438)
Jun 23 16:37:20 dsd-pc kernel: [   24.937896][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.938462][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1585 (reg 12737, index 35) beyond range (1593, 439)
Jun 23 16:37:20 dsd-pc kernel: [   24.938463][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.938465][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1585 (reg 12737, index 36) beyond range (1593, 439)
Jun 23 16:37:20 dsd-pc kernel: [   24.938466][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.939032][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1585 (reg 12742, index 37) beyond range (1593, 439)
Jun 23 16:37:20 dsd-pc kernel: [   24.939033][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.939598][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1585 (reg 12746, index 38) beyond range (1594, 440)
Jun 23 16:37:20 dsd-pc kernel: [   24.939599][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.940165][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1585 (reg 12751, index 39) beyond range (1595, 440)
Jun 23 16:37:20 dsd-pc kernel: [   24.940166][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.940731][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1586 (reg 12755, index 40) beyond range (1595, 441)
Jun 23 16:37:20 dsd-pc kernel: [   24.940732][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.941297][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1586 (reg 12760, index 41) beyond range (1596, 442)
Jun 23 16:37:20 dsd-pc kernel: [   24.941298][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.941864][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1586 (reg 12764, index 42) beyond range (1596, 442)
Jun 23 16:37:20 dsd-pc kernel: [   24.941865][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.948300][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1602 (reg 12816, index 4) beyond range (1603, 449)
Jun 23 16:37:20 dsd-pc kernel: [   24.948302][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.948869][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1602 (reg 12820, index 5) beyond range (1603, 449)
Jun 23 16:37:20 dsd-pc kernel: [   24.948870][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.949437][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1602 (reg 12825, index 6) beyond range (1604, 450)
Jun 23 16:37:20 dsd-pc kernel: [   24.949438][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.950006][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1602 (reg 12829, index 7) beyond range (1604, 450)
Jun 23 16:37:20 dsd-pc kernel: [   24.950006][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.950384][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1603 (reg 12832, index 8) beyond range (1605, 451)
Jun 23 16:37:20 dsd-pc kernel: [   24.950385][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.950952][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1603 (reg 12837, index 9) beyond range (1605, 451)
Jun 23 16:37:20 dsd-pc kernel: [   24.950953][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.951518][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1603 (reg 12841, index 10) beyond range (1606, 452)
Jun 23 16:37:20 dsd-pc kernel: [   24.951519][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.952084][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1603 (reg 12846, index 11) beyond range (1606, 452)
Jun 23 16:37:20 dsd-pc kernel: [   24.952085][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.952651][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1603 (reg 12850, index 12) beyond range (1607, 453)
Jun 23 16:37:20 dsd-pc kernel: [   24.952652][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.953407][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1603 (reg 12857, index 13) beyond range (1608, 454)
Jun 23 16:37:20 dsd-pc kernel: [   24.953408][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.953976][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1603 (reg 12861, index 14) beyond range (1608, 454)
Jun 23 16:37:20 dsd-pc kernel: [   24.953976][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.954354][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1603 (reg 12864, index 15) beyond range (1609, 455)
Jun 23 16:37:20 dsd-pc kernel: [   24.954355][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.954358][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1604 (reg 12864, index 16) beyond range (1609, 455)
Jun 23 16:37:20 dsd-pc kernel: [   24.954359][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.954924][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1604 (reg 12869, index 17) beyond range (1609, 455)
Jun 23 16:37:20 dsd-pc kernel: [   24.954925][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.955490][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1604 (reg 12873, index 18) beyond range (1610, 456)
Jun 23 16:37:20 dsd-pc kernel: [   24.955491][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.955493][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1604 (reg 12873, index 19) beyond range (1610, 456)
Jun 23 16:37:20 dsd-pc kernel: [   24.955495][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.955496][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1604 (reg 12873, index 20) beyond range (1610, 456)
Jun 23 16:37:20 dsd-pc kernel: [   24.955497][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.955499][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1604 (reg 12873, index 21) beyond range (1610, 456)
Jun 23 16:37:20 dsd-pc kernel: [   24.955500][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.955502][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1604 (reg 12873, index 22) beyond range (1610, 456)
Jun 23 16:37:20 dsd-pc kernel: [   24.955503][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.956067][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1604 (reg 12878, index 23) beyond range (1610, 456)
Jun 23 16:37:20 dsd-pc kernel: [   24.956068][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.956633][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1605 (reg 12882, index 24) beyond range (1611, 457)
Jun 23 16:37:20 dsd-pc kernel: [   24.956634][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.957296][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1605 (reg 12888, index 25) beyond range (1612, 458)
Jun 23 16:37:20 dsd-pc kernel: [   24.957297][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.957768][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1605 (reg 12891, index 26) beyond range (1612, 458)
Jun 23 16:37:20 dsd-pc kernel: [   24.957769][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.958335][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1605 (reg 12896, index 27) beyond range (1613, 459)
Jun 23 16:37:20 dsd-pc kernel: [   24.958336][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.958338][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1605 (reg 12896, index 28) beyond range (1613, 459)
Jun 23 16:37:20 dsd-pc kernel: [   24.958339][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.958903][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1605 (reg 12900, index 29) beyond range (1613, 459)
Jun 23 16:37:20 dsd-pc kernel: [   24.958904][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.959469][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1605 (reg 12905, index 30) beyond range (1614, 460)
Jun 23 16:37:20 dsd-pc kernel: [   24.959470][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.960036][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1605 (reg 12910, index 31) beyond range (1614, 460)
Jun 23 16:37:20 dsd-pc kernel: [   24.960037][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.960602][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1606 (reg 12914, index 32) beyond range (1615, 461)
Jun 23 16:37:20 dsd-pc kernel: [   24.960603][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.961169][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1606 (reg 12919, index 33) beyond range (1616, 461)
Jun 23 16:37:20 dsd-pc kernel: [   24.961169][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.961735][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1606 (reg 12923, index 34) beyond range (1616, 462)
Jun 23 16:37:20 dsd-pc kernel: [   24.961736][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.962301][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1606 (reg 12928, index 35) beyond range (1617, 463)
Jun 23 16:37:20 dsd-pc kernel: [   24.962302][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.962492][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1606 (reg 12929, index 36) beyond range (1617, 463)
Jun 23 16:37:20 dsd-pc kernel: [   24.962492][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.962495][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1606 (reg 12929, index 37) beyond range (1617, 463)
Jun 23 16:37:20 dsd-pc kernel: [   24.962496][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.963251][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1606 (reg 12935, index 38) beyond range (1618, 463)
Jun 23 16:37:20 dsd-pc kernel: [   24.963252][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.963819][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1606 (reg 12940, index 39) beyond range (1618, 464)
Jun 23 16:37:20 dsd-pc kernel: [   24.963820][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.964388][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1607 (reg 12944, index 40) beyond range (1619, 465)
Jun 23 16:37:20 dsd-pc kernel: [   24.964389][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.965144][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1607 (reg 12950, index 41) beyond range (1619, 465)
Jun 23 16:37:20 dsd-pc kernel: [   24.965145][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.965713][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1607 (reg 12955, index 42) beyond range (1620, 466)
Jun 23 16:37:20 dsd-pc kernel: [   24.965715][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.966282][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1607 (reg 12960, index 43) beyond range (1621, 467)
Jun 23 16:37:20 dsd-pc kernel: [   24.966282][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.972155][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1626 (reg 13007, index 14) beyond range (1627, 472)
Jun 23 16:37:20 dsd-pc kernel: [   24.972157][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.972721][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1626 (reg 13011, index 15) beyond range (1627, 473)
Jun 23 16:37:20 dsd-pc kernel: [   24.972722][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.973287][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1627 (reg 13016, index 16) beyond range (1628, 474)
Jun 23 16:37:20 dsd-pc kernel: [   24.973288][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.974043][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1627 (reg 13022, index 17) beyond range (1628, 474)
Jun 23 16:37:20 dsd-pc kernel: [   24.974044][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.974422][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1627 (reg 13025, index 18) beyond range (1629, 475)
Jun 23 16:37:20 dsd-pc kernel: [   24.974423][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.974613][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1627 (reg 13025, index 19) beyond range (1629, 475)
Jun 23 16:37:20 dsd-pc kernel: [   24.974614][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.975180][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1627 (reg 13031, index 20) beyond range (1630, 475)
Jun 23 16:37:20 dsd-pc kernel: [   24.975181][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.975937][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1627 (reg 13037, index 21) beyond range (1630, 476)
Jun 23 16:37:20 dsd-pc kernel: [   24.975938][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.976505][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1627 (reg 13041, index 22) beyond range (1631, 477)
Jun 23 16:37:20 dsd-pc kernel: [   24.976506][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.977262][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1627 (reg 13047, index 23) beyond range (1632, 477)
Jun 23 16:37:20 dsd-pc kernel: [   24.977264][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.977828][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1628 (reg 13052, index 24) beyond range (1632, 478)
Jun 23 16:37:20 dsd-pc kernel: [   24.977829][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.978395][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1628 (reg 13056, index 25) beyond range (1633, 479)
Jun 23 16:37:20 dsd-pc kernel: [   24.978396][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.978398][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1628 (reg 13056, index 26) beyond range (1633, 479)
Jun 23 16:37:20 dsd-pc kernel: [   24.978399][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.978964][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1628 (reg 13061, index 27) beyond range (1633, 479)
Jun 23 16:37:20 dsd-pc kernel: [   24.978965][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.979530][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1628 (reg 13066, index 28) beyond range (1634, 480)
Jun 23 16:37:20 dsd-pc kernel: [   24.979531][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.980099][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1628 (reg 13070, index 29) beyond range (1634, 480)
Jun 23 16:37:20 dsd-pc kernel: [   24.980100][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.980667][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1628 (reg 13075, index 30) beyond range (1635, 481)
Jun 23 16:37:20 dsd-pc kernel: [   24.980668][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.981426][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1628 (reg 13081, index 31) beyond range (1636, 482)
Jun 23 16:37:20 dsd-pc kernel: [   24.981427][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.982185][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1629 (reg 13087, index 32) beyond range (1637, 482)
Jun 23 16:37:20 dsd-pc kernel: [   24.982185][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.982375][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1629 (reg 13088, index 33) beyond range (1637, 483)
Jun 23 16:37:20 dsd-pc kernel: [   24.982376][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.982378][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1629 (reg 13088, index 34) beyond range (1637, 483)
Jun 23 16:37:20 dsd-pc kernel: [   24.982379][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.982944][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1629 (reg 13093, index 35) beyond range (1637, 483)
Jun 23 16:37:20 dsd-pc kernel: [   24.982945][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.983510][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1629 (reg 13097, index 36) beyond range (1638, 484)
Jun 23 16:37:20 dsd-pc kernel: [   24.983511][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.984077][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1629 (reg 13102, index 37) beyond range (1638, 484)
Jun 23 16:37:20 dsd-pc kernel: [   24.984078][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.984643][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1629 (reg 13106, index 38) beyond range (1639, 485)
Jun 23 16:37:20 dsd-pc kernel: [   24.984644][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.985400][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1629 (reg 13112, index 39) beyond range (1640, 486)
Jun 23 16:37:20 dsd-pc kernel: [   24.985401][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.985968][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1630 (reg 13117, index 40) beyond range (1640, 486)
Jun 23 16:37:20 dsd-pc kernel: [   24.985969][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.986347][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1630 (reg 13120, index 41) beyond range (1641, 487)
Jun 23 16:37:20 dsd-pc kernel: [   24.986348][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.987104][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1630 (reg 13126, index 42) beyond range (1641, 487)
Jun 23 16:37:20 dsd-pc kernel: [   24.987105][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.987673][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1630 (reg 13131, index 43) beyond range (1642, 488)
Jun 23 16:37:20 dsd-pc kernel: [   24.987674][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.992597][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1646 (reg 13170, index 6) beyond range (1647, 493)
Jun 23 16:37:20 dsd-pc kernel: [   24.992599][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.993163][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1646 (reg 13175, index 7) beyond range (1648, 493)
Jun 23 16:37:20 dsd-pc kernel: [   24.993164][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.993730][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1647 (reg 13179, index 8) beyond range (1648, 494)
Jun 23 16:37:20 dsd-pc kernel: [   24.993731][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.994296][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1647 (reg 13184, index 9) beyond range (1649, 495)
Jun 23 16:37:20 dsd-pc kernel: [   24.994297][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.994486][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1647 (reg 13185, index 10) beyond range (1649, 495)
Jun 23 16:37:20 dsd-pc kernel: [   24.994488][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.994490][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1647 (reg 13185, index 11) beyond range (1649, 495)
Jun 23 16:37:20 dsd-pc kernel: [   24.994491][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.995055][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1647 (reg 13190, index 12) beyond range (1649, 495)
Jun 23 16:37:20 dsd-pc kernel: [   24.995056][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.995621][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1647 (reg 13194, index 13) beyond range (1650, 496)
Jun 23 16:37:20 dsd-pc kernel: [   24.995622][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.996187][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1647 (reg 13199, index 14) beyond range (1651, 496)
Jun 23 16:37:20 dsd-pc kernel: [   24.996188][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.996754][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1647 (reg 13203, index 15) beyond range (1651, 497)
Jun 23 16:37:20 dsd-pc kernel: [   24.996755][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.997320][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1648 (reg 13208, index 16) beyond range (1652, 498)
Jun 23 16:37:20 dsd-pc kernel: [   24.997321][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.997887][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1648 (reg 13212, index 17) beyond range (1652, 498)
Jun 23 16:37:20 dsd-pc kernel: [   24.997887][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.998453][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1648 (reg 13217, index 18) beyond range (1653, 499)
Jun 23 16:37:20 dsd-pc kernel: [   24.998454][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.999020][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1648 (reg 13221, index 19) beyond range (1653, 499)
Jun 23 16:37:20 dsd-pc kernel: [   24.999021][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   24.999587][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1648 (reg 13226, index 20) beyond range (1654, 500)
Jun 23 16:37:20 dsd-pc kernel: [   24.999588][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.000153][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1648 (reg 13230, index 21) beyond range (1654, 500)
Jun 23 16:37:20 dsd-pc kernel: [   25.000154][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.000719][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1648 (reg 13235, index 22) beyond range (1655, 501)
Jun 23 16:37:20 dsd-pc kernel: [   25.000720][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.001286][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1648 (reg 13240, index 23) beyond range (1656, 502)
Jun 23 16:37:20 dsd-pc kernel: [   25.001287][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.001852][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1649 (reg 13244, index 24) beyond range (1656, 502)
Jun 23 16:37:20 dsd-pc kernel: [   25.001853][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.002419][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1649 (reg 13249, index 25) beyond range (1657, 503)
Jun 23 16:37:20 dsd-pc kernel: [   25.002420][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.002422][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1649 (reg 13249, index 26) beyond range (1657, 503)
Jun 23 16:37:20 dsd-pc kernel: [   25.002423][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.002987][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1649 (reg 13253, index 27) beyond range (1657, 503)
Jun 23 16:37:20 dsd-pc kernel: [   25.002988][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.003553][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1649 (reg 13258, index 28) beyond range (1658, 504)
Jun 23 16:37:20 dsd-pc kernel: [   25.003554][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.004120][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1649 (reg 13262, index 29) beyond range (1658, 504)
Jun 23 16:37:20 dsd-pc kernel: [   25.004120][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.004686][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1649 (reg 13267, index 30) beyond range (1659, 505)
Jun 23 16:37:20 dsd-pc kernel: [   25.004687][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.005252][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1649 (reg 13271, index 31) beyond range (1660, 505)
Jun 23 16:37:20 dsd-pc kernel: [   25.005253][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.005819][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1650 (reg 13276, index 32) beyond range (1660, 506)
Jun 23 16:37:20 dsd-pc kernel: [   25.005820][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.006385][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1650 (reg 13280, index 33) beyond range (1661, 507)
Jun 23 16:37:20 dsd-pc kernel: [   25.006386][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.006388][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1650 (reg 13280, index 34) beyond range (1661, 507)
Jun 23 16:37:20 dsd-pc kernel: [   25.006389][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.006954][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1650 (reg 13285, index 35) beyond range (1661, 507)
Jun 23 16:37:20 dsd-pc kernel: [   25.006955][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.007520][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1650 (reg 13289, index 36) beyond range (1662, 508)
Jun 23 16:37:20 dsd-pc kernel: [   25.007521][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.008086][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1650 (reg 13294, index 37) beyond range (1662, 508)
Jun 23 16:37:20 dsd-pc kernel: [   25.008087][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.008653][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1650 (reg 13298, index 38) beyond range (1663, 509)
Jun 23 16:37:20 dsd-pc kernel: [   25.008654][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.009219][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1650 (reg 13303, index 39) beyond range (1664, 509)
Jun 23 16:37:20 dsd-pc kernel: [   25.009220][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.009785][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1651 (reg 13308, index 40) beyond range (1664, 510)
Jun 23 16:37:20 dsd-pc kernel: [   25.009786][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.010352][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1651 (reg 13312, index 41) beyond range (1665, 511)
Jun 23 16:37:20 dsd-pc kernel: [   25.010353][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.010355][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1651 (reg 13312, index 42) beyond range (1665, 511)
Jun 23 16:37:20 dsd-pc kernel: [   25.010356][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.017173][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1671 (reg 13367, index 17) beyond range (1672, 517)
Jun 23 16:37:20 dsd-pc kernel: [   25.017175][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.017739][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1671 (reg 13371, index 18) beyond range (1672, 518)
Jun 23 16:37:20 dsd-pc kernel: [   25.017740][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.018496][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1671 (reg 13377, index 19) beyond range (1673, 519)
Jun 23 16:37:20 dsd-pc kernel: [   25.018497][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.018499][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1671 (reg 13377, index 20) beyond range (1673, 519)
Jun 23 16:37:20 dsd-pc kernel: [   25.018501][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.019065][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1671 (reg 13382, index 21) beyond range (1673, 519)
Jun 23 16:37:20 dsd-pc kernel: [   25.019066][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.019821][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1671 (reg 13388, index 22) beyond range (1674, 520)
Jun 23 16:37:20 dsd-pc kernel: [   25.019822][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.020390][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1671 (reg 13392, index 23) beyond range (1675, 521)
Jun 23 16:37:20 dsd-pc kernel: [   25.020391][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.020958][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1672 (reg 13397, index 24) beyond range (1675, 521)
Jun 23 16:37:20 dsd-pc kernel: [   25.020960][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.021715][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1672 (reg 13403, index 25) beyond range (1676, 522)
Jun 23 16:37:20 dsd-pc kernel: [   25.021716][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.022283][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1672 (reg 13408, index 26) beyond range (1677, 523)
Jun 23 16:37:20 dsd-pc kernel: [   25.022284][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.022474][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1672 (reg 13409, index 27) beyond range (1677, 523)
Jun 23 16:37:20 dsd-pc kernel: [   25.022475][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.022477][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1672 (reg 13409, index 28) beyond range (1677, 523)
Jun 23 16:37:20 dsd-pc kernel: [   25.022478][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.023232][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1672 (reg 13415, index 29) beyond range (1678, 523)
Jun 23 16:37:20 dsd-pc kernel: [   25.023233][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.023801][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1672 (reg 13420, index 30) beyond range (1678, 524)
Jun 23 16:37:20 dsd-pc kernel: [   25.023801][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.024179][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1672 (reg 13423, index 31) beyond range (1679, 524)
Jun 23 16:37:20 dsd-pc kernel: [   25.024180][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.024182][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1673 (reg 13423, index 32) beyond range (1679, 524)
Jun 23 16:37:20 dsd-pc kernel: [   25.024183][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.024749][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1673 (reg 13427, index 33) beyond range (1679, 525)
Jun 23 16:37:20 dsd-pc kernel: [   25.024751][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.025316][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1673 (reg 13432, index 34) beyond range (1680, 526)
Jun 23 16:37:20 dsd-pc kernel: [   25.025316][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.026072][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1673 (reg 13438, index 35) beyond range (1680, 526)
Jun 23 16:37:20 dsd-pc kernel: [   25.026073][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.026451][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1673 (reg 13441, index 36) beyond range (1681, 527)
Jun 23 16:37:20 dsd-pc kernel: [   25.026452][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.026454][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1673 (reg 13441, index 37) beyond range (1681, 527)
Jun 23 16:37:20 dsd-pc kernel: [   25.026455][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.027209][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1673 (reg 13447, index 38) beyond range (1682, 527)
Jun 23 16:37:20 dsd-pc kernel: [   25.027210][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.027966][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1673 (reg 13453, index 39) beyond range (1682, 528)
Jun 23 16:37:20 dsd-pc kernel: [   25.027967][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.028723][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1674 (reg 13459, index 40) beyond range (1683, 529)
Jun 23 16:37:20 dsd-pc kernel: [   25.028724][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.029479][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1674 (reg 13465, index 41) beyond range (1684, 530)
Jun 23 16:37:20 dsd-pc kernel: [   25.029480][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.030048][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1674 (reg 13470, index 42) beyond range (1684, 530)
Jun 23 16:37:20 dsd-pc kernel: [   25.030048][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.030426][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1674 (reg 13473, index 43) beyond range (1685, 531)
Jun 23 16:37:20 dsd-pc kernel: [   25.030427][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.056990][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1710 (reg 13685, index 3) beyond range (1711, 557)
Jun 23 16:37:20 dsd-pc kernel: [   25.056992][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.058026][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1710 (reg 13693, index 4) beyond range (1712, 558)
Jun 23 16:37:20 dsd-pc kernel: [   25.058028][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.059064][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1710 (reg 13702, index 5) beyond range (1713, 559)
Jun 23 16:37:20 dsd-pc kernel: [   25.059065][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.059068][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1710 (reg 13702, index 6) beyond range (1713, 559)
Jun 23 16:37:20 dsd-pc kernel: [   25.059069][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.060105][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1710 (reg 13710, index 7) beyond range (1714, 560)
Jun 23 16:37:20 dsd-pc kernel: [   25.060106][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.061142][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1711 (reg 13718, index 8) beyond range (1715, 561)
Jun 23 16:37:20 dsd-pc kernel: [   25.061142][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.062178][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1711 (reg 13727, index 9) beyond range (1717, 562)
Jun 23 16:37:20 dsd-pc kernel: [   25.062179][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.063027][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1711 (reg 13733, index 10) beyond range (1717, 563)
Jun 23 16:37:20 dsd-pc kernel: [   25.063028][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.064064][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1711 (reg 13742, index 11) beyond range (1718, 564)
Jun 23 16:37:20 dsd-pc kernel: [   25.064065][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.065100][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1711 (reg 13750, index 12) beyond range (1719, 565)
Jun 23 16:37:20 dsd-pc kernel: [   25.065101][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.066138][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1711 (reg 13758, index 13) beyond range (1720, 566)
Jun 23 16:37:20 dsd-pc kernel: [   25.066139][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.066986][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1711 (reg 13765, index 14) beyond range (1721, 567)
Jun 23 16:37:20 dsd-pc kernel: [   25.066987][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.066989][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1711 (reg 13765, index 15) beyond range (1721, 567)
Jun 23 16:37:20 dsd-pc kernel: [   25.066990][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.066992][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1712 (reg 13765, index 16) beyond range (1721, 567)
Jun 23 16:37:20 dsd-pc kernel: [   25.066993][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.068030][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1712 (reg 13774, index 17) beyond range (1722, 568)
Jun 23 16:37:20 dsd-pc kernel: [   25.068032][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.069069][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1712 (reg 13782, index 18) beyond range (1723, 569)
Jun 23 16:37:20 dsd-pc kernel: [   25.069070][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.070108][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1712 (reg 13790, index 19) beyond range (1724, 570)
Jun 23 16:37:20 dsd-pc kernel: [   25.070109][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.070959][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1712 (reg 13797, index 20) beyond range (1725, 571)
Jun 23 16:37:20 dsd-pc kernel: [   25.070959][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.071995][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1712 (reg 13805, index 21) beyond range (1726, 572)
Jun 23 16:37:20 dsd-pc kernel: [   25.071996][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.073032][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1712 (reg 13814, index 22) beyond range (1727, 573)
Jun 23 16:37:20 dsd-pc kernel: [   25.073033][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.074068][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1712 (reg 13822, index 23) beyond range (1728, 574)
Jun 23 16:37:20 dsd-pc kernel: [   25.074069][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.074917][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1713 (reg 13829, index 24) beyond range (1729, 575)
Jun 23 16:37:20 dsd-pc kernel: [   25.074918][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.075954][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1713 (reg 13837, index 25) beyond range (1730, 576)
Jun 23 16:37:20 dsd-pc kernel: [   25.075955][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.076990][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1713 (reg 13845, index 26) beyond range (1731, 577)
Jun 23 16:37:20 dsd-pc kernel: [   25.076991][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.078027][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1713 (reg 13853, index 27) beyond range (1732, 578)
Jun 23 16:37:20 dsd-pc kernel: [   25.078028][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.079064][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1713 (reg 13862, index 28) beyond range (1733, 579)
Jun 23 16:37:20 dsd-pc kernel: [   25.079065][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.080101][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1713 (reg 13870, index 29) beyond range (1734, 580)
Jun 23 16:37:20 dsd-pc kernel: [   25.080103][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.081141][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1713 (reg 13878, index 30) beyond range (1735, 581)
Jun 23 16:37:20 dsd-pc kernel: [   25.081143][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.082183][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1713 (reg 13887, index 31) beyond range (1737, 582)
Jun 23 16:37:20 dsd-pc kernel: [   25.082184][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.082660][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1714 (reg 13891, index 32) beyond range (1737, 583)
Jun 23 16:37:20 dsd-pc kernel: [   25.082661][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.083228][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1714 (reg 13895, index 33) beyond range (1738, 583)
Jun 23 16:37:20 dsd-pc kernel: [   25.083228][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.083606][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1714 (reg 13898, index 34) beyond range (1738, 584)
Jun 23 16:37:20 dsd-pc kernel: [   25.083608][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.084642][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1714 (reg 13906, index 35) beyond range (1739, 585)
Jun 23 16:37:20 dsd-pc kernel: [   25.084643][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.085679][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1714 (reg 13915, index 36) beyond range (1740, 586)
Jun 23 16:37:20 dsd-pc kernel: [   25.085679][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.086715][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1714 (reg 13923, index 37) beyond range (1741, 587)
Jun 23 16:37:20 dsd-pc kernel: [   25.086716][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.087000][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1714 (reg 13925, index 38) beyond range (1741, 587)
Jun 23 16:37:20 dsd-pc kernel: [   25.087001][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.088037][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1714 (reg 13934, index 39) beyond range (1742, 588)
Jun 23 16:37:20 dsd-pc kernel: [   25.088038][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.089073][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1715 (reg 13942, index 40) beyond range (1743, 589)
Jun 23 16:37:20 dsd-pc kernel: [   25.089074][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.090110][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1715 (reg 13950, index 41) beyond range (1744, 590)
Jun 23 16:37:20 dsd-pc kernel: [   25.090112][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.090961][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1715 (reg 13957, index 42) beyond range (1745, 591)
Jun 23 16:37:20 dsd-pc kernel: [   25.090962][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.098505][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1752 (reg 14017, index 2) beyond range (1753, 599)
Jun 23 16:37:20 dsd-pc kernel: [   25.098506][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.099070][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1752 (reg 14022, index 3) beyond range (1753, 599)
Jun 23 16:37:20 dsd-pc kernel: [   25.099072][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.100107][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1752 (reg 14030, index 4) beyond range (1754, 600)
Jun 23 16:37:20 dsd-pc kernel: [   25.100108][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.101144][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1752 (reg 14038, index 5) beyond range (1755, 601)
Jun 23 16:37:20 dsd-pc kernel: [   25.101145][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.102180][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1752 (reg 14047, index 6) beyond range (1757, 602)
Jun 23 16:37:20 dsd-pc kernel: [   25.102181][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.103029][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1752 (reg 14054, index 7) beyond range (1757, 603)
Jun 23 16:37:20 dsd-pc kernel: [   25.103030][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.104065][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1753 (reg 14062, index 8) beyond range (1758, 604)
Jun 23 16:37:20 dsd-pc kernel: [   25.104066][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.105102][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1753 (reg 14070, index 9) beyond range (1759, 605)
Jun 23 16:37:20 dsd-pc kernel: [   25.105102][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.106138][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1753 (reg 14078, index 10) beyond range (1760, 606)
Jun 23 16:37:20 dsd-pc kernel: [   25.106139][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.106987][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1753 (reg 14085, index 11) beyond range (1761, 607)
Jun 23 16:37:20 dsd-pc kernel: [   25.106988][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.108024][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1753 (reg 14093, index 12) beyond range (1762, 608)
Jun 23 16:37:20 dsd-pc kernel: [   25.108026][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.109060][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1753 (reg 14102, index 13) beyond range (1763, 609)
Jun 23 16:37:20 dsd-pc kernel: [   25.109061][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.110097][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1753 (reg 14110, index 14) beyond range (1764, 610)
Jun 23 16:37:20 dsd-pc kernel: [   25.110099][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.110945][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1753 (reg 14117, index 15) beyond range (1765, 611)
Jun 23 16:37:20 dsd-pc kernel: [   25.110946][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.111983][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1754 (reg 14125, index 16) beyond range (1766, 612)
Jun 23 16:37:20 dsd-pc kernel: [   25.111984][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.113019][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1754 (reg 14133, index 17) beyond range (1767, 613)
Jun 23 16:37:20 dsd-pc kernel: [   25.113020][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.114060][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1754 (reg 14142, index 18) beyond range (1768, 614)
Jun 23 16:37:20 dsd-pc kernel: [   25.114062][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.114911][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1754 (reg 14149, index 19) beyond range (1769, 615)
Jun 23 16:37:20 dsd-pc kernel: [   25.114913][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.115947][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1754 (reg 14157, index 20) beyond range (1770, 616)
Jun 23 16:37:20 dsd-pc kernel: [   25.115949][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.116985][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1754 (reg 14165, index 21) beyond range (1771, 617)
Jun 23 16:37:20 dsd-pc kernel: [   25.116986][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.118020][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1754 (reg 14173, index 22) beyond range (1772, 618)
Jun 23 16:37:20 dsd-pc kernel: [   25.118021][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.119057][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1754 (reg 14182, index 23) beyond range (1773, 619)
Jun 23 16:37:20 dsd-pc kernel: [   25.119059][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.120095][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1755 (reg 14190, index 24) beyond range (1774, 620)
Jun 23 16:37:20 dsd-pc kernel: [   25.120096][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.120757][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1755 (reg 14195, index 25) beyond range (1775, 621)
Jun 23 16:37:20 dsd-pc kernel: [   25.120757][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.121323][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1755 (reg 14200, index 26) beyond range (1776, 622)
Jun 23 16:37:20 dsd-pc kernel: [   25.121324][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.121889][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1755 (reg 14204, index 27) beyond range (1776, 622)
Jun 23 16:37:20 dsd-pc kernel: [   25.121890][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.122926][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1755 (reg 14213, index 28) beyond range (1777, 623)
Jun 23 16:37:20 dsd-pc kernel: [   25.122927][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.123023][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1755 (reg 14213, index 29) beyond range (1777, 623)
Jun 23 16:37:20 dsd-pc kernel: [   25.123024][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.124059][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1755 (reg 14222, index 30) beyond range (1778, 624)
Jun 23 16:37:20 dsd-pc kernel: [   25.124061][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.125096][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1755 (reg 14230, index 31) beyond range (1779, 625)
Jun 23 16:37:20 dsd-pc kernel: [   25.125097][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.126133][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1756 (reg 14238, index 32) beyond range (1780, 626)
Jun 23 16:37:20 dsd-pc kernel: [   25.126134][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.126981][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1756 (reg 14245, index 33) beyond range (1781, 627)
Jun 23 16:37:20 dsd-pc kernel: [   25.126983][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.128018][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1756 (reg 14253, index 34) beyond range (1782, 628)
Jun 23 16:37:20 dsd-pc kernel: [   25.128020][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.129055][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1756 (reg 14262, index 35) beyond range (1783, 629)
Jun 23 16:37:20 dsd-pc kernel: [   25.129056][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.130091][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1756 (reg 14270, index 36) beyond range (1784, 630)
Jun 23 16:37:20 dsd-pc kernel: [   25.130092][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.130940][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1756 (reg 14277, index 37) beyond range (1785, 631)
Jun 23 16:37:20 dsd-pc kernel: [   25.130942][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.131976][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1756 (reg 14285, index 38) beyond range (1786, 632)
Jun 23 16:37:20 dsd-pc kernel: [   25.131977][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.133013][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1756 (reg 14293, index 39) beyond range (1787, 633)
Jun 23 16:37:20 dsd-pc kernel: [   25.133014][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.133391][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1757 (reg 14296, index 40) beyond range (1788, 634)
Jun 23 16:37:20 dsd-pc kernel: [   25.133392][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.133394][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1757 (reg 14296, index 41) beyond range (1788, 634)
Jun 23 16:37:20 dsd-pc kernel: [   25.133394][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.134429][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1757 (reg 14305, index 42) beyond range (1789, 635)
Jun 23 16:37:20 dsd-pc kernel: [   25.134429][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.134901][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1757 (reg 14308, index 43) beyond range (1789, 635)
Jun 23 16:37:20 dsd-pc kernel: [   25.134903][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.146220][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1800 (reg 14399, index 2) beyond range (1801, 646)
Jun 23 16:37:20 dsd-pc kernel: [   25.146222][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.146410][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1800 (reg 14401, index 3) beyond range (1801, 647)
Jun 23 16:37:20 dsd-pc kernel: [   25.146411][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.147448][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1800 (reg 14409, index 4) beyond range (1802, 648)
Jun 23 16:37:20 dsd-pc kernel: [   25.147450][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.148485][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1800 (reg 14417, index 5) beyond range (1803, 649)
Jun 23 16:37:20 dsd-pc kernel: [   25.148486][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.149333][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1800 (reg 14424, index 6) beyond range (1804, 650)
Jun 23 16:37:20 dsd-pc kernel: [   25.149334][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.149899][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1800 (reg 14428, index 7) beyond range (1804, 650)
Jun 23 16:37:20 dsd-pc kernel: [   25.149900][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.150089][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1801 (reg 14430, index 8) beyond range (1804, 650)
Jun 23 16:37:20 dsd-pc kernel: [   25.150090][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.151126][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1801 (reg 14438, index 9) beyond range (1805, 651)
Jun 23 16:37:20 dsd-pc kernel: [   25.151127][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.152163][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1801 (reg 14447, index 10) beyond range (1807, 652)
Jun 23 16:37:20 dsd-pc kernel: [   25.152164][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.153199][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1801 (reg 14455, index 11) beyond range (1808, 653)
Jun 23 16:37:20 dsd-pc kernel: [   25.153200][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.154236][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1801 (reg 14463, index 12) beyond range (1809, 654)
Jun 23 16:37:20 dsd-pc kernel: [   25.154236][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.154991][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1801 (reg 14469, index 13) beyond range (1809, 655)
Jun 23 16:37:20 dsd-pc kernel: [   25.154992][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.156028][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1801 (reg 14477, index 14) beyond range (1810, 656)
Jun 23 16:37:20 dsd-pc kernel: [   25.156030][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.157066][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1801 (reg 14486, index 15) beyond range (1811, 657)
Jun 23 16:37:20 dsd-pc kernel: [   25.157067][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.158105][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1802 (reg 14494, index 16) beyond range (1812, 658)
Jun 23 16:37:20 dsd-pc kernel: [   25.158106][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.158956][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1802 (reg 14501, index 17) beyond range (1813, 659)
Jun 23 16:37:20 dsd-pc kernel: [   25.158957][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.159993][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1802 (reg 14509, index 18) beyond range (1814, 660)
Jun 23 16:37:20 dsd-pc kernel: [   25.159994][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.161029][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1802 (reg 14518, index 19) beyond range (1815, 661)
Jun 23 16:37:20 dsd-pc kernel: [   25.161030][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.162066][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1802 (reg 14526, index 20) beyond range (1816, 662)
Jun 23 16:37:20 dsd-pc kernel: [   25.162067][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.162914][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1802 (reg 14533, index 21) beyond range (1817, 663)
Jun 23 16:37:20 dsd-pc kernel: [   25.162915][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.163951][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1802 (reg 14541, index 22) beyond range (1818, 664)
Jun 23 16:37:20 dsd-pc kernel: [   25.163952][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.164988][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1802 (reg 14549, index 23) beyond range (1819, 665)
Jun 23 16:37:20 dsd-pc kernel: [   25.164988][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.166025][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1803 (reg 14557, index 24) beyond range (1820, 666)
Jun 23 16:37:20 dsd-pc kernel: [   25.166026][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.167063][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1803 (reg 14566, index 25) beyond range (1821, 667)
Jun 23 16:37:20 dsd-pc kernel: [   25.167064][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.168098][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1803 (reg 14574, index 26) beyond range (1822, 668)
Jun 23 16:37:20 dsd-pc kernel: [   25.168099][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.168759][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1803 (reg 14579, index 27) beyond range (1823, 669)
Jun 23 16:37:20 dsd-pc kernel: [   25.168760][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.169325][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1803 (reg 14584, index 28) beyond range (1824, 670)
Jun 23 16:37:20 dsd-pc kernel: [   25.169326][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.169703][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1803 (reg 14587, index 29) beyond range (1824, 670)
Jun 23 16:37:20 dsd-pc kernel: [   25.169704][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.170740][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1803 (reg 14595, index 30) beyond range (1825, 671)
Jun 23 16:37:20 dsd-pc kernel: [   25.170740][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.171025][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1803 (reg 14597, index 31) beyond range (1825, 671)
Jun 23 16:37:20 dsd-pc kernel: [   25.171026][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.172062][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1804 (reg 14606, index 32) beyond range (1826, 672)
Jun 23 16:37:20 dsd-pc kernel: [   25.172064][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.173101][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1804 (reg 14614, index 33) beyond range (1827, 673)
Jun 23 16:37:20 dsd-pc kernel: [   25.173102][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.174139][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1804 (reg 14622, index 34) beyond range (1828, 674)
Jun 23 16:37:20 dsd-pc kernel: [   25.174140][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.174990][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1804 (reg 14629, index 35) beyond range (1829, 675)
Jun 23 16:37:20 dsd-pc kernel: [   25.174992][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.176027][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1804 (reg 14637, index 36) beyond range (1830, 676)
Jun 23 16:37:20 dsd-pc kernel: [   25.176028][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.176500][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1804 (reg 14641, index 37) beyond range (1831, 677)
Jun 23 16:37:20 dsd-pc kernel: [   25.176501][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.176596][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1804 (reg 14642, index 38) beyond range (1831, 677)
Jun 23 16:37:20 dsd-pc kernel: [   25.176597][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.176598][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1804 (reg 14642, index 39) beyond range (1831, 677)
Jun 23 16:37:20 dsd-pc kernel: [   25.176599][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.176600][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1805 (reg 14642, index 40) beyond range (1831, 677)
Jun 23 16:37:20 dsd-pc kernel: [   25.176601][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.176603][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1805 (reg 14642, index 41) beyond range (1831, 677)
Jun 23 16:37:20 dsd-pc kernel: [   25.176603][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc kernel: [   25.176605][13] [    C8] xhci_hcd 0000:03:00.3: Frame ID 1805 (reg 14642, index 42) beyond range (1831, 677)
Jun 23 16:37:20 dsd-pc kernel: [   25.176606][13] [    C8] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
Jun 23 16:37:20 dsd-pc dbus-daemon[911]: message repeated 17 times: [ [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation]
Jun 23 16:37:21 dsd-pc pulseaudio[2928]: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output idle for too long, suspending ...
Jun 23 16:37:21 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Device suspended...
Jun 23 16:37:21 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output: suspend_cause: (none) -> IDLE,default_sink->name = alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output ,s->core->default_sink->state=1
Jun 23 16:37:21 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output: state: IDLE -> SUSPENDED
Jun 23 16:37:21 dsd-pc pulseaudio[2928]: [pulseaudio] source.c: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output.monitor: suspend_cause: (none) -> IDLE ,default_sourec->name = alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output.monitor ,s->core->default_source->state=1
Jun 23 16:37:21 dsd-pc pulseaudio[2928]: [pulseaudio] source.c: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output.monitor: state: IDLE -> SUSPENDED
Jun 23 16:37:21 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
Jun 23 16:37:21 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: /dev/snd/controlC1 is accessible: yes
Jun 23 16:37:21 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: Resuming all sinks and sources of card alsa_card.usb-Generic_USB_Audio-00.
Jun 23 16:37:21 dsd-pc NetworkManager[929]: file src/nm-auth-utils.c: line 253 (<dropped>): should not be reached
Jun 23 16:37:21 dsd-pc com.kylin.assistant.systemdaemon[2299]: Running kyas_system_service...
Jun 23 16:37:21 dsd-pc com.kylin.assistant.systemdaemon[2299]: Ending kyas_system_service...
Jun 23 16:37:21 dsd-pc dbus-daemon[911]: [system] [limitCtl]:service integrity check skiped: integrity map missing
Jun 23 16:37:22 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:23 dsd-pc dbus-daemon[911]: message repeated 8 times: [ [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation]
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-alsa-card.c: Jack 'Line Out Jack' is now plugged in
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] device-port.c: Setting port analog-output-lineout to status yes
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-switch-on-port-available.c: Port analog-output-lineout yes to switch port
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-switch-on-port-available.c: Trying to switch to port analog-output-lineout
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-switch-on-port-available.c: Finding best profile for port analog-output-lineout, preferred = (null)
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: default_sink: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output -> alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: pa_core_update_default_source,best->source= alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output.monitor ,old_default_source=alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output.monitor
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output: state: SUSPENDED -> UNLINKED
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: pa_core_update_default_source,best->source= alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink.monitor ,old_default_source=alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output.monitor
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: default_source: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output.monitor -> alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink.monitor
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: pa_source_move_streams_to_default_source old_default_source
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output.monitor: state: SUSPENDED -> UNLINKED
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Thread shutting down
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: Freeing sink 1 "alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c: Freeing source 1 "alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output.monitor"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] reserve-wrap.c: Successfully acquired reservation lock on device 'Audio1'
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] reserve-wrap.c: Successfully create reservation lock monitor for device 'Audio1'
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Trying hw:1,0 with SND_PCM_NO_AUTO_FORMAT ...
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Managed to open hw:1,0
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Cannot disable ALSA period wakeups
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Maximum hw buffer size is 5944 ms
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Set buffer size first (to 88200 samples), period size second (to 88200 samples).
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: ALSA period wakeups were not disabled
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Successfully opened device hw:1,0.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Selected mapping 'Analog Stereo Lineout' (analog-output-lineout).
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Successfully enabled mmap() mode.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Successfully enabled timer-based scheduling mode.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Successfully attached to mixer 'hw:1'
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Added 1 ports
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: profile_name = usb-Generic_USB_Audio-00
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: input profile = 0xffffffff, port_name=usb-Generic_USB_Audio-00
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-device-restore.c: Database contains no data for key: sink:alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-device-restore.c: Database contains no (or invalid) data for key: sink:alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout:null
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: pa_device_init_priority, sink->name = alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout,sink->priority  =9049
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: Created sink 2 "alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout" with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.resolution_bits = "16"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.api = "alsa"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.class = "sound"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.class = "generic"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.subclass = "generic-mix"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.name = "USB Audio"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.id = "USB Audio"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.subdevice = "0"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.subdevice_name = "subdevice #0"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.device = "0"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.card = "1"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.card_name = "USB Audio"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.long_card_name = "Generic USB Audio at usb-0000:03:00.3-3, high speed"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     alsa.driver_name = "snd_usb_audio"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.bus_path = "pci-0000:03:00.3-usb-0:3:1.0"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     sysfs.path = "/devices/pci0000:00/0000:00:07.1/0000:03:00.3/usb1/1-3/1-3:1.0/sound/card1"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     udev.id = "usb-Generic_USB_Audio-00"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.bus = "usb"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.vendor.id = "1e0b"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.vendor.name = "Generic"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.product.id = "d01e"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.product.name = "USB Audio"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.serial = "Generic_USB_Audio"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.string = "hw:1,0"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.buffering.buffer_size = "352800"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.buffering.fragment_size = "176400"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.access_mode = "mmap+timer"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.profile.name = "analog-output-lineout"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.profile.description = "Analog Stereo Lineout"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.description = "USB Audio Analog Stereo Lineout"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     module-udev-detect.discovered = "1"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c:     device.icon_name = "audio-card-usb"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-device-restore.c: Database contains no data for key: source:alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout.monitor
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-device-restore.c: Database contains no (or invalid) data for key: source:alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout.monitor:null
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c: Created source 2 "alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout.monitor" with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.description = "Monitor of USB Audio Analog Stereo Lineout"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.class = "monitor"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     alsa.card = "1"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     alsa.card_name = "USB Audio"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     alsa.long_card_name = "Generic USB Audio at usb-0000:03:00.3-3, high speed"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     alsa.driver_name = "snd_usb_audio"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.bus_path = "pci-0000:03:00.3-usb-0:3:1.0"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     sysfs.path = "/devices/pci0000:00/0000:00:07.1/0000:03:00.3/usb1/1-3/1-3:1.0/sound/card1"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     udev.id = "usb-Generic_USB_Audio-00"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.bus = "usb"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.vendor.id = "1e0b"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.vendor.name = "Generic"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.product.id = "d01e"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.product.name = "USB Audio"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.serial = "Generic_USB_Audio"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.string = "1"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     module-udev-detect.discovered = "1"
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c:     device.icon_name = "audio-card-usb"  data->name == alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout.monitor ,data->channel_map 
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Using 2.0 fragments of size 176400 bytes (1000.00ms), buffer size is 352800 bytes (2000.00ms)
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Time scheduling watermark is 20.00ms
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: hwbuf_unused=0
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: setting avail_min=87319
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Activating path analog-output-lineout
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Path analog-output-lineout (线缆输出), direction=1, priority=90, probed=yes, supported=yes, has_mute=yes, has_volume=yes, has_dB=yes, min_volume=0, max_volume=87, min_dB=-65.25, max_dB=0
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: [frank] ismultichannel = 0
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Element 'Line Out', direction=1, switch=1, volume=1, volume_limit=-1, enumeration=0, required=0, required_any=4, required_absent=0, mask=0x3600000000f66, n_channels=2, override_map=03
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Element 'Headphone', direction=1, switch=2, volume=2, volume_limit=-1, enumeration=0, required=0, required_any=0, required_absent=0, mask=0x6, n_channels=2, override_map=00
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Out, alsa_name='Line Out Jack', index='0', detection possible
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Speaker - Output, alsa_name='Speaker - Output Jack', index='0', detection unavailable
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Out Phantom, alsa_name='Line Out Phantom Jack', index='0', detection unavailable
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Headphone, alsa_name='Headphone Jack', index='0', detection possible
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Headphone Surround, alsa_name='Headphone Surround Jack', index='0', detection unavailable
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Front Headphone Front, alsa_name='Front Headphone Front Jack', index='0', detection unavailable
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Front Headphone, alsa_name='Front Headphone Jack', index='0', detection unavailable
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Front Line Out, alsa_name='Front Line Out Jack', index='0', detection unavailable
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Headphone Front, alsa_name='Headphone Front Jack', index='0', detection unavailable
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Front Line Out Phantom, alsa_name='Front Line Out Phantom Jack', index='0', detection unavailable
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Rear Line Out, alsa_name='Rear Line Out Jack', index='0', detection unavailable
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Rear Line Out Phantom, alsa_name='Rear Line Out Phantom Jack', index='0', detection unavailable
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Out Front, alsa_name='Line Out Front Jack', index='0', detection unavailable
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Out Front Phantom, alsa_name='Line Out Front Phantom Jack', index='0', detection unavailable
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Out CLFE, alsa_name='Line Out CLFE Jack', index='0', detection unavailable
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Out CLFE Phantom, alsa_name='Line Out CLFE Phantom Jack', index='0', detection unavailable
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Out Surround, alsa_name='Line Out Surround Jack', index='0', detection unavailable
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Out Surround Phantom, alsa_name='Line Out Surround Phantom Jack', index='0', detection unavailable
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Out Side, alsa_name='Line Out Side Jack', index='0', detection unavailable
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Line Out Side Phantom, alsa_name='Line Out Side Phantom Jack', index='0', detection unavailable
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Dock Line Out, alsa_name='Dock Line Out Jack', index='0', detection unavailable
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-mixer.c: Jack Dock Line Out Phantom, alsa_name='Dock Line Out Phantom Jack', index='0', detection unavailable
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Successfully enabled deferred volume.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Hardware volume ranges from -65.25 dB to 0.00 dB.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Fixing base volume to 0.00 dB
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Using hardware volume control. Hardware dB scale supported.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Using hardware mute control.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: snd_pcm_dump():
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Hardware PCM card 1 'USB Audio' device 0 subdevice 0
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c: Its setup is:
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   stream       : PLAYBACK
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   access       : MMAP_INTERLEAVED
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   format       : S16_LE
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   subformat    : STD
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   channels     : 2
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   rate         : 44100
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   exact rate   : 44100 (44100/1)
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   msbits       : 16
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   buffer_size  : 88200
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   period_size  : 44100
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   period_time  : 1000000
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   tstamp_mode  : ENABLE
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   tstamp_type  : MONOTONIC
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   period_step  : 1
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   avail_min    : 87319
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   period_event : 0
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   start_threshold  : -1
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   stop_threshold   : 6206523236469964800
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   silence_threshold: 0
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   silence_size : 0
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   boundary     : 6206523236469964800
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   appl_ptr     : 0
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-util.c:   hw_ptr       : 0
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Read hardware volume: front-left: 17947 /  27% / -20.25 dB,   front-right: 17947 /  27% / -20.25 dB
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] alsa-sink.c: Current hardware dB value is the same as the min_dB value, do not need to change it
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Thread starting up
Jun 23 16:37:23 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:23 dsd-pc dbus-daemon[911]: message repeated 4 times: [ [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation]
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] util.c: Failed to acquire real-time scheduling: 没有那个文件或目录
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout: state: INIT -> IDLE
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Starting playback.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] ratelimit.c: 16 events suppressed
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Cutting sleep time for the initial iterations by half.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Cutting sleep time for the initial iterations by half.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] source.c: alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout.monitor: state: INIT -> IDLE
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: pa_core_update_default_source,best->source= alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout.monitor ,old_default_source=alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink.monitor
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Cutting sleep time for the initial iterations by half.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: default_source: alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink.monitor -> alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout.monitor
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: pa_source_move_streams_to_default_source old_default_source
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-device-restore.c: Database contains no (or invalid) data for key: sink:alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout:null
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout becomes idle, timeout in 5 seconds.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-switch-on-connect.c: Trying to switch to new sink alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-switch-on-connect.c: pa_core_set_configured_default_sink ,sink->name = alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout,default_sink = alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink ,configure_default_sink = alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output s = usb
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: configured_default_sink: alsa_output.usb-Generic_USB_Audio-00.iec958-stereo-output -> alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: default_sink: alsa_output.pci-0000_02_00.0-platform-inno-audio.12.auto.HiFi__hw_InnosiliconCard_0__sink -> alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: pa_core_update_default_source,best->source= alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout.monitor ,old_default_source=alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout.monitor
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: alsa_card.usb-Generic_USB_Audio-00: active_profile: output:iec958-stereo-output -> output:analog-output-lineout
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] card.c: Setting card alsa_card.usb-Generic_USB_Audio-00 profile output:analog-output-lineout to availability status unknown
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-device-restore.c: Database contains no data for key: sink:alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-device-restore.c: Database contains no (or invalid) data for key: sink:alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout:null
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-device-restore.c: Storing port for device sink:alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-device-restore.c: Storing volume/mute for device+port sink:alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout:analog-output-lineout.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-device-restore.c: Database contains no data for key: source:alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout.monitor
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-device-restore.c: Database contains no (or invalid) data for key: source:alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout.monitor:null
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-device-restore.c: Storing port for device source:alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout.monitor.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-device-restore.c: Storing volume/mute for device+port source:alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout.monitor:null.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Cutting sleep time for the initial iterations by half.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Read hardware volume: front-left: 17947 /  27% / -20.25 dB,   front-right: 17947 /  27% / -20.25 dB
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Current hardware dB value is the same as the min_dB value, do not need to change it
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Cutting sleep time for the initial iterations by half.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: message repeated 6 times: [ [alsa-sink-USB Audio] alsa-sink.c: Cutting sleep time for the initial iterations by half.]
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Client ukui-volume-control-applet-qt changes mute of sink alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Client ukui-volume-control-applet-qt changes volume of sink alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: The reference volume of sink alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout changed from front-left: 65536 / 100% / 0.00 dB,   front-right: 65536 / 100% / 0.00 dB to front-left: 11141 /  17% / -27.70 dB,   front-right: 11141 /  17% / -27.70 dB.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requested volume: front-left: 11141 /  17% / -27.70 dB,   front-right: 11141 /  17% / -27.70 dB
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Got hardware volume: front-left: 11654 /  18% / -27.00 dB,   front-right: 11654 /  18% / -27.00 dB
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Calculated software volume: front-left: 62651 /  96% / -0.70 dB,   front-right: 62651 /  96% / -0.70 dB (accurate-enough=no)
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Volume going down to 11654 at 30638307
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requested to rewind 352800 bytes.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Limited to 351576 bytes.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: before: 87894
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: after: 87894
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Rewound 351576 bytes.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] module-device-restore.c: Storing volume/mute for device+port sink:alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout:analog-output-lineout.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Processing rewind...
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: latency = 953
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] source.c: Processing rewind...
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Client ukui-settings-daemon changes volume of sink alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout.
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requested volume: front-left: 11141 /  17% / -27.70 dB,   front-right: 11141 /  17% / -27.70 dB
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Got hardware volume: front-left: 11654 /  18% / -27.00 dB,   front-right: 11654 /  18% / -27.00 dB
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Calculated software volume: front-left: 62651 /  96% / -0.70 dB,   front-right: 62651 /  96% / -0.70 dB (accurate-enough=no)
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Volume going down to 11654 at 30643794
Jun 23 16:37:23 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Volume change to 11654 at 28645252 was written 56 usec late
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Freed 9 "libcanberra"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Connection died.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Created 12 "Native client (UNIX socket client)"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Protocol version: remote 33, local 33
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=1000 success=1
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: SHM possible: yes
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Memfd possible: yes
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Negotiated SHM type: shared memfd
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] memblock.c: Using shared memfd memory pool with 1024 slots of size 64.0 KiB each, total size is 64.0 MiB, maximum usable slot size is 65472
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] srbchannel.c: SHM block is 65472 bytes, ringbuffer capacity is 2 * 32712 bytes
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Enabling srbchannel...
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for sound-theme-player
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Client enabled srbchannel.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c: Negotiated format: pcm, format.sample_format = "\"s16le\""  format.rate = "44100"  format.channels = "2"  format.channel_map = "\"front-left,front-right\""
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout becomes busy, resuming.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout becomes idle, timeout in 5 seconds.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] memblockq.c: memblockq requested: maxlength=33554432, tlength=0, base=4, prebuf=0, minreq=1 maxrewind=0
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=33554432, tlength=33554432, base=4, prebuf=0, minreq=4 maxrewind=0
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c: Created input 2 "audio-volume-change" on alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     event.description = "Sound Theme Player"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     event.id = "audio-volume-change"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     media.role = "event"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     media.name = "audio-volume-change"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     media.filename = "/usr/share//sounds/Light-Seeking/stereo/audio-volume-change.ogg"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.name = "libcanberra"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     native-protocol.peer = "UNIX socket client"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     native-protocol.version = "33"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.version = "0.30"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.id = "org.freedesktop.libcanberra"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.process.id = "3439"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.process.user = "dsd"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.process.host = "dsd-pc"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.process.binary = "sound-theme-player"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.language = "zh_CN.UTF-8"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     window.x11.display = ":0"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.process.machine_id = "976685320ed2404a906bfd8a91832b98"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.process.session_id = "3"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     module-stream-restore.id = "sink-input-by-media-role:event"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c:     application.move = "yes"
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Requested tlength=2000.00 ms, minreq=20.00 ms
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Traditional mode enabled, modifying sink usec only for compat with minreq.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Requested latency=1960.00 ms, Received latency=1960.00 ms
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] memblockq.c: memblockq requested: maxlength=4194304, tlength=352800, base=4, prebuf=349276, minreq=3528 maxrewind=0
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=4194304, tlength=352800, base=4, prebuf=349276, minreq=3528 maxrewind=0
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Final latency 3960.00 ms = 1960.00 ms + 2*20.00 ms + 1960.00 ms
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Latency set to 1960.00ms
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: hwbuf_unused=7056
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: setting avail_min=87319
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requesting rewind due to latency change.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requested volume: front-left: 11141 /  17% / -27.70 dB,   front-right: 11141 /  17% / -27.70 dB
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Got hardware volume: front-left: 11654 /  18% / -27.00 dB,   front-right: 11654 /  18% / -27.00 dB
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Calculated software volume: front-left: 62651 /  96% / -0.70 dB,   front-right: 62651 /  96% / -0.70 dB (accurate-enough=no)
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Volume going down to 11654 at 30644254
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requested to rewind 352800 bytes.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Limited to 306460 bytes.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: before: 76615
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: after: 76615
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Rewound 306460 bytes.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Processing rewind...
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: latency = 1497
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink-input.c: Have to rewind 306460 bytes on render memblockq.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] source.c: Processing rewind...
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout: state: IDLE -> RUNNING
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Volume change to 11654 at 28906964 was written 60 usec late
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Volume change to 11654 at 28906964 was written 60 usec late
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] protocol-native.c: Requesting rewind due to end of underrun.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requested to rewind 345744 bytes.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Limited to 345488 bytes.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: before: 86372
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: after: 86372
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Rewound 345488 bytes.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Processing rewind...
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: latency = 0
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink-input.c: Have to rewind 345488 bytes on render memblockq.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] source.c: Processing rewind...
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] protocol-native.c: Implicit drain of 'audio-volume-change'
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout: Found underrun 218000 bytes ago (127744 bytes ahead in playback buffer)
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: message repeated 3 times: [ [alsa-sink-USB Audio] sink.c: alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout: Found underrun 218000 bytes ago (127744 bytes ahead in playback buffer)]
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] protocol-native.c: Drain acknowledged of 'audio-volume-change'
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout becomes idle, timeout in 5 seconds.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: hwbuf_unused=0
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: setting avail_min=87319
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requested volume: front-left: 11141 /  17% / -27.70 dB,   front-right: 11141 /  17% / -27.70 dB
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Got hardware volume: front-left: 11654 /  18% / -27.00 dB,   front-right: 11654 /  18% / -27.00 dB
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Calculated software volume: front-left: 62651 /  96% / -0.70 dB,   front-right: 62651 /  96% / -0.70 dB (accurate-enough=no)
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Volume not changing
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Requested to rewind 352800 bytes.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Limited to 216848 bytes.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: before: 54212
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: after: 54212
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Rewound 216848 bytes.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: Processing rewind...
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] sink.c: latency = 5480
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] source.c: Processing rewind...
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout: state: RUNNING -> IDLE
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout becomes idle, timeout in 5 seconds.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
Jun 23 16:37:24 dsd-pc pulseaudio[2928]: [pulseaudio] sink-input.c: Freeing input 2 "audio-volume-change"
Jun 23 16:37:25 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:29 dsd-pc dbus-daemon[911]: message repeated 26 times: [ [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation]
Jun 23 16:37:29 dsd-pc pulseaudio[2928]: [pulseaudio] module-suspend-on-idle.c: Sink alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout idle for too long, suspending ...
Jun 23 16:37:29 dsd-pc pulseaudio[2928]: [alsa-sink-USB Audio] alsa-sink.c: Device suspended...
Jun 23 16:37:29 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout: suspend_cause: (none) -> IDLE,default_sink->name = alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout ,s->core->default_sink->state=1
Jun 23 16:37:29 dsd-pc pulseaudio[2928]: [pulseaudio] sink.c: alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout: state: IDLE -> SUSPENDED
Jun 23 16:37:29 dsd-pc pulseaudio[2928]: [pulseaudio] source.c: alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout.monitor: suspend_cause: (none) -> IDLE ,default_sourec->name = alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout.monitor ,s->core->default_source->state=1
Jun 23 16:37:29 dsd-pc pulseaudio[2928]: [pulseaudio] source.c: alsa_output.usb-Generic_USB_Audio-00.analog-output-lineout.monitor: state: IDLE -> SUSPENDED
Jun 23 16:37:29 dsd-pc pulseaudio[2928]: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
Jun 23 16:37:29 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: /dev/snd/controlC1 is accessible: yes
Jun 23 16:37:29 dsd-pc pulseaudio[2928]: [pulseaudio] module-udev-detect.c: Resuming all sinks and sources of card alsa_card.usb-Generic_USB_Audio-00.
Jun 23 16:37:31 dsd-pc auserver[5735]: /sbin/augenrules: No change
Jun 23 16:37:31 dsd-pc auditctl: WARNING - 32/64 bit syscall mismatch in line 6, you should specify an arch
Jun 23 16:37:31 dsd-pc auserver[5756]: No rules
Jun 23 16:37:31 dsd-pc auserver[5756]: enabled 1
Jun 23 16:37:31 dsd-pc auserver[5756]: failure 1
Jun 23 16:37:31 dsd-pc auserver[5756]: pid 813
Jun 23 16:37:31 dsd-pc auserver[5756]: rate_limit 0
Jun 23 16:37:31 dsd-pc auserver[5756]: backlog_limit 8192
Jun 23 16:37:31 dsd-pc auserver[5756]: lost 0
Jun 23 16:37:31 dsd-pc auserver[5756]: backlog 0
Jun 23 16:37:31 dsd-pc auserver[5756]: backlog_wait_time 0
Jun 23 16:37:31 dsd-pc auserver[5756]: enabled 1
Jun 23 16:37:31 dsd-pc auserver[5756]: failure 1
Jun 23 16:37:31 dsd-pc auserver[5756]: pid 813
Jun 23 16:37:31 dsd-pc auserver[5756]: rate_limit 0
Jun 23 16:37:31 dsd-pc auserver[5756]: backlog_limit 8192
Jun 23 16:37:31 dsd-pc auserver[5756]: lost 0
Jun 23 16:37:31 dsd-pc auserver[5756]: backlog 0
Jun 23 16:37:31 dsd-pc auserver[5756]: backlog_wait_time 0
Jun 23 16:37:31 dsd-pc auserver[5756]: enabled 1
Jun 23 16:37:31 dsd-pc auserver[5756]: failure 1
Jun 23 16:37:31 dsd-pc auserver[5756]: pid 813
Jun 23 16:37:31 dsd-pc auserver[5756]: rate_limit 0
Jun 23 16:37:31 dsd-pc auserver[5756]: backlog_limit 8192
Jun 23 16:37:31 dsd-pc auserver[5756]: lost 0
Jun 23 16:37:31 dsd-pc auserver[5756]: backlog 0
Jun 23 16:37:31 dsd-pc auserver[5756]: backlog_wait_time 0
Jun 23 16:37:31 dsd-pc dbus-daemon[911]: [system] Connection has not authenticated soon enough, closing it (auth_timeout=30000ms, elapsed: 30001ms)
Jun 23 16:37:31 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:31 dsd-pc dbus-daemon[911]: message repeated 8 times: [ [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation]
Jun 23 16:37:33 dsd-pc pulseaudio[2928]: [pulseaudio] bluez5-util.c: GetManagedObjects() failed: org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
Jun 23 16:37:33 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:33 dsd-pc pulseaudio[2928]: [pulseaudio] module-card-restore.c: Synced.
Jun 23 16:37:33 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:33 dsd-pc dbus-daemon[911]: message repeated 4 times: [ [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation]
Jun 23 16:37:33 dsd-pc pulseaudio[2928]: [pulseaudio] module-device-restore.c: Synced.
Jun 23 16:37:33 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:35 dsd-pc dbus-daemon[911]: message repeated 11 times: [ [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation]
Jun 23 16:37:37 dsd-pc systemd-logind: [Support hibernate]
Jun 23 16:37:37 dsd-pc systemd-logind: [Support suspend]
Jun 23 16:37:37 dsd-pc systemd-logind: [Support (null)]
Jun 23 16:37:37 dsd-pc systemd-logind: [Support (null)]
Jun 23 16:37:38 dsd-pc dbus-daemon[911]: [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation
Jun 23 16:37:38 dsd-pc dbus-daemon[911]: message repeated 8 times: [ [system] Service file "/usr/share/dbus-1/services/org.kylinID.service" should have been named "org.kylinID.service.service" and will not work with system bus activation]
Jun 23 16:37:38 dsd-pc pulseaudio[2928]: [pulseaudio] module-x11-xsmp.c: Got die message from XSMP.
Jun 23 16:37:38 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Unloading "module-x11-cork-request" (index: #23).
Jun 23 16:37:38 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Unloaded "module-x11-cork-request" (index: #23).
Jun 23 16:37:38 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Unloading "module-x11-publish" (index: #22).
Jun 23 16:37:38 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Unloaded "module-x11-publish" (index: #22).
Jun 23 16:37:38 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Unloading "module-x11-xsmp" (index: #24).
Jun 23 16:37:38 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Freed 5 "XSMP Session on ukuismserver as 10d4d6642d000178220382800000028600007"
Jun 23 16:37:38 dsd-pc pulseaudio[2928]: [pulseaudio] module.c: Unloaded "module-x11-xsmp" (index: #24).
Jun 23 16:37:38 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Freed 6 "ukui-settings-daemon"
Jun 23 16:37:38 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Connection died.
Jun 23 16:37:38 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Freed 10 "Ukui Media Volume Control"
Jun 23 16:37:38 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Connection died.
Jun 23 16:37:38 dsd-pc systemd[2496]: Stopped target UKUI Session.
Jun 23 16:37:38 dsd-pc systemd[2496]: Stopped target Current graphical user session.
Jun 23 16:37:38 dsd-pc systemd[2496]: Stopping Virtual filesystem service - Apple File Conduit monitor...
Jun 23 16:37:38 dsd-pc systemd[2496]: Stopping Virtual filesystem service...
Jun 23 16:37:38 dsd-pc systemd[2496]: Stopping Virtual filesystem service - GNOME Online Accounts monitor...
Jun 23 16:37:38 dsd-pc systemd[2496]: Stopping Virtual filesystem service - digital camera monitor...
Jun 23 16:37:38 dsd-pc systemd[2496]: Stopping Virtual filesystem metadata service...
Jun 23 16:37:38 dsd-pc systemd[2496]: Stopping Virtual filesystem service - Media Transfer Protocol monitor...
Jun 23 16:37:38 dsd-pc systemd[2496]: Stopping Virtual filesystem service - disk device monitor...
Jun 23 16:37:38 dsd-pc systemd[2496]: gvfs-goa-volume-monitor.service: Succeeded.
Jun 23 16:37:38 dsd-pc systemd[2496]: Stopped Virtual filesystem service - GNOME Online Accounts monitor.
Jun 23 16:37:38 dsd-pc systemd[1]: run-user-1000-gvfs.mount: Succeeded.
Jun 23 16:37:38 dsd-pc systemd[2496]: run-user-1000-gvfs.mount: Succeeded.
Jun 23 16:37:38 dsd-pc systemd[2496]: gvfs-gphoto2-volume-monitor.service: Succeeded.
Jun 23 16:37:38 dsd-pc systemd[2496]: Stopped Virtual filesystem service - digital camera monitor.
Jun 23 16:37:38 dsd-pc systemd[2496]: gvfs-mtp-volume-monitor.service: Succeeded.
Jun 23 16:37:38 dsd-pc systemd[2496]: Stopped Virtual filesystem service - Media Transfer Protocol monitor.
Jun 23 16:37:38 dsd-pc systemd[2496]: gvfs-metadata.service: Succeeded.
Jun 23 16:37:38 dsd-pc systemd[2496]: Stopped Virtual filesystem metadata service.
Jun 23 16:37:38 dsd-pc systemd[2496]: kylin-stepinstall-notify.service: Succeeded.
Jun 23 16:37:38 dsd-pc systemd[2496]: gvfs-udisks2-volume-monitor.service: Succeeded.
Jun 23 16:37:38 dsd-pc systemd[2496]: Stopped Virtual filesystem service - disk device monitor.
Jun 23 16:37:38 dsd-pc systemd[2496]: gvfs-afc-volume-monitor.service: Succeeded.
Jun 23 16:37:38 dsd-pc systemd[2496]: Stopped Virtual filesystem service - Apple File Conduit monitor.
Jun 23 16:37:38 dsd-pc systemd[2496]: gvfs-daemon.service: Succeeded.
Jun 23 16:37:38 dsd-pc systemd[2496]: Stopped Virtual filesystem service.
Jun 23 16:37:39 dsd-pc kysec-sync-daemon[2034]: *** stack smashing detected ***: terminated
Jun 23 16:37:39 dsd-pc systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-coredump@0-6276-0.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Jun 23 16:37:39 dsd-pc systemd[1]: systemd-coredump.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-coredump@0-6276-0.service/start is destructive (systemd-reboot.service has 'start' job queued, but 'stop' is included in transaction).
Jun 23 16:37:39 dsd-pc systemd[1]: systemd-coredump.socket: Failed with result 'resources'.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping Session 3 of user dsd.
Jun 23 16:37:39 dsd-pc systemd[1]: Removed slice system-modprobe.slice.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped target Graphical Interface.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped target Multi-User System.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped target Login Prompts.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped target Host and Network Name Lookups.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped target Sound Card.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped target Timers.
Jun 23 16:37:39 dsd-pc systemd[1]: apt-daily-upgrade.timer: Succeeded.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped Daily apt upgrade and clean activities.
Jun 23 16:37:39 dsd-pc systemd[1]: apt-daily.timer: Succeeded.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped Daily apt download activities.
Jun 23 16:37:39 dsd-pc systemd[1]: e2scrub_all.timer: Succeeded.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped Periodic ext4 Online Metadata Check for All Filesystems.
Jun 23 16:37:39 dsd-pc systemd[1]: fstrim.timer: Succeeded.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped Discard unused blocks once a week.
Jun 23 16:37:39 dsd-pc systemd[1]: kylin-journal-flush.timer: Succeeded.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped Call Journal Flush By Timer.
Jun 23 16:37:39 dsd-pc systemd[1]: kylin-source-update-timer.timer: Succeeded.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped 更新源管理器启动时间的定时器生成工具.
Jun 23 16:37:39 dsd-pc systemd[1]: kylin-update-rescue.timer: Succeeded.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped kylin-update-rescue.
Jun 23 16:37:39 dsd-pc systemd[1]: man-db.timer: Succeeded.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped Daily man-db regeneration.
Jun 23 16:37:39 dsd-pc systemd[1]: motd-news.timer: Succeeded.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped Message of the Day.
Jun 23 16:37:39 dsd-pc systemd[1]: systemd-tmpfiles-clean.timer: Succeeded.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped Daily Cleanup of Temporary Directories.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped target System Time Synchronized.
Jun 23 16:37:39 dsd-pc pulseaudio[2928]: [pulseaudio] client.c: Freed 12 "libcanberra"
Jun 23 16:37:39 dsd-pc systemd[1]: lvm2-lvmpolld.socket: Succeeded.
Jun 23 16:37:39 dsd-pc systemd[1]: Closed LVM2 poll daemon socket.
Jun 23 16:37:39 dsd-pc pulseaudio[2928]: [pulseaudio] protocol-native.c: Connection died.
Jun 23 16:37:39 dsd-pc systemd[1]: systemd-rfkill.socket: Succeeded.
Jun 23 16:37:39 dsd-pc systemd[1]: Closed Load/Save RF Kill Switch Status /dev/rfkill Watch.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping optimization service...
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping Accounts Service...
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping ACPI event daemon...
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping active user service...
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping Save/Restore Sound Card State...
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping Deferred execution scheduler...
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping User Desktop audit rule generate service...
Jun 23 16:37:39 dsd-pc avahi-daemon[882]: Got SIGTERM, quitting.
Jun 23 16:37:39 dsd-pc avahi-daemon[882]: Leaving mDNS multicast group on interface with address.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping Avahi mDNS/DNS-SD Stack...
Jun 23 16:37:39 dsd-pc avahi-daemon[882]: Leaving mDNS multicast group on interface with address.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping Authenticate by human biometric...
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping Availability of block devices...
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping kylin os manager daemon...
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping KYLIN CONF2 SYNC DBUS...
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping LSB: set CPUFreq kernel parameters...
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping Regular background program processing daemon...
Jun 23 16:37:39 dsd-pc avahi-daemon[882]: avahi-daemon 0.7 exiting.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping CUPS Scheduler...
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping com.kylin.secriskbox.service...
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping dnsmasq - A lightweight DHCP and caching DNS server...
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping Create final runtime dir for shutdown pivot root...
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping Getty on tty1...
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping LSB: Record successful boot for GRUB...
Jun 23 16:37:39 dsd-pc systemd[1]: ksc-defender-init.service: Succeeded.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped Init kylin security center configure to system.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping kylin dlp control...
Jun 23 16:37:39 dsd-pc blkdeactivate[6285]: Deactivating block devices:
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping kylin file system base fuse...
Jun 23 16:37:39 dsd-pc kyfs-service: 接受到终止请求,回收所有资源sig=15
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping kylin-core-dump-monitor...
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping kylin-offline-upgrade deamon...
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping kylin process manager daemon...
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping Unattended Upgrades Shutdown...
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping KYLIN SDK SYSTIME DBUS...
Jun 23 16:37:39 dsd-pc systemd[1]: message repeated 2 times: [ Stopping KYLIN SDK SYSTIME DBUS...]
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping Kysec daemon dbus service...
Jun 23 16:37:39 dsd-pc systemd[1]: kysec-init.service: Succeeded.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped Init whitelist.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping Kysec message and notify sync daemon...
Jun 23 16:37:39 dsd-pc systemd[1]: kysec-sync-early.service: Succeeded.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped Init netctl and process protect value to kernel.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping update duration after shutdown or reboot...
Jun 23 16:37:39 dsd-pc systemd[1]: lm-sensors.service: Succeeded.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped Initialize hardware monitoring sensors.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping check disk to rotate log...
Jun 23 16:37:39 dsd-pc nm-enhance-optimization: 接受到终止请求,回收所有资源
Jun 23 16:37:39 dsd-pc systemd[1]: Stopping kylin network enhancement optimization...
Jun 23 16:37:39 dsd-pc systemd[1]: openvpn.service: Succeeded.
Jun 23 16:37:39 dsd-pc systemd[1]: Stopped OpenVPN service.
Jun 23 16:38:12 dsd-pc systemd-modules-load[674]: Inserted module 'lp'
Jun 23 16:38:12 dsd-pc systemd-modules-load[674]: Inserted module 'ppdev'
Jun 23 16:38:12 dsd-pc systemd-modules-load[674]: Inserted module 'parport_pc'
Jun 23 16:38:12 dsd-pc systemd-modules-load[674]: Inserted module 'hwmon_vid'
Jun 23 16:38:12 dsd-pc systemd[1]: Finished Flush Journal to Persistent Storage.
Jun 23 16:38:12 dsd-pc systemd[1]: Finished udev Coldplug all Devices.
Jun 23 16:38:12 dsd-pc systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Jun 23 16:38:12 dsd-pc systemd[1]: Reached target Local File Systems (Pre).
Jun 23 16:38:12 dsd-pc systemd[1]: modprobe@chromeos_pstore.service: Succeeded.
Jun 23 16:38:12 dsd-pc systemd[1]: Finished Load Kernel Module chromeos_pstore.
Jun 23 16:38:12 dsd-pc systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
Jun 23 16:38:12 dsd-pc systemd[1]: conf2-update-db.service: Succeeded.
Jun 23 16:38:12 dsd-pc systemd[1]: Finished KYLIN CONF2 UPDATE DB.
Jun 23 16:38:12 dsd-pc systemd-modules-load[674]: Failed to insert module 'it87': No such device
Jun 23 16:38:12 dsd-pc systemd-modules-load[674]: Inserted module 'ky_dlp'
Jun 23 16:38:12 dsd-pc systemd-modules-load[674]: Module 'fuse' is built in
Jun 23 16:38:12 dsd-pc systemd-modules-load[674]: Inserted module 'vmwgfx'
Jun 23 16:38:12 dsd-pc systemd[1]: Finished Load Kernel Modules.
Jun 23 16:38:12 dsd-pc systemd[1]: Mounting FUSE Control File System...
Jun 23 16:38:12 dsd-pc systemd[1]: Mounting Kernel Configuration File System...
Jun 23 16:38:12 dsd-pc systemd[1]: Starting Init netctl and process protect value to kernel...
Jun 23 16:38:12 dsd-pc systemd[1]: Starting Apply Kernel Variables...
Jun 23 16:38:12 dsd-pc systemd[1]: Mounted FUSE Control File System.
Jun 23 16:38:12 dsd-pc systemd[1]: Mounted Kernel Configuration File System.
Jun 23 16:38:12 dsd-pc systemd[1]: Condition check resulted in VMware vmblock fuse mount being skipped.
Jun 23 16:38:12 dsd-pc systemd-sysctl[695]: Couldn't write '1' to 'kernel/yama/ptrace_scope', ignoring: No such file or directory
Jun 23 16:38:12 dsd-pc systemd-sysctl[695]: Not setting net/ipv4/conf/all/promote_secondaries (explicit setting exists).
Jun 23 16:38:12 dsd-pc systemd-sysctl[695]: Not setting net/ipv4/conf/default/promote_secondaries (explicit setting exists).
Jun 23 16:38:12 dsd-pc systemd[1]: Finished Apply Kernel Variables.
Jun 23 16:38:12 dsd-pc LIB(extend): Failed to connect: 拒绝连接 (111)
Jun 23 16:38:12 dsd-pc LIB(extend): time="2026-06-23 16:38:12": pid=694 uid=0 comm="/usr/sbin/kysec-sync" op="none" obj="none" message="bios_usb disable"
Jun 23 16:38:12 dsd-pc systemd[1]: Finished Init netctl and process protect value to kernel.
Jun 23 16:38:12 dsd-pc systemd[1]: Starting udev Kernel Device Manager...
Jun 23 16:38:12 dsd-pc systemd-udevd[714]: Configuration file /etc/udev/rules.d/99-mwv207.rules is marked executable. Please remove executable permission bits. Proceeding anyway.
Jun 23 16:38:12 dsd-pc systemd[1]: Started udev Kernel Device Manager.
Jun 23 16:38:12 dsd-pc systemd[1]: Starting Show Plymouth Boot Screen...
Jun 23 16:38:12 dsd-pc systemd[1]: plymouth-start.service: Succeeded.
Jun 23 16:38:12 dsd-pc systemd[1]: Started Show Plymouth Boot Screen.
Jun 23 16:38:12 dsd-pc systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped.
Jun 23 16:38:12 dsd-pc systemd[1]: Started Forward Password Requests to Plymouth Directory Watch.
Jun 23 16:38:12 dsd-pc systemd[1]: Reached target Local Encrypted Volumes.
Jun 23 16:38:12 dsd-pc systemd-udevd[743]: Using default interface naming scheme 'v245'.
Jun 23 16:38:12 dsd-pc systemd-udevd[743]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jun 23 16:38:12 dsd-pc systemd[1]: Found device kimtigo_SSD_512GB ESP.
Jun 23 16:38:12 dsd-pc systemd[1]: Found device kimtigo_SSD_512GB SYSBOOT.
Jun 23 16:38:12 dsd-pc systemd[1]: Found device kimtigo_SSD_512GB SWAP.
Jun 23 16:38:12 dsd-pc systemd[1]: Activating swap /dev/disk/by-uuid/ebba128c-6729-4564-9c03-d19393ef2243...
Jun 23 16:38:12 dsd-pc systemd[1]: Reached target Local File Systems.
Jun 23 16:38:12 dsd-pc systemd[1]: Starting Set console font and keymap...
Jun 23 16:38:12 dsd-pc systemd[1]: Starting Create final runtime dir for shutdown pivot root...
Jun 23 16:38:12 dsd-pc systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
Jun 23 16:38:12 dsd-pc systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
Jun 23 16:38:12 dsd-pc systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
Jun 23 16:38:12 dsd-pc systemd[1]: Starting Create Volatile Files and Directories...
Jun 23 16:38:12 dsd-pc systemd[1]: Finished Create final runtime dir for shutdown pivot root.
Jun 23 16:38:12 dsd-pc systemd[1]: Finished Set console font and keymap.
Jun 23 16:38:12 dsd-pc systemd[1]: plymouth-read-write.service: Succeeded.
Jun 23 16:38:12 dsd-pc systemd[1]: Finished Tell Plymouth To Write Out Runtime Data.
Jun 23 16:38:12 dsd-pc systemd-udevd[742]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jun 23 16:38:12 dsd-pc systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Jun 23 16:38:12 dsd-pc systemd[1]: Finished Create Volatile Files and Directories.
Jun 23 16:38:12 dsd-pc systemd[1]: Starting Security Auditing Service...
Jun 23 16:38:12 dsd-pc systemd[1]: Started Kysdk Security Log Service.
Jun 23 16:38:12 dsd-pc systemd[1]: Started Kysec Log Service.
Jun 23 16:38:12 dsd-pc systemd[1]: Started SELinux Config Service.
Jun 23 16:38:12 dsd-pc auditd[807]: Started dispatcher: /sbin/audispd pid: 810
Jun 23 16:38:12 dsd-pc systemd[1]: Started Network Name Resolution.
Jun 23 16:38:12 dsd-pc auditd[807]: Init complete, auditd 2.8.5 listening for events (startup state enable)
Jun 23 16:38:12 dsd-pc audispd: No plugins found, exiting
Jun 23 16:38:12 dsd-pc systemd[1]: Started Network Time Synchronization.
Jun 23 16:38:12 dsd-pc systemd[1]: Reached target System Time Set.
Jun 23 16:38:12 dsd-pc systemd[1]: Reached target System Time Synchronized.
Jun 23 16:38:12 dsd-pc systemd[1]: Condition check resulted in Authentication service for virtual machines hosted on VMware being skipped.
Jun 23 16:38:12 dsd-pc systemd[1]: Condition check resulted in Service for virtual machines hosted on VMware being skipped.
Jun 23 16:38:12 dsd-pc systemd[1]: Activated swap /dev/disk/by-uuid/ebba128c-6729-4564-9c03-d19393ef2243.
Jun 23 16:38:12 dsd-pc systemd[1]: Reached target Swap.
Jun 23 16:38:12 dsd-pc augenrules[818]: /sbin/augenrules: No change
Jun 23 16:38:12 dsd-pc auditctl: WARNING - 32/64 bit syscall mismatch in line 6, you should specify an arch
Jun 23 16:38:12 dsd-pc augenrules[851]: No rules
Jun 23 16:38:12 dsd-pc augenrules[851]: enabled 1
Jun 23 16:38:12 dsd-pc augenrules[851]: failure 1
Jun 23 16:38:12 dsd-pc augenrules[851]: pid 807
Jun 23 16:38:12 dsd-pc augenrules[851]: rate_limit 0
Jun 23 16:38:12 dsd-pc augenrules[851]: backlog_limit 8192
Jun 23 16:38:12 dsd-pc augenrules[851]: lost 0
Jun 23 16:38:12 dsd-pc augenrules[851]: backlog 0
Jun 23 16:38:12 dsd-pc augenrules[851]: backlog_wait_time 15000
Jun 23 16:38:12 dsd-pc augenrules[851]: enabled 1
Jun 23 16:38:12 dsd-pc augenrules[851]: failure 1
Jun 23 16:38:12 dsd-pc augenrules[851]: pid 807
Jun 23 16:38:12 dsd-pc augenrules[851]: rate_limit 0
Jun 23 16:38:12 dsd-pc augenrules[851]: backlog_limit 8192
Jun 23 16:38:12 dsd-pc augenrules[851]: lost 0
Jun 23 16:38:12 dsd-pc augenrules[851]: backlog 0
Jun 23 16:38:12 dsd-pc augenrules[851]: backlog_wait_time 15000
Jun 23 16:38:12 dsd-pc augenrules[851]: enabled 1
Jun 23 16:38:12 dsd-pc augenrules[851]: failure 1
Jun 23 16:38:12 dsd-pc augenrules[851]: pid 807
Jun 23 16:38:12 dsd-pc augenrules[851]: rate_limit 0
Jun 23 16:38:12 dsd-pc augenrules[851]: backlog_limit 8192
Jun 23 16:38:12 dsd-pc augenrules[851]: lost 0
Jun 23 16:38:12 dsd-pc augenrules[851]: backlog 0
Jun 23 16:38:12 dsd-pc augenrules[851]: backlog_wait_time 0
Jun 23 16:38:12 dsd-pc realtek-usb-wifi: Device(1d6b:0003) insert...
Jun 23 16:38:12 dsd-pc systemd[1]: Started Security Auditing Service.
Jun 23 16:38:12 dsd-pc kernel: [    0.000000][ 3] [    T0] Linux version 5.4.18-164-generic (root@53b78b4ae1b1) (gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1)) #153 SMP Sun May 10 03:15:58 CST 2026 (KYLINOS 5.4.18-164.153-generic 5.4.18-164)
Jun 23 16:38:12 dsd-pc realtek-usb-wifi: Device(1d6b:0002) insert...
J

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] usb-audio: Fix boot-time crackling for Generic USB Audio device
  2026-07-14  1:58   ` Zhang Heng
@ 2026-07-14  7:40     ` Takashi Iwai
  2026-07-14 13:02       ` Zhang Heng
  0 siblings, 1 reply; 8+ messages in thread
From: Takashi Iwai @ 2026-07-14  7:40 UTC (permalink / raw)
  To: Zhang Heng
  Cc: Gordon Chen, perex, tiwai, kees, jussi, hulianqin, i, g,
	cryolitia, pav, linux-sound, linux-kernel, mathias.nyman

On Tue, 14 Jul 2026 03:58:08 +0200,
Zhang Heng wrote:
> 
> > On Mon, Jul 13, 2026 at 04:10:48PM +0800, Zhang Heng wrote:
> >> +		/* Generic USB Audio (0x1e0b:d01e): use SIA for consistent scheduling */
> >> +		if (ep->chip->usb_id == USB_ID(0x1e0b, 0xd01e))
> >> +			u->urb->transfer_flags |= URB_ISO_ASAP;
> > Not a maintainer, just a bystander who was Cc'd -- two small notes on the
> > form of the patch, plus one question I can't answer myself.
> > 
> > A per-device usb_id comparison in the endpoint.c fast path seems like the
> > kind of thing the quirk_flags_table in quirks.c exists to avoid. Would a
> > QUIRK_FLAG_ISO_ASAP (set in the table, tested here as
> > chip->quirk_flags & QUIRK_FLAG_ISO_ASAP) work for you? It keeps endpoint.c
> > device-agnostic, and the next device with the same symptom becomes a
> > one-line table entry rather than another if.
> First of all, let me clarify: this issue occurs when there is startup music,
> but it plays normally after entering the system. There is a heavy creaking
> sound when the system is turned on here. Based on the information from dmesg
> and syslog, there are a large number of xhci hcd frame synchronization
> failures. I tried adding URB_ISO_ASAP here, and it will be much better,
> with only a little noise.

OK, but it still makes sense to deal URB_ISO_ASAP workaround more
generically.

> >> +	if (ep->chip->usb_id == USB_ID(0x1e0b, 0xd01e) &&
> >> +	    ep->type == SND_USB_ENDPOINT_TYPE_SYNC)
> >> +		ep->skip_packets = 4;
> > The block immediately above this one already does exactly
> > "type == SND_USB_ENDPOINT_TYPE_SYNC -> skip_packets = 4"; adding the ID to
> > that condition would avoid the duplicate if. Also, the changelog doesn't
> > say what this hunk contributes on its own -- is URB_ISO_ASAP alone
> > insufficient, and if so, what does skipping the first 4 sync packets fix
> > that ASAP doesn't? Right now the two changes are indistinguishable in the
> > commit message, and skip_packets = 4 reads as belt-and-braces.
> As mentioned above, there is still a bit of noise when only adding
> URB_ISO_ASAP,
> 
> but skip-packets=4 can solve this problem.

Well, one missing thing is to understand why this fixes.
Originally, the skip_packets=4 for Playback Design devices was
introduced for bogus feedback packets at the start of the stream long
time ago.  But that's the only known device that needs it.  Does your
device send also 4 bogus packets?

The skip_packets=16 for M-Audio devices are rather for avoiding the
latency.  And, speaking of latency, I have a patch for the lowlatency
support of implicit fb mode, but never had a test environment.
Could you check the patch below and see the patch below has any
positive/negative influence?  Just to be sure.


thanks,

Takashi

-- 8< --
index 682b6c1fe76b..6d144e39a849 100644
--- a/sound/usb/pcm.c
+++ b/sound/usb/pcm.c
@@ -265,6 +265,7 @@ int snd_usb_init_pitch(struct snd_usb_audio *chip,
 	return 0;
 }
 
+/* stop both data and sync endpoints */
 static bool stop_endpoints(struct snd_usb_substream *subs, bool keep_pending)
 {
 	bool stopped = 0;
@@ -280,6 +281,24 @@ static bool stop_endpoints(struct snd_usb_substream *subs, bool keep_pending)
 	return stopped;
 }
 
+/* only start sync endpoint */
+static int start_sync_endpoint(struct snd_usb_substream *subs)
+{
+	int err;
+
+	if (subs->sync_endpoint &&
+	    !test_and_set_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags)) {
+		err = snd_usb_endpoint_start(subs->sync_endpoint);
+		if (err < 0) {
+			clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags);
+			return err;
+		}
+	}
+
+	return 0;
+}
+
+/* start both data and sync endpoints */
 static int start_endpoints(struct snd_usb_substream *subs)
 {
 	int err;
@@ -295,14 +314,9 @@ static int start_endpoints(struct snd_usb_substream *subs)
 		}
 	}
 
-	if (subs->sync_endpoint &&
-	    !test_and_set_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags)) {
-		err = snd_usb_endpoint_start(subs->sync_endpoint);
-		if (err < 0) {
-			clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags);
-			goto error;
-		}
-	}
+	err = start_sync_endpoint(subs);
+	if (err < 0)
+		goto error;
 
 	return 0;
 
@@ -656,12 +670,16 @@ static int lowlatency_playback_available(struct snd_pcm_runtime *runtime,
 		return false;
 	if (in_free_wheeling_mode(runtime))
 		return false;
-	/* implicit feedback mode has own operation mode */
-	if (snd_usb_endpoint_implicit_feedback_sink(subs->data_endpoint))
-		return false;
 	return true;
 }
 
+/* return true if it's a normal playback (not in implicit fb) */
+static bool is_normal_lowlatency_playback(struct snd_usb_substream *subs)
+{
+	return subs->lowlatency_playback &&
+		!snd_usb_endpoint_implicit_feedback_sink(subs->data_endpoint);
+}
+
 /*
  * prepare callback
  *
@@ -709,9 +727,11 @@ static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
 	runtime->delay = 0;
 
 	subs->lowlatency_playback = lowlatency_playback_available(runtime, subs);
-	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
-	    !subs->lowlatency_playback) {
-		ret = start_endpoints(subs);
+	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
+		if (!subs->lowlatency_playback)
+			ret = start_endpoints(subs);
+		else if (snd_usb_endpoint_implicit_feedback_sink(subs->data_endpoint))
+			ret = start_sync_endpoint(subs);
 		/* if XRUN happens at starting streams (possibly with implicit
 		 * fb case), restart again, but only try once.
 		 */
@@ -1539,7 +1559,7 @@ static int prepare_playback_urb(struct snd_usb_substream *subs,
 		frame_limit = subs->frame_limit + ep->max_urb_frames;
 		transfer_done = subs->transfer_done;
 
-		if (subs->lowlatency_playback &&
+		if (is_normal_lowlatency_playback(subs) &&
 		    runtime->state != SNDRV_PCM_STATE_DRAINING) {
 			unsigned int hwptr = subs->hwptr_done / stride;
 
@@ -1625,7 +1645,8 @@ static int prepare_playback_urb(struct snd_usb_substream *subs,
 			subs->trigger_tstamp_pending_update = false;
 		}
 
-		if (period_elapsed && !subs->running && subs->lowlatency_playback) {
+		if (period_elapsed && !subs->running &&
+		    is_normal_lowlatency_playback(subs)) {
 			subs->period_elapsed_pending = 1;
 			period_elapsed = 0;
 		}
@@ -1677,7 +1698,7 @@ static int snd_usb_pcm_playback_ack(struct snd_pcm_substream *substream)
 	struct snd_usb_substream *subs = substream->runtime->private_data;
 	struct snd_usb_endpoint *ep;
 
-	if (!subs->lowlatency_playback || !subs->running)
+	if (!is_normal_lowlatency_playback(subs) || !subs->running)
 		return 0;
 	ep = subs->data_endpoint;
 	if (!ep)
@@ -1705,6 +1726,7 @@ static int snd_usb_substream_playback_trigger(struct snd_pcm_substream *substrea
 					      prepare_playback_urb,
 					      retire_playback_urb,
 					      subs);
+		/* start EPs for both normal and implicit-fb modes */
 		if (subs->lowlatency_playback &&
 		    cmd == SNDRV_PCM_TRIGGER_START) {
 			if (in_free_wheeling_mode(substream->runtime))

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH] usb-audio: Fix boot-time crackling for Generic USB Audio device
  2026-07-14  7:40     ` Takashi Iwai
@ 2026-07-14 13:02       ` Zhang Heng
  2026-07-14 13:38         ` Takashi Iwai
  0 siblings, 1 reply; 8+ messages in thread
From: Zhang Heng @ 2026-07-14 13:02 UTC (permalink / raw)
  To: Takashi Iwai
  Cc: Gordon Chen, perex, tiwai, kees, jussi, hulianqin, i, g,
	cryolitia, pav, linux-sound, linux-kernel, mathias.nyman

> On Tue, 14 Jul 2026 03:58:08 +0200,
> Zhang Heng wrote:
>>> On Mon, Jul 13, 2026 at 04:10:48PM +0800, Zhang Heng wrote:
>>>> +		/* Generic USB Audio (0x1e0b:d01e): use SIA for consistent scheduling */
>>>> +		if (ep->chip->usb_id == USB_ID(0x1e0b, 0xd01e))
>>>> +			u->urb->transfer_flags |= URB_ISO_ASAP;
>>> Not a maintainer, just a bystander who was Cc'd -- two small notes on the
>>> form of the patch, plus one question I can't answer myself.
>>>
>>> A per-device usb_id comparison in the endpoint.c fast path seems like the
>>> kind of thing the quirk_flags_table in quirks.c exists to avoid. Would a
>>> QUIRK_FLAG_ISO_ASAP (set in the table, tested here as
>>> chip->quirk_flags & QUIRK_FLAG_ISO_ASAP) work for you? It keeps endpoint.c
>>> device-agnostic, and the next device with the same symptom becomes a
>>> one-line table entry rather than another if.
>> First of all, let me clarify: this issue occurs when there is startup music,
>> but it plays normally after entering the system. There is a heavy creaking
>> sound when the system is turned on here. Based on the information from dmesg
>> and syslog, there are a large number of xhci hcd frame synchronization
>> failures. I tried adding URB_ISO_ASAP here, and it will be much better,
>> with only a little noise.
> OK, but it still makes sense to deal URB_ISO_ASAP workaround more
> generically.
>
>>>> +	if (ep->chip->usb_id == USB_ID(0x1e0b, 0xd01e) &&
>>>> +	    ep->type == SND_USB_ENDPOINT_TYPE_SYNC)
>>>> +		ep->skip_packets = 4;
>>> The block immediately above this one already does exactly
>>> "type == SND_USB_ENDPOINT_TYPE_SYNC -> skip_packets = 4"; adding the ID to
>>> that condition would avoid the duplicate if. Also, the changelog doesn't
>>> say what this hunk contributes on its own -- is URB_ISO_ASAP alone
>>> insufficient, and if so, what does skipping the first 4 sync packets fix
>>> that ASAP doesn't? Right now the two changes are indistinguishable in the
>>> commit message, and skip_packets = 4 reads as belt-and-braces.
>> As mentioned above, there is still a bit of noise when only adding
>> URB_ISO_ASAP,
>>
>> but skip-packets=4 can solve this problem.
> Well, one missing thing is to understand why this fixes.
> Originally, the skip_packets=4 for Playback Design devices was
> introduced for bogus feedback packets at the start of the stream long
> time ago.  But that's the only known device that needs it.  Does your
> device send also 4 bogus packets?
>
> The skip_packets=16 for M-Audio devices are rather for avoiding the
> latency.  And, speaking of latency, I have a patch for the lowlatency
> support of implicit fb mode, but never had a test environment.
> Could you check the patch below and see the patch below has any
> positive/negative influence?  Just to be sure.
>
>
> thanks,
>
> Takashi
>
> -- 8< --
> index 682b6c1fe76b..6d144e39a849 100644
> --- a/sound/usb/pcm.c
> +++ b/sound/usb/pcm.c
> @@ -265,6 +265,7 @@ int snd_usb_init_pitch(struct snd_usb_audio *chip,
>   	return 0;
>   }
>   
> +/* stop both data and sync endpoints */
>   static bool stop_endpoints(struct snd_usb_substream *subs, bool keep_pending)
>   {
>   	bool stopped = 0;
> @@ -280,6 +281,24 @@ static bool stop_endpoints(struct snd_usb_substream *subs, bool keep_pending)
>   	return stopped;
>   }
>   
> +/* only start sync endpoint */
> +static int start_sync_endpoint(struct snd_usb_substream *subs)
> +{
> +	int err;
> +
> +	if (subs->sync_endpoint &&
> +	    !test_and_set_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags)) {
> +		err = snd_usb_endpoint_start(subs->sync_endpoint);
> +		if (err < 0) {
> +			clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags);
> +			return err;
> +		}
> +	}
> +
> +	return 0;
> +}
> +
> +/* start both data and sync endpoints */
>   static int start_endpoints(struct snd_usb_substream *subs)
>   {
>   	int err;
> @@ -295,14 +314,9 @@ static int start_endpoints(struct snd_usb_substream *subs)
>   		}
>   	}
>   
> -	if (subs->sync_endpoint &&
> -	    !test_and_set_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags)) {
> -		err = snd_usb_endpoint_start(subs->sync_endpoint);
> -		if (err < 0) {
> -			clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags);
> -			goto error;
> -		}
> -	}
> +	err = start_sync_endpoint(subs);
> +	if (err < 0)
> +		goto error;
>   
>   	return 0;
>   
> @@ -656,12 +670,16 @@ static int lowlatency_playback_available(struct snd_pcm_runtime *runtime,
>   		return false;
>   	if (in_free_wheeling_mode(runtime))
>   		return false;
> -	/* implicit feedback mode has own operation mode */
> -	if (snd_usb_endpoint_implicit_feedback_sink(subs->data_endpoint))
> -		return false;
>   	return true;
>   }
>   
> +/* return true if it's a normal playback (not in implicit fb) */
> +static bool is_normal_lowlatency_playback(struct snd_usb_substream *subs)
> +{
> +	return subs->lowlatency_playback &&
> +		!snd_usb_endpoint_implicit_feedback_sink(subs->data_endpoint);
> +}
> +
>   /*
>    * prepare callback
>    *
> @@ -709,9 +727,11 @@ static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
>   	runtime->delay = 0;
>   
>   	subs->lowlatency_playback = lowlatency_playback_available(runtime, subs);
> -	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
> -	    !subs->lowlatency_playback) {
> -		ret = start_endpoints(subs);
> +	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
> +		if (!subs->lowlatency_playback)
> +			ret = start_endpoints(subs);
> +		else if (snd_usb_endpoint_implicit_feedback_sink(subs->data_endpoint))
> +			ret = start_sync_endpoint(subs);
>   		/* if XRUN happens at starting streams (possibly with implicit
>   		 * fb case), restart again, but only try once.
>   		 */
> @@ -1539,7 +1559,7 @@ static int prepare_playback_urb(struct snd_usb_substream *subs,
>   		frame_limit = subs->frame_limit + ep->max_urb_frames;
>   		transfer_done = subs->transfer_done;
>   
> -		if (subs->lowlatency_playback &&
> +		if (is_normal_lowlatency_playback(subs) &&
>   		    runtime->state != SNDRV_PCM_STATE_DRAINING) {
>   			unsigned int hwptr = subs->hwptr_done / stride;
>   
> @@ -1625,7 +1645,8 @@ static int prepare_playback_urb(struct snd_usb_substream *subs,
>   			subs->trigger_tstamp_pending_update = false;
>   		}
>   
> -		if (period_elapsed && !subs->running && subs->lowlatency_playback) {
> +		if (period_elapsed && !subs->running &&
> +		    is_normal_lowlatency_playback(subs)) {
>   			subs->period_elapsed_pending = 1;
>   			period_elapsed = 0;
>   		}
> @@ -1677,7 +1698,7 @@ static int snd_usb_pcm_playback_ack(struct snd_pcm_substream *substream)
>   	struct snd_usb_substream *subs = substream->runtime->private_data;
>   	struct snd_usb_endpoint *ep;
>   
> -	if (!subs->lowlatency_playback || !subs->running)
> +	if (!is_normal_lowlatency_playback(subs) || !subs->running)
>   		return 0;
>   	ep = subs->data_endpoint;
>   	if (!ep)
> @@ -1705,6 +1726,7 @@ static int snd_usb_substream_playback_trigger(struct snd_pcm_substream *substrea
>   					      prepare_playback_urb,
>   					      retire_playback_urb,
>   					      subs);
> +		/* start EPs for both normal and implicit-fb modes */
>   		if (subs->lowlatency_playback &&
>   		    cmd == SNDRV_PCM_TRIGGER_START) {
>   			if (in_free_wheeling_mode(substream->runtime))
Regarding your patch, I am unable to test it because my current
kernel is based on a certain stable version of 5.4. The
differences in pcm.c are too significant, so the patch cannot
be applied directly.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] usb-audio: Fix boot-time crackling for Generic USB Audio device
  2026-07-13 15:05   ` Takashi Iwai
@ 2026-07-14 13:09     ` Zhang Heng
  0 siblings, 0 replies; 8+ messages in thread
From: Zhang Heng @ 2026-07-14 13:09 UTC (permalink / raw)
  To: Takashi Iwai, Gordon Chen
  Cc: perex, tiwai, kees, jussi, hulianqin, i, g, cryolitia, pav,
	linux-sound, linux-kernel

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



[-- Attachment #2: v2-0001-ALSA-usb-audio-Fix-boot-time-crackling-for-Generic-U.patch --]
[-- Type: text/x-patch, Size: 5241 bytes --]

From 11c25cb49a0a233fda643b2eb6c0bca7bc726d37 Mon Sep 17 00:00:00 2001
From: Zhang Heng <zhangheng@kylinos.cn>
Date: Tue, 14 Jul 2026 17:55:54 +0800
Subject: [PATCH] ALSA: usb-audio: Fix boot-time crackling for Generic USB
 Audio device

The Generic USB Audio device (0x1e0b:d01e) produces crackling noise during
system boot when the boot music plays. The issue disappears once the system
has fully started.

Kernel logs show xhci-ring warnings when the device initializes:
[    9.654586] xhci_hcd 0000:03:00.3: Frame ID 644 (reg 5154, index 13) beyond range (645, 1539)
[    9.654589] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead
[    9.655053] xhci_hcd 0000:03:00.3: Frame ID 644 (reg 5158, index 14) beyond range (645, 1539)
[    9.655055] xhci_hcd 0000:03:00.3: Ignore frame ID field, use SIA bit instead

These warnings indicate that xhci_get_isoc_frame_id() returns -EINVAL for
TDs at index > 0 because their calculated Frame IDs become stale before
validation completes. This causes a fallback to SIA mode for those TDs,
while index=0 TD uses direct Frame ID. The resulting mixed scheduling within
the same data endpoint causes audio data misalignment and crackling.

Fix by adding QUIRK_FLAG_ISO_ASAP and setting URB_ISO_ASAP flag for the
data endpoint. This ensures all TDs use consistent SIA scheduling. Also add
a quirk to skip the first 4 sync packets, as some devices send incorrect
feedback data during stream startup.

Using the quirk mechanism keeps endpoint.c device-agnostic and allows easy
addition of new devices with the same symptom.

Signed-off-by: Zhang Heng <zhangheng@kylinos.cn>
---
v1->v2:
 
- Replace hardcoded USB ID check in endpoint.c with QUIRK_FLAG_ISO_ASAP
- Add QUIRK_TYPE_ISO_ASAP = 31 enum and QUIRK_FLAG_ISO_ASAP macro in usbaudio.h
- Add device entry to quirk_flags_table in quirks.c for Generic USB Audio (0x1e0b:d01e)
- Add ISO_ASAP string entry to snd_usb_audio_quirk_flag_names
- Add documentation comment for QUIRK_FLAG_ISO_ASAP in usbaudio.h
- Keep endpoint.c device-agnostic, allowing easy addition of new devices

 sound/usb/endpoint.c | 2 ++
 sound/usb/quirks.c   | 8 ++++++++
 sound/usb/usbaudio.h | 8 ++++++++
 3 files changed, 18 insertions(+)

diff --git a/sound/usb/endpoint.c b/sound/usb/endpoint.c
index 24cd7692bd01..155b3858dac9 100644
--- a/sound/usb/endpoint.c
+++ b/sound/usb/endpoint.c
@@ -1256,6 +1256,8 @@ static int data_ep_set_params(struct snd_usb_endpoint *ep)
 			goto out_of_memory;
 		u->urb->pipe = ep->pipe;
 		u->urb->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
+		if (ep->chip->quirk_flags & QUIRK_FLAG_ISO_ASAP)
+			u->urb->transfer_flags |= URB_ISO_ASAP;
 		u->urb->interval = 1 << ep->datainterval;
 		u->urb->context = u;
 		u->urb->complete = snd_complete_urb;
diff --git a/sound/usb/quirks.c b/sound/usb/quirks.c
index 2949a0d2d961..f5e5b662bfd3 100644
--- a/sound/usb/quirks.c
+++ b/sound/usb/quirks.c
@@ -1938,6 +1938,10 @@ void snd_usb_endpoint_start_quirk(struct snd_usb_endpoint *ep)
 	    ep->type == SND_USB_ENDPOINT_TYPE_SYNC)
 		ep->skip_packets = 4;
 
+	if (ep->chip->usb_id == USB_ID(0x1e0b, 0xd01e) &&
+	    ep->type == SND_USB_ENDPOINT_TYPE_SYNC)
+		ep->skip_packets = 4;
+
 	/*
 	 * M-Audio Fast Track C400/C600 - when packets are not skipped, real
 	 * world latency varies by approx. +/- 50 frames (at 96kHz) each time
@@ -2582,6 +2586,9 @@ static const struct usb_audio_quirk_flags_table quirk_flags_table[] = {
 	VENDOR_FLG(0xc502, /* HiBy devices */
 		   QUIRK_FLAG_DSD_RAW),
 
+	DEVICE_FLG(0x1e0b, 0xd01e, /* Generic USB Audio */
+		   QUIRK_FLAG_ISO_ASAP),
+
 	{} /* terminator */
 };
 
@@ -2620,6 +2627,7 @@ static const char *const snd_usb_audio_quirk_flag_names[] = {
 	QUIRK_STRING_ENTRY(MIXER_CAPTURE_LINEAR_VOL),
 	QUIRK_STRING_ENTRY(IFB_SILENCE_ON_EMPTY),
 	QUIRK_STRING_ENTRY(MIXER_GET_CUR_BROKEN),
+	QUIRK_STRING_ENTRY(ISO_ASAP),
 	NULL
 };
 
diff --git a/sound/usb/usbaudio.h b/sound/usb/usbaudio.h
index e26f9092417e..907211fd5c3e 100644
--- a/sound/usb/usbaudio.h
+++ b/sound/usb/usbaudio.h
@@ -254,6 +254,12 @@ extern bool snd_usb_skip_validation;
  *  check being non-fatal and only disabling GET_CUR instead of the whole mixer.
  *  The current volume will then be provided by the internal cache that stores
  *  the last set volume
+ * QUIRK_FLAG_ISO_ASAP
+ *  Enable URB_ISO_ASAP flag for isochronous URBs. This ensures consistent
+ *  SIA (Schedule In Advance) scheduling for all TDs, avoiding mixed
+ *  scheduling modes that can cause audible crackling at boot time. Needed by
+ *  devices where xHCI Frame ID staleness for TDs at index > 0 causes
+ *  mixed explicit Frame IDs with SIA.
  */
 
 enum {
@@ -288,6 +294,7 @@ enum {
 	QUIRK_TYPE_MIXER_CAPTURE_LINEAR_VOL	= 28,
 	QUIRK_TYPE_IFB_SILENCE_ON_EMPTY		= 29,
 	QUIRK_TYPE_MIXER_GET_CUR_BROKEN		= 30,
+	QUIRK_TYPE_ISO_ASAP			= 31,
 /* Please also edit snd_usb_audio_quirk_flag_names */
 };
 
@@ -324,5 +331,6 @@ enum {
 #define QUIRK_FLAG_MIXER_CAPTURE_LINEAR_VOL	QUIRK_FLAG(MIXER_CAPTURE_LINEAR_VOL)
 #define QUIRK_FLAG_IFB_SILENCE_ON_EMPTY		QUIRK_FLAG(IFB_SILENCE_ON_EMPTY)
 #define QUIRK_FLAG_MIXER_GET_CUR_BROKEN		QUIRK_FLAG(MIXER_GET_CUR_BROKEN)
+#define QUIRK_FLAG_ISO_ASAP			QUIRK_FLAG(ISO_ASAP)
 
 #endif /* __USBAUDIO_H */
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH] usb-audio: Fix boot-time crackling for Generic USB Audio device
  2026-07-14 13:02       ` Zhang Heng
@ 2026-07-14 13:38         ` Takashi Iwai
  0 siblings, 0 replies; 8+ messages in thread
From: Takashi Iwai @ 2026-07-14 13:38 UTC (permalink / raw)
  To: Zhang Heng
  Cc: Takashi Iwai, Gordon Chen, perex, tiwai, kees, jussi, hulianqin,
	i, g, cryolitia, pav, linux-sound, linux-kernel, mathias.nyman

On Tue, 14 Jul 2026 15:02:09 +0200,
Zhang Heng wrote:
> 
> > On Tue, 14 Jul 2026 03:58:08 +0200,
> > Zhang Heng wrote:
> >>> On Mon, Jul 13, 2026 at 04:10:48PM +0800, Zhang Heng wrote:
> >>>> +		/* Generic USB Audio (0x1e0b:d01e): use SIA for consistent scheduling */
> >>>> +		if (ep->chip->usb_id == USB_ID(0x1e0b, 0xd01e))
> >>>> +			u->urb->transfer_flags |= URB_ISO_ASAP;
> >>> Not a maintainer, just a bystander who was Cc'd -- two small notes on the
> >>> form of the patch, plus one question I can't answer myself.
> >>> 
> >>> A per-device usb_id comparison in the endpoint.c fast path seems like the
> >>> kind of thing the quirk_flags_table in quirks.c exists to avoid. Would a
> >>> QUIRK_FLAG_ISO_ASAP (set in the table, tested here as
> >>> chip->quirk_flags & QUIRK_FLAG_ISO_ASAP) work for you? It keeps endpoint.c
> >>> device-agnostic, and the next device with the same symptom becomes a
> >>> one-line table entry rather than another if.
> >> First of all, let me clarify: this issue occurs when there is startup music,
> >> but it plays normally after entering the system. There is a heavy creaking
> >> sound when the system is turned on here. Based on the information from dmesg
> >> and syslog, there are a large number of xhci hcd frame synchronization
> >> failures. I tried adding URB_ISO_ASAP here, and it will be much better,
> >> with only a little noise.
> > OK, but it still makes sense to deal URB_ISO_ASAP workaround more
> > generically.
> > 
> >>>> +	if (ep->chip->usb_id == USB_ID(0x1e0b, 0xd01e) &&
> >>>> +	    ep->type == SND_USB_ENDPOINT_TYPE_SYNC)
> >>>> +		ep->skip_packets = 4;
> >>> The block immediately above this one already does exactly
> >>> "type == SND_USB_ENDPOINT_TYPE_SYNC -> skip_packets = 4"; adding the ID to
> >>> that condition would avoid the duplicate if. Also, the changelog doesn't
> >>> say what this hunk contributes on its own -- is URB_ISO_ASAP alone
> >>> insufficient, and if so, what does skipping the first 4 sync packets fix
> >>> that ASAP doesn't? Right now the two changes are indistinguishable in the
> >>> commit message, and skip_packets = 4 reads as belt-and-braces.
> >> As mentioned above, there is still a bit of noise when only adding
> >> URB_ISO_ASAP,
> >> 
> >> but skip-packets=4 can solve this problem.
> > Well, one missing thing is to understand why this fixes.
> > Originally, the skip_packets=4 for Playback Design devices was
> > introduced for bogus feedback packets at the start of the stream long
> > time ago.  But that's the only known device that needs it.  Does your
> > device send also 4 bogus packets?
> > 
> > The skip_packets=16 for M-Audio devices are rather for avoiding the
> > latency.  And, speaking of latency, I have a patch for the lowlatency
> > support of implicit fb mode, but never had a test environment.
> > Could you check the patch below and see the patch below has any
> > positive/negative influence?  Just to be sure.
> > 
> > 
> > thanks,
> > 
> > Takashi
> > 
> > -- 8< --
> > index 682b6c1fe76b..6d144e39a849 100644
> > --- a/sound/usb/pcm.c
> > +++ b/sound/usb/pcm.c
> > @@ -265,6 +265,7 @@ int snd_usb_init_pitch(struct snd_usb_audio *chip,
> >   	return 0;
> >   }
> >   +/* stop both data and sync endpoints */
> >   static bool stop_endpoints(struct snd_usb_substream *subs, bool keep_pending)
> >   {
> >   	bool stopped = 0;
> > @@ -280,6 +281,24 @@ static bool stop_endpoints(struct snd_usb_substream *subs, bool keep_pending)
> >   	return stopped;
> >   }
> >   +/* only start sync endpoint */
> > +static int start_sync_endpoint(struct snd_usb_substream *subs)
> > +{
> > +	int err;
> > +
> > +	if (subs->sync_endpoint &&
> > +	    !test_and_set_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags)) {
> > +		err = snd_usb_endpoint_start(subs->sync_endpoint);
> > +		if (err < 0) {
> > +			clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags);
> > +			return err;
> > +		}
> > +	}
> > +
> > +	return 0;
> > +}
> > +
> > +/* start both data and sync endpoints */
> >   static int start_endpoints(struct snd_usb_substream *subs)
> >   {
> >   	int err;
> > @@ -295,14 +314,9 @@ static int start_endpoints(struct snd_usb_substream *subs)
> >   		}
> >   	}
> >   -	if (subs->sync_endpoint &&
> > -	    !test_and_set_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags)) {
> > -		err = snd_usb_endpoint_start(subs->sync_endpoint);
> > -		if (err < 0) {
> > -			clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags);
> > -			goto error;
> > -		}
> > -	}
> > +	err = start_sync_endpoint(subs);
> > +	if (err < 0)
> > +		goto error;
> >     	return 0;
> >   @@ -656,12 +670,16 @@ static int
> > lowlatency_playback_available(struct snd_pcm_runtime *runtime,
> >   		return false;
> >   	if (in_free_wheeling_mode(runtime))
> >   		return false;
> > -	/* implicit feedback mode has own operation mode */
> > -	if (snd_usb_endpoint_implicit_feedback_sink(subs->data_endpoint))
> > -		return false;
> >   	return true;
> >   }
> >   +/* return true if it's a normal playback (not in implicit fb) */
> > +static bool is_normal_lowlatency_playback(struct snd_usb_substream *subs)
> > +{
> > +	return subs->lowlatency_playback &&
> > +		!snd_usb_endpoint_implicit_feedback_sink(subs->data_endpoint);
> > +}
> > +
> >   /*
> >    * prepare callback
> >    *
> > @@ -709,9 +727,11 @@ static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
> >   	runtime->delay = 0;
> >     	subs->lowlatency_playback =
> > lowlatency_playback_available(runtime, subs);
> > -	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
> > -	    !subs->lowlatency_playback) {
> > -		ret = start_endpoints(subs);
> > +	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
> > +		if (!subs->lowlatency_playback)
> > +			ret = start_endpoints(subs);
> > +		else if (snd_usb_endpoint_implicit_feedback_sink(subs->data_endpoint))
> > +			ret = start_sync_endpoint(subs);
> >   		/* if XRUN happens at starting streams (possibly with implicit
> >   		 * fb case), restart again, but only try once.
> >   		 */
> > @@ -1539,7 +1559,7 @@ static int prepare_playback_urb(struct snd_usb_substream *subs,
> >   		frame_limit = subs->frame_limit + ep->max_urb_frames;
> >   		transfer_done = subs->transfer_done;
> >   -		if (subs->lowlatency_playback &&
> > +		if (is_normal_lowlatency_playback(subs) &&
> >   		    runtime->state != SNDRV_PCM_STATE_DRAINING) {
> >   			unsigned int hwptr = subs->hwptr_done / stride;
> >   @@ -1625,7 +1645,8 @@ static int prepare_playback_urb(struct
> > snd_usb_substream *subs,
> >   			subs->trigger_tstamp_pending_update = false;
> >   		}
> >   -		if (period_elapsed && !subs->running &&
> > subs->lowlatency_playback) {
> > +		if (period_elapsed && !subs->running &&
> > +		    is_normal_lowlatency_playback(subs)) {
> >   			subs->period_elapsed_pending = 1;
> >   			period_elapsed = 0;
> >   		}
> > @@ -1677,7 +1698,7 @@ static int snd_usb_pcm_playback_ack(struct snd_pcm_substream *substream)
> >   	struct snd_usb_substream *subs = substream->runtime->private_data;
> >   	struct snd_usb_endpoint *ep;
> >   -	if (!subs->lowlatency_playback || !subs->running)
> > +	if (!is_normal_lowlatency_playback(subs) || !subs->running)
> >   		return 0;
> >   	ep = subs->data_endpoint;
> >   	if (!ep)
> > @@ -1705,6 +1726,7 @@ static int snd_usb_substream_playback_trigger(struct snd_pcm_substream *substrea
> >   					      prepare_playback_urb,
> >   					      retire_playback_urb,
> >   					      subs);
> > +		/* start EPs for both normal and implicit-fb modes */
> >   		if (subs->lowlatency_playback &&
> >   		    cmd == SNDRV_PCM_TRIGGER_START) {
> >   			if (in_free_wheeling_mode(substream->runtime))
> Regarding your patch, I am unable to test it because my current
> kernel is based on a certain stable version of 5.4. The
> differences in pcm.c are too significant, so the patch cannot
> be applied directly.

Please verify whether the problem really exists with the latest
kernel at first.  At least we have to be sure about the workaround
with URB_ISO_ASAP for the latest kernel before taking to the upstream.


thanks,

Takashi

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2026-07-14 13:38 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-13  8:10 [PATCH] usb-audio: Fix boot-time crackling for Generic USB Audio device Zhang Heng
2026-07-13 13:20 ` Gordon Chen
2026-07-13 15:05   ` Takashi Iwai
2026-07-14 13:09     ` Zhang Heng
2026-07-14  1:58   ` Zhang Heng
2026-07-14  7:40     ` Takashi Iwai
2026-07-14 13:02       ` Zhang Heng
2026-07-14 13:38         ` Takashi Iwai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.