Search Results (Searched for: XHC)
14 May 2024 21:07
Replied by westhedge on topic XHC-WHB04B-6 and LinuxCNC 2.9.1
XHC-WHB04B-6 and LinuxCNC 2.9.1
Category: Installing LinuxCNC
Therein lies my confusion. When I read the basic hal linuxcnc.org/docs/2.6/html/hal/basic_hal.html it says "The same signal-name can be used in multiple net commands to connect additional pins, as long as the rules above are obeyed." (then there's a diagram showing the flow)
My understanding (which may be incorrect?):
machine.is-on (signal)
halui.machine.is-on (signal reader)
whb.halui.machine.is-on (signal reader)
And the man page (their example) states:
"Since the signal xStep contains the value of stepgen.0.out (the source) you can use the same signal again to send the value to another reader. To do this just use the signal with the readers on another line."
So my first attempt was to do just that, but it did not work as I'd expected. Am I incorrect about the nature of these pins?
e.g.
net a b1 b2
does not appear to be the same as
net a b1
net a b2
As I say - maybe my understanding of these pins is flawed. New to the hal concept, and I'm thinking about it like logic circuit wiring.
My understanding (which may be incorrect?):
machine.is-on (signal)
halui.machine.is-on (signal reader)
whb.halui.machine.is-on (signal reader)
And the man page (their example) states:
"Since the signal xStep contains the value of stepgen.0.out (the source) you can use the same signal again to send the value to another reader. To do this just use the signal with the readers on another line."
So my first attempt was to do just that, but it did not work as I'd expected. Am I incorrect about the nature of these pins?
e.g.
net a b1 b2
does not appear to be the same as
net a b1
net a b2
As I say - maybe my understanding of these pins is flawed. New to the hal concept, and I'm thinking about it like logic circuit wiring.
14 May 2024 20:48
Replied by tommylight on topic XHC-WHB04B-6 and LinuxCNC 2.9.1
XHC-WHB04B-6 and LinuxCNC 2.9.1
Category: Installing LinuxCNC
net = connect some pin to some other pin
machine.is-on = LinuxCNC machine on/off pin
halui.machine.is-on = hal UI meaning User interface machine on/off pin
whb.halui.machine.is-on = WHB "joystick" machine on/off pin
machine.is-on = LinuxCNC machine on/off pin
halui.machine.is-on = hal UI meaning User interface machine on/off pin
whb.halui.machine.is-on = WHB "joystick" machine on/off pin
14 May 2024 18:47
Replied by westhedge on topic XHC-WHB04B-6 and LinuxCNC 2.9.1
XHC-WHB04B-6 and LinuxCNC 2.9.1
Category: Installing LinuxCNC
Holy. Moly.
The issue plaguing me was NOT obvious AT ALL. It turns out the issue with spindle toggle (S-ON/OFF button) not toggling (only setting "on"), E-Stop (RESET button) not working, jog dial not working, yeah, they were actually all related and it speaks to something I wish someone could explain to me about HAL pin wiring.
The facts:
I used pncconf to generate my ini and hal files. In the main hal file, it wires up (among other things)
net machine-is-on halui.machine.is-on
However, in the sample XHC WHB04B file, there is a conflicting line:
net machine.is-on whb.halui.machine.is-on halui.machine.is-on
OK, says I, no problem, according to the HAL man page, signals are additive, so I changed that line to
net machine.is-on whb.halui.machine.is-on
thinking that the 2 pins would be connected through the 1 common signal. That's a big nope, and for the life of me I do not understand why. (maybe someday I'll have a lightbulb moment...)
The solution:
The key was to NOT change the sample XHC HAL, but to comment out the net line in the main config.
That was ridiculously difficult to sort out.
Why almost everything else worked on the pendant except for the dial still makes little sense to me. e.g. if the machine is in E-Stop, why should spindle on/off be allowed? Everywhere I've worked, the E-stop is a safety device, not a "some parts are safe" device.
The issue plaguing me was NOT obvious AT ALL. It turns out the issue with spindle toggle (S-ON/OFF button) not toggling (only setting "on"), E-Stop (RESET button) not working, jog dial not working, yeah, they were actually all related and it speaks to something I wish someone could explain to me about HAL pin wiring.
The facts:
I used pncconf to generate my ini and hal files. In the main hal file, it wires up (among other things)
net machine-is-on halui.machine.is-on
However, in the sample XHC WHB04B file, there is a conflicting line:
net machine.is-on whb.halui.machine.is-on halui.machine.is-on
OK, says I, no problem, according to the HAL man page, signals are additive, so I changed that line to
net machine.is-on whb.halui.machine.is-on
thinking that the 2 pins would be connected through the 1 common signal. That's a big nope, and for the life of me I do not understand why. (maybe someday I'll have a lightbulb moment...)
The solution:
The key was to NOT change the sample XHC HAL, but to comment out the net line in the main config.
That was ridiculously difficult to sort out.
Why almost everything else worked on the pendant except for the dial still makes little sense to me. e.g. if the machine is in E-Stop, why should spindle on/off be allowed? Everywhere I've worked, the E-stop is a safety device, not a "some parts are safe" device.
14 May 2024 16:40 - 14 May 2024 16:55
Replied by westhedge on topic XHC-WHB04B-6 and LinuxCNC 2.9.1
XHC-WHB04B-6 and LinuxCNC 2.9.1
Category: Installing LinuxCNC
The error below is just because I had the multiplier knob on "Lead" Still the pendant wheel does not increment count even if it's on a valid setting.
So I just noticed when I ran xhc-whb04b-6 -ue I am getting an error I do not understand when I spin the jog dial. Maybe there is something here?
in 0x04 10 00 00 90 11 04 10 delta 144 => | 04 | 10 | | | ( ) | X( ) | 4 | 10
pndnt failed to interpret axis code feed axisCode={�}
pndnt wheel total counts {counts=0 activeCounter=0 isLeadActive=0}
in 0x04 10 00 00 90 11 04 10 delta 144 => | 04 | 10 | | | ( ) | X( ) | 4 | 10
pndnt failed to interpret axis code feed axisCode={�}
pndnt wheel total counts {counts=0 activeCounter=0 isLeadActive=0}
14 May 2024 15:00
Replied by westhedge on topic XHC-WHB04B-6 and LinuxCNC 2.9.1
XHC-WHB04B-6 and LinuxCNC 2.9.1
Category: Installing LinuxCNC
I'm having the same problem as well. Seems this is a common problem with no obvious solution. Step count stays = 0 in halshow. I started with the pendant config file from linuxcnc.org/docs/stable/html/man/man1/xhc-whb04b-6.1.html
and modified it to fix the duplicated pin mappings (there were not too many)
I've tried the [HMOT](CARD0) change suggested. That doesn't work.
I've also tried all of the various other fixes from people posting on the forum to no avail.
I can see the jog dial send messages when I run xhc-whb04b-6 -ue so I'm certain the pendant is not a dud.
However when I run xhc-whb04b-6 -p I don't see any messages from the jog dial. Is this expected? I'm beginning to think maybe there is a bug in this version of the driver.
Linux 2.9.2 using 7i96s Relevant hal files attached.
and modified it to fix the duplicated pin mappings (there were not too many)
I've tried the [HMOT](CARD0) change suggested. That doesn't work.
I've also tried all of the various other fixes from people posting on the forum to no avail.
I can see the jog dial send messages when I run xhc-whb04b-6 -ue so I'm certain the pendant is not a dud.
However when I run xhc-whb04b-6 -p I don't see any messages from the jog dial. Is this expected? I'm beginning to think maybe there is a bug in this version of the driver.
Linux 2.9.2 using 7i96s Relevant hal files attached.
10 May 2024 21:28
Fatal Error After Computer Crash was created by Clarge249
Fatal Error After Computer Crash
Category: Installing LinuxCNC
We experienced a computer crash and now LinuxCNC is unable to load. Below is the error log and I've attached the ini and hal files.
Warning: Spoiler!
Print file information:
RUN_IN_PLACE=no
LINUXCNC_DIR=
LINUXCNC_BIN_DIR=/usr/bin
LINUXCNC_TCL_DIR=/usr/lib/tcltk/linuxcnc
LINUXCNC_SCRIPT_DIR=
LINUXCNC_RTLIB_DIR=/usr/lib/linuxcnc/modules
LINUXCNC_CONFIG_DIR=
LINUXCNC_LANG_DIR=/usr/share/linuxcnc/tcl/msgs
INIVAR=inivar
HALCMD=halcmd
LINUXCNC_EMCSH=/usr/bin/wish8.6
LINUXCNC - 2.7.15
Machine configuration directory is '/home/cncuser/linuxcnc/configs/GerberSabre408_Crafted1'
Machine configuration file is 'GerberSabre408_Crafted1.ini'
INIFILE=/home/cncuser/linuxcnc/configs/GerberSabre408_Crafted1/GerberSabre408_Crafted1.ini
PARAMETER_FILE=linuxcnc.var
TASK=milltask
HALUI=halui
DISPLAY=axis
Starting LinuxCNC...
Starting LinuxCNC server program: linuxcncsvr
Loading Real Time OS, RTAPI, and HAL_LIB modules
Starting LinuxCNC IO program: io
Starting HAL User Interface program: halui
Found file(REL): ./GerberSabre408_Crafted1.hal
hm2: loading Mesa HostMot2 driver version 0.15
hm2_pci: loading Mesa AnyIO HostMot2 driver version 0.7
hm2_pci: discovered 5i25 at 0000:03:00.0
hm2/hm2_5i25.0: Smart Serial Firmware Version 43
Board hm2_5i25.0.7i77.0.0 Hardware Mode 0 = standard
Board hm2_5i25.0.7i77.0.0 Software Mode 0 = input_output
Board hm2_5i25.0.7i77.0.0 Software Mode 1 = io_analog
Board hm2_5i25.0.7i77.0.0 Software Mode 2 = io_analog_fieldvoltage
Board hm2_5i25.0.7i77.0.0 Software Mode 3 = io_encoder_analog_fieldvoltage
Board hm2_5i25.0.7i77.0.1 Hardware Mode 0 = standard
Board hm2_5i25.0.7i77.0.1 Software Mode 0 = analogout_enables
hm2/hm2_5i25.0: 34 I/O Pins used:
hm2/hm2_5i25.0: IO Pin 000 (P3-01): IOPort
hm2/hm2_5i25.0: IO Pin 001 (P3-14): IOPort
hm2/hm2_5i25.0: IO Pin 002 (P3-02): IOPort
hm2/hm2_5i25.0: IO Pin 003 (P3-15): Smart Serial Interface #0, pin TxData1 (Output)
hm2/hm2_5i25.0: IO Pin 004 (P3-03): Smart Serial Interface #0, pin RxData1 (Input)
hm2/hm2_5i25.0: IO Pin 005 (P3-16): Smart Serial Interface #0, pin TxData0 (Output)
hm2/hm2_5i25.0: IO Pin 006 (P3-04): Smart Serial Interface #0, pin RxData0 (Input)
hm2/hm2_5i25.0: IO Pin 007 (P3-17): Muxed Encoder Select #0, pin Mux Select 0 (Output)
hm2/hm2_5i25.0: IO Pin 008 (P3-05): Muxed Encoder #0, pin Muxed A (Input)
hm2/hm2_5i25.0: IO Pin 009 (P3-06): Muxed Encoder #0, pin Muxed B (Input)
hm2/hm2_5i25.0: IO Pin 010 (P3-07): Muxed Encoder #0, pin Muxed Index (Input)
hm2/hm2_5i25.0: IO Pin 011 (P3-08): Muxed Encoder #1, pin Muxed A (Input)
hm2/hm2_5i25.0: IO Pin 012 (P3-09): Muxed Encoder #1, pin Muxed B (Input)
hm2/hm2_5i25.0: IO Pin 013 (P3-10): Muxed Encoder #1, pin Muxed Index (Input)
hm2/hm2_5i25.0: IO Pin 014 (P3-11): Muxed Encoder #2, pin Muxed A (Input)
hm2/hm2_5i25.0: IO Pin 015 (P3-12): Muxed Encoder #2, pin Muxed B (Input)
hm2/hm2_5i25.0: IO Pin 016 (P3-13): Muxed Encoder #2, pin Muxed Index (Input)
hm2/hm2_5i25.0: IO Pin 017 (P2-01): IOPort
hm2/hm2_5i25.0: IO Pin 018 (P2-14): IOPort
hm2/hm2_5i25.0: IO Pin 019 (P2-02): IOPort
hm2/hm2_5i25.0: IO Pin 020 (P2-15): IOPort
hm2/hm2_5i25.0: IO Pin 021 (P2-03): IOPort
hm2/hm2_5i25.0: IO Pin 022 (P2-16): IOPort
hm2/hm2_5i25.0: IO Pin 023 (P2-04): IOPort
hm2/hm2_5i25.0: IO Pin 024 (P2-17): IOPort
hm2/hm2_5i25.0: IO Pin 025 (P2-05): IOPort
hm2/hm2_5i25.0: IO Pin 026 (P2-06): IOPort
hm2/hm2_5i25.0: IO Pin 027 (P2-07): IOPort
hm2/hm2_5i25.0: IO Pin 028 (P2-08): IOPort
hm2/hm2_5i25.0: IO Pin 029 (P2-09): IOPort
hm2/hm2_5i25.0: IO Pin 030 (P2-10): IOPort
hm2/hm2_5i25.0: IO Pin 031 (P2-11): IOPort
hm2/hm2_5i25.0: IO Pin 032 (P2-12): IOPort
hm2/hm2_5i25.0: IO Pin 033 (P2-13): IOPort
hm2/hm2_5i25.0: registered
hm2_5i25.0: initialized AnyIO board at 0000:03:00.0
Found file(REL): ./custom.hal
Found file(REL): ./vc-p4s.hal
Shutting down and cleaning up LinuxCNC...
hm2_5i25.0: dropping AnyIO board at 0000:03:00.0
hm2/hm2_5i25.0: unregistered
hm2_pci: driver unloaded
hm2: unloading
Removing HAL_LIB, RTAPI, and Real Time OS modules
Removing NML shared memory segments
Debug file information:
Note: Using POSIX realtime
./vc-p4s.hal:2: Warning: File contains DOS-style line endings.
./vc-p4s.hal:25: Pin 'halui.jog.0.plus' was already linked to signal 'jog-x-pos'
1440
Stopping realtime threads
Unloading hal components
RTAPI_PCI: Unmapped 65536 bytes at 0x7fed93fe7000
Traceback (most recent call last):
File "/usr/bin/hal_manualtoolchange", line 66, in <module>
nf.start(app); nf.makecommand(app, "_", _)
File "/usr/lib/python2.7/dist-packages/nf.py", line 119, in start
source_lib_tcl(r, "support.tcl")
File "/usr/lib/python2.7/dist-packages/nf.py", line 111, in source_lib_tcl
r.tk.call("source", os.path.join(tcl_libdir, f))
KeyboardInterrupt
Note: Using POSIX realtime
Kernel message information:
[ 0.000000] microcode: microcode updated early to revision 0x28, date = 2019-11-12
[ 0.000000] Linux version 4.9.0-17-rt-amd64 (This email address is being protected from spambots. You need JavaScript enabled to view it.) (gcc version 6.3.0 20170516 (Debian 6.3.0-18+deb9u1) ) #1 SMP PREEMPT RT Debian 4.9.290-1 (2021-12-12)
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.9.0-17-rt-amd64 root=UUID=7db4c91d-478e-4fc6-9457-0538c6d6762b ro quiet usbcore.autosuspend=-1
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000d2180fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000d2181000-0x00000000d2187fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000d2188000-0x00000000d25befff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000d25bf000-0x00000000d29ecfff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000d29ed000-0x00000000d7ee3fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000d7ee4000-0x00000000d7ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000d8000000-0x00000000d875dfff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000d875e000-0x00000000d87fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000d8800000-0x00000000d8fadfff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000d8fae000-0x00000000d8ffffff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000d9000000-0x00000000da71bfff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000da71c000-0x00000000da7fffff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000da800000-0x00000000db7fcfff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000db7fd000-0x00000000dbffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000dd000000-0x00000000df1fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000021fdfffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.7 present.
[ 0.000000] DMI: Dell Inc. OptiPlex 3020/0WMJ54, BIOS A19 10/30/2018
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] e820: last_pfn = 0x21fe00 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-D3FFF write-protect
[ 0.000000] D4000-E7FFF uncachable
[ 0.000000] E8000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 0000000000 mask 7E00000000 write-back
[ 0.000000] 1 base 0200000000 mask 7FE0000000 write-back
[ 0.000000] 2 base 00E0000000 mask 7FE0000000 uncachable
[ 0.000000] 3 base 00DE000000 mask 7FFE000000 uncachable
[ 0.000000] 4 base 00DD000000 mask 7FFF000000 uncachable
[ 0.000000] 5 base 021FE00000 mask 7FFFE00000 uncachable
[ 0.000000] 6 disabled
[ 0.000000] 7 disabled
[ 0.000000] 8 disabled
[ 0.000000] 9 disabled
[ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT
[ 0.000000] e820: update [mem 0xdd000000-0xffffffff] usable ==> reserved
[ 0.000000] e820: last_pfn = 0xdb7fd max_arch_pfn = 0x400000000
[ 0.000000] found SMP MP-table at [mem 0x000fd970-0x000fd97f] mapped at [ffff8e95400fd970]
[ 0.000000] Base memory trampoline at [ffff8e9540097000] 97000 size 24576
[ 0.000000] Using GB pages for direct mapping
[ 0.000000] RAMDISK: [mem 0x3483d000-0x36415fff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000F0490 000024 (v02 DELL )
[ 0.000000] ACPI: XSDT 0x00000000D8FEE078 00006C (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.000000] ACPI: FACP 0x00000000D8FFAAC0 00010C (v05 DELL CBX3 01072009 AMI 00010013)
[ 0.000000] ACPI: DSDT 0x00000000D8FEE170 00C949 (v02 DELL CBX3 00000014 INTL 20091112)
[ 0.000000] ACPI: FACS 0x00000000DA7FE080 000040
[ 0.000000] ACPI: APIC 0x00000000D8FFABD0 000072 (v03 DELL CBX3 01072009 AMI 00010013)
[ 0.000000] ACPI: FPDT 0x00000000D8FFAC48 000044 (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.000000] ACPI: SLIC 0x00000000D8FFAC90 000176 (v03 DELL CBX3 01072009 MSFT 00010013)
[ 0.000000] ACPI: SSDT 0x00000000D8FFAE08 000AD8 (v01 PmRef CpuPm 00003000 INTL 20120711)
[ 0.000000] ACPI: HPET 0x00000000D8FFB8E0 000038 (v01 DELL CBX3 01072009 AMI. 00000005)
[ 0.000000] ACPI: SSDT 0x00000000D8FFB918 00036D (v01 SataRe SataTabl 00001000 INTL 20120711)
[ 0.000000] ACPI: MCFG 0x00000000D8FFBC88 00003C (v01 DELL CBX3 01072009 MSFT 00000097)
[ 0.000000] ACPI: SSDT 0x00000000D8FFBCC8 003528 (v01 SaSsdt SaSsdt 00003000 INTL 20091112)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000021fdfffff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x21fdf9000-0x21fdfdfff]
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.000000] Normal [mem 0x0000000100000000-0x000000021fdfffff]
[ 0.000000] Device empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009cfff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x00000000d2180fff]
[ 0.000000] node 0: [mem 0x00000000d2188000-0x00000000d25befff]
[ 0.000000] node 0: [mem 0x00000000d29ed000-0x00000000d7ee3fff]
[ 0.000000] node 0: [mem 0x00000000d8000000-0x00000000d875dfff]
[ 0.000000] node 0: [mem 0x00000000d8800000-0x00000000d8fadfff]
[ 0.000000] node 0: [mem 0x00000000d9000000-0x00000000da71bfff]
[ 0.000000] node 0: [mem 0x00000000da800000-0x00000000db7fcfff]
[ 0.000000] node 0: [mem 0x0000000100000000-0x000000021fdfffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000021fdfffff]
[ 0.000000] On node 0 totalpages: 2076272
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 21 pages reserved
[ 0.000000] DMA zone: 3996 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 13956 pages used for memmap
[ 0.000000] DMA32 zone: 893140 pages, LIFO batch:31
[ 0.000000] Normal zone: 18424 pages used for memmap
[ 0.000000] Normal zone: 1179136 pages, LIFO batch:31
[ 0.000000] Reserving Intel graphics memory at 0x00000000dd200000-0x00000000df1fffff
[ 0.000000] ACPI: PM-Timer IO Port: 0x1808
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[ 0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xd2181000-0xd2187fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xd25bf000-0xd29ecfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xd7ee4000-0xd7ffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xd875e000-0xd87fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xd8fae000-0xd8ffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xda71c000-0xda7fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdb7fd000-0xdbffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdc000000-0xdcffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdd000000-0xdf1fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdf200000-0xf7ffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[ 0.000000] e820: [mem 0xdf200000-0xf7ffffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[ 0.000000] percpu: Embedded 116 pages/cpu s438144 r8192 d28800 u524288
[ 0.000000] pcpu-alloc: s438144 r8192 d28800 u524288 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 2043807
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.9.0-17-rt-amd64 root=UUID=7db4c91d-478e-4fc6-9457-0538c6d6762b ro quiet usbcore.autosuspend=-1
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[ 0.000000] Memory: 8061428K/8305088K available (6441K kernel code, 1156K rwdata, 2920K rodata, 1692K init, 864K bss, 243660K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.000000] Kernel/User page tables isolation: enabled
[ 0.000000] Preemptible hierarchical RCU implementation.
[ 0.000000] RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=4.
[ 0.000000] RCU kthread priority: 1.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[ 0.000000] NR_IRQS:33024 nr_irqs:456 16
[ 0.000000] spurious 8259A interrupt: IRQ7.
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[ 0.000000] hpet clockevent registered
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 3292.293 MHz processor
[ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 6584.58 BogoMIPS (lpj=13169172)
[ 0.000003] pid_max: default: 32768 minimum: 301
[ 0.000009] ACPI: Core revision 20160831
[ 0.006920] ACPI: 4 ACPI AML tables successfully acquired and loaded
[ 0.006938] Security Framework initialized
[ 0.006939] Yama: disabled by default; enable with sysctl kernel.yama.*
[ 0.006942] AppArmor: AppArmor disabled by boot time parameter
[ 0.007696] Dentry cache hash table entries: 1048576 (order: 12, 16777216 bytes)
[ 0.009685] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.010156] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
[ 0.010163] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
[ 0.010361] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.010361] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.010370] mce: CPU supports 9 MCE banks
[ 0.010379] CPU0: Thermal monitoring enabled (TM1)
[ 0.010390] process: using mwait in idle threads
[ 0.010393] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
[ 0.010393] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
[ 0.010394] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.010395] Spectre V2 : Mitigation: Full generic retpoline
[ 0.010395] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.010395] Spectre V2 : Enabling Restricted Speculation for firmware calls
[ 0.010396] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.010396] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[ 0.010398] SRBDS: Mitigation: Microcode
[ 0.010398] MDS: Mitigation: Clear CPU buffers
[ 0.010672] Freeing SMP alternatives memory: 24K
[ 0.011324] ftrace: allocating 25360 entries in 100 pages
[ 0.027418] smpboot: Max logical packages: 1
[ 0.027484] x2apic: IRQ remapping doesn't support X2APIC mode
[ 0.027854] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[ 0.067542] TSC deadline timer enabled
[ 0.067544] smpboot: CPU0: Intel(R) Core(TM) i5-4590 CPU @ 3.30GHz (family: 0x6, model: 0x3c, stepping: 0x3)
[ 0.067560] Performance Events: PEBS fmt2+, Haswell events, 16-deep LBR, full-width counters, Intel PMU driver.
[ 0.067575] ... version: 3
[ 0.067576] ... bit width: 48
[ 0.067576] ... generic registers: 8
[ 0.067577] ... value mask: 0000ffffffffffff
[ 0.067577] ... max period: 00007fffffffffff
[ 0.067578] ... fixed-purpose events: 3
[ 0.067578] ... event mask: 00000007000000ff
[ 0.123630] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.175591] x86: Booting SMP configuration:
[ 0.175592] .... node #0, CPUs: #1 #2 #3
[ 0.266896] x86: Booted up 1 node, 4 CPUs
[ 0.266898] smpboot: Total of 4 processors activated (26338.34 BogoMIPS)
[ 0.269615] devtmpfs: initialized
[ 0.269665] x86/mm: Memory block size: 128MB
[ 0.271298] PM: Registering ACPI NVS region [mem 0xd2181000-0xd2187fff] (28672 bytes)
[ 0.271299] PM: Registering ACPI NVS region [mem 0xda71c000-0xda7fffff] (933888 bytes)
[ 0.271341] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.271355] futex hash table entries: 1024 (order: 5, 131072 bytes)
[ 0.271387] pinctrl core: initialized pinctrl subsystem
[ 0.271492] NET: Registered protocol family 16
[ 0.271645] cpuidle: using governor ladder
[ 0.271682] cpuidle: using governor menu
[ 0.271709] ACPI: bus type PCI registered
[ 0.271710] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.271761] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 0.271762] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[ 0.271767] pmd_set_huge: Cannot satisfy [mem 0xf8000000-0xf8200000] with a huge-page mapping due to MTRR override.
[ 0.271841] PCI: Using configuration type 1 for base access
[ 0.271845] dmi type 0xB1 record - unknown flag
[ 0.271926] core: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off
[ 0.271962] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.272723] HugeTLB registered 1 GB page size, pre-allocated 0 pages
[ 0.272724] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 0.272838] ACPI: Added _OSI(Module Device)
[ 0.272839] ACPI: Added _OSI(Processor Device)
[ 0.272840] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.272840] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.272996] ACPI: Executed 1 blocks of module-level executable AML code
[ 0.275533] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.277236] ACPI: Interpreter enabled
[ 0.277259] ACPI: (supports S0 S3 S4 S5)
[ 0.277259] ACPI: Using IOAPIC for interrupt routing
[ 0.277278] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.563130] ACPI: Power Resource [FN00] (off)
[ 0.563198] ACPI: Power Resource [FN01] (off)
[ 0.563263] ACPI: Power Resource [FN02] (off)
[ 0.563329] ACPI: Power Resource [FN03] (off)
[ 0.563391] ACPI: Power Resource [FN04] (off)
[ 0.564032] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[ 0.564035] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 0.564467] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[ 0.564772] PCI host bridge to bus 0000:00
[ 0.564774] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.564775] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.564776] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.564777] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[ 0.564777] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[ 0.564778] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[ 0.564779] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[ 0.564780] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[ 0.564781] pci_bus 0000:00: root bus resource [mem 0xdf200000-0xfeafffff window]
[ 0.564783] pci_bus 0000:00: root bus resource [bus 00-3e]
[ 0.564789] pci 0000:00:00.0: [8086:0c00] type 00 class 0x060000
[ 0.564861] pci 0000:00:02.0: [8086:0412] type 00 class 0x030000
[ 0.564868] pci 0000:00:02.0: reg 0x10: [mem 0xf7800000-0xf7bfffff 64bit]
[ 0.564873] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[ 0.564876] pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
[ 0.745130] pci 0000:00:03.0: [8086:0c0c] type 00 class 0x040300
[ 0.745137] pci 0000:00:03.0: reg 0x10: [mem 0xf7e14000-0xf7e17fff 64bit]
[ 0.745228] pci 0000:00:14.0: [8086:8c31] type 00 class 0x0c0330
[ 0.745243] pci 0000:00:14.0: reg 0x10: [mem 0xf7e00000-0xf7e0ffff 64bit]
[ 0.745295] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.745328] pci 0000:00:14.0: System wakeup disabled by ACPI
[ 0.745358] pci 0000:00:16.0: [8086:8c3a] type 00 class 0x078000
[ 0.745374] pci 0000:00:16.0: reg 0x10: [mem 0xf7e1e000-0xf7e1e00f 64bit]
[ 0.745429] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.745494] pci 0000:00:1a.0: [8086:8c2d] type 00 class 0x0c0320
[ 0.745509] pci 0000:00:1a.0: reg 0x10: [mem 0xf7e1c000-0xf7e1c3ff]
[ 0.745581] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 0.745615] pci 0000:00:1a.0: System wakeup disabled by ACPI
[ 0.745646] pci 0000:00:1b.0: [8086:8c20] type 00 class 0x040300
[ 0.745659] pci 0000:00:1b.0: reg 0x10: [mem 0xf7e10000-0xf7e13fff 64bit]
[ 0.745720] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.745754] pci 0000:00:1b.0: System wakeup disabled by ACPI
[ 0.745783] pci 0000:00:1c.0: [8086:8c10] type 01 class 0x060400
[ 0.745838] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.745902] pci 0000:00:1c.0: System wakeup disabled by ACPI
[ 0.745932] pci 0000:00:1c.2: [8086:8c14] type 01 class 0x060400
[ 0.745988] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[ 0.746046] pci 0000:00:1c.2: System wakeup disabled by ACPI
[ 0.746075] pci 0000:00:1c.3: [8086:8c16] type 01 class 0x060400
[ 0.746131] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 0.746190] pci 0000:00:1c.3: System wakeup disabled by ACPI
[ 0.746224] pci 0000:00:1d.0: [8086:8c26] type 00 class 0x0c0320
[ 0.746240] pci 0000:00:1d.0: reg 0x10: [mem 0xf7e1b000-0xf7e1b3ff]
[ 0.746315] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.746348] pci 0000:00:1d.0: System wakeup disabled by ACPI
[ 0.746378] pci 0000:00:1f.0: [8086:8c5c] type 00 class 0x060100
[ 0.746521] pci 0000:00:1f.2: [8086:8c02] type 00 class 0x010601
[ 0.746533] pci 0000:00:1f.2: reg 0x10: [io 0xf0b0-0xf0b7]
[ 0.746539] pci 0000:00:1f.2: reg 0x14: [io 0xf0a0-0xf0a3]
[ 0.746546] pci 0000:00:1f.2: reg 0x18: [io 0xf090-0xf097]
[ 0.746552] pci 0000:00:1f.2: reg 0x1c: [io 0xf080-0xf083]
[ 0.746559] pci 0000:00:1f.2: reg 0x20: [io 0xf060-0xf07f]
[ 0.746565] pci 0000:00:1f.2: reg 0x24: [mem 0xf7e1a000-0xf7e1a7ff]
[ 0.746596] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.746652] pci 0000:00:1f.3: [8086:8c22] type 00 class 0x0c0500
[ 0.746665] pci 0000:00:1f.3: reg 0x10: [mem 0xf7e19000-0xf7e190ff 64bit]
[ 0.746682] pci 0000:00:1f.3: reg 0x20: [io 0xf040-0xf05f]
[ 0.746800] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.746871] pci 0000:02:00.0: [104c:8240] type 01 class 0x060400
[ 0.746993] pci 0000:02:00.0: supports D1 D2
[ 0.747023] pci 0000:02:00.0: System wakeup disabled by ACPI
[ 0.755339] pci 0000:00:1c.2: PCI bridge to [bus 02-03]
[ 0.755344] pci 0000:00:1c.2: bridge window [mem 0xf7d00000-0xf7dfffff]
[ 0.755423] pci 0000:03:00.0: [2718:5125] type 00 class 0x110000
[ 0.755447] pci 0000:03:00.0: reg 0x10: [mem 0xf7d00000-0xf7d0ffff]
[ 0.755666] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.755677] pci 0000:02:00.0: bridge window [mem 0xf7d00000-0xf7dfffff]
[ 0.755764] pci 0000:04:00.0: [10ec:8168] type 00 class 0x020000
[ 0.755782] pci 0000:04:00.0: reg 0x10: [io 0xe000-0xe0ff]
[ 0.755808] pci 0000:04:00.0: reg 0x18: [mem 0xf7c00000-0xf7c00fff 64bit]
[ 0.755825] pci 0000:04:00.0: reg 0x20: [mem 0xf0000000-0xf0003fff 64bit pref]
[ 0.755912] pci 0000:04:00.0: supports D1 D2
[ 0.755913] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.755951] pci 0000:04:00.0: System wakeup disabled by ACPI
[ 0.771343] pci 0000:00:1c.3: PCI bridge to [bus 04]
[ 0.771346] pci 0000:00:1c.3: bridge window [io 0xe000-0xefff]
[ 0.771349] pci 0000:00:1c.3: bridge window [mem 0xf7c00000-0xf7cfffff]
[ 0.771353] pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
[ 0.771942] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 0.771979] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.772017] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 10 11 12 14 15)
[ 0.772054] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
[ 0.772090] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.772128] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.772164] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 10 11 12 14 15)
[ 0.772198] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 *4 5 6 10 11 12 14 15)
[ 0.772433] ACPI: Enabled 4 GPEs in block 00 to 3F
[ 0.772504] vgaarb: setting as boot device: PCI:0000:00:02.0
[ 0.772505] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.772508] vgaarb: loaded
[ 0.772509] vgaarb: bridge control possible 0000:00:02.0
[ 0.772556] PCI: Using ACPI for IRQ routing
[ 0.773723] PCI: pci_cache_line_size set to 64 bytes
[ 0.773764] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[ 0.773765] e820: reserve RAM buffer [mem 0xd2181000-0xd3ffffff]
[ 0.773766] e820: reserve RAM buffer [mem 0xd25bf000-0xd3ffffff]
[ 0.773767] e820: reserve RAM buffer [mem 0xd7ee4000-0xd7ffffff]
[ 0.773768] e820: reserve RAM buffer [mem 0xd875e000-0xdbffffff]
[ 0.773769] e820: reserve RAM buffer [mem 0xd8fae000-0xdbffffff]
[ 0.773769] e820: reserve RAM buffer [mem 0xda71c000-0xdbffffff]
[ 0.773770] e820: reserve RAM buffer [mem 0xdb7fd000-0xdbffffff]
[ 0.773771] e820: reserve RAM buffer [mem 0x21fe00000-0x21fffffff]
[ 0.773873] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.773878] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.775902] clocksource: Switched to clocksource hpet
[ 0.783082] VFS: Disk quotas dquot_6.6.0
[ 0.783099] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.783169] pnp: PnP ACPI init
[ 0.783250] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
[ 0.783253] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.783393] system 00:01: [io 0x0680-0x069f] has been reserved
[ 0.783394] system 00:01: [io 0xffff] has been reserved
[ 0.783395] system 00:01: [io 0xffff] has been reserved
[ 0.783396] system 00:01: [io 0xffff] has been reserved
[ 0.783398] system 00:01: [io 0x1c00-0x1cfe] has been reserved
[ 0.783399] system 00:01: [io 0x1d00-0x1dfe] has been reserved
[ 0.783400] system 00:01: [io 0x1e00-0x1efe] has been reserved
[ 0.783401] system 00:01: [io 0x1f00-0x1ffe] has been reserved
[ 0.783402] system 00:01: [io 0x1800-0x18fe] has been reserved
[ 0.783403] system 00:01: [io 0x164e-0x164f] has been reserved
[ 0.783405] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.783424] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.783463] system 00:03: [io 0x1854-0x1857] has been reserved
[ 0.783465] system 00:03: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[ 0.783540] system 00:04: [io 0x0a00-0x0a0f] has been reserved
[ 0.783542] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.783581] system 00:05: [io 0x04d0-0x04d1] has been reserved
[ 0.783583] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.783994] system 00:06: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.783996] system 00:06: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.783997] system 00:06: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.783998] system 00:06: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.784000] system 00:06: [mem 0xf8000000-0xfbffffff] has been reserved
[ 0.784001] system 00:06: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.784002] system 00:06: [mem 0xfed90000-0xfed93fff] has been reserved
[ 0.784003] system 00:06: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.784005] system 00:06: [mem 0xff000000-0xffffffff] has been reserved
[ 0.784006] system 00:06: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.784007] system 00:06: [mem 0xf7fdf000-0xf7fdffff] has been reserved
[ 0.784008] system 00:06: [mem 0xf7fe0000-0xf7feffff] has been reserved
[ 0.784011] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.784174] pnp: PnP ACPI: found 7 devices
[ 0.790176] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.790187] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000
[ 0.790189] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[ 0.790191] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[ 0.790214] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[ 0.790215] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x002fffff] res_to_dev_res add_size 200000 min_align 100000
[ 0.790216] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.790217] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.790219] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.790220] pci 0000:00:1c.0: res[13]=[io 0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.790224] pci 0000:00:1c.0: BAR 14: assigned [mem 0xdf200000-0xdf3fffff]
[ 0.790229] pci 0000:00:1c.0: BAR 15: assigned [mem 0xdf400000-0xdf5fffff 64bit pref]
[ 0.790231] pci 0000:00:1c.0: BAR 13: assigned [io 0x2000-0x2fff]
[ 0.790232] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.790235] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
[ 0.790240] pci 0000:00:1c.0: bridge window [mem 0xdf200000-0xdf3fffff]
[ 0.790243] pci 0000:00:1c.0: bridge window [mem 0xdf400000-0xdf5fffff 64bit pref]
[ 0.790248] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.790254] pci 0000:02:00.0: bridge window [mem 0xf7d00000-0xf7dfffff]
[ 0.790266] pci 0000:00:1c.2: PCI bridge to [bus 02-03]
[ 0.790270] pci 0000:00:1c.2: bridge window [mem 0xf7d00000-0xf7dfffff]
[ 0.790277] pci 0000:00:1c.3: PCI bridge to [bus 04]
[ 0.790279] pci 0000:00:1c.3: bridge window [io 0xe000-0xefff]
[ 0.790283] pci 0000:00:1c.3: bridge window [mem 0xf7c00000-0xf7cfffff]
[ 0.790287] pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
[ 0.790292] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.790293] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.790294] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.790295] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff window]
[ 0.790296] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff window]
[ 0.790297] pci_bus 0000:00: resource 9 [mem 0x000dc000-0x000dffff window]
[ 0.790298] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000e3fff window]
[ 0.790299] pci_bus 0000:00: resource 11 [mem 0x000e4000-0x000e7fff window]
[ 0.790300] pci_bus 0000:00: resource 12 [mem 0xdf200000-0xfeafffff window]
[ 0.790301] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
[ 0.790302] pci_bus 0000:01: resource 1 [mem 0xdf200000-0xdf3fffff]
[ 0.790303] pci_bus 0000:01: resource 2 [mem 0xdf400000-0xdf5fffff 64bit pref]
[ 0.790304] pci_bus 0000:02: resource 1 [mem 0xf7d00000-0xf7dfffff]
[ 0.790305] pci_bus 0000:03: resource 1 [mem 0xf7d00000-0xf7dfffff]
[ 0.790306] pci_bus 0000:04: resource 0 [io 0xe000-0xefff]
[ 0.790307] pci_bus 0000:04: resource 1 [mem 0xf7c00000-0xf7cfffff]
[ 0.790308] pci_bus 0000:04: resource 2 [mem 0xf0000000-0xf00fffff 64bit pref]
[ 0.790383] NET: Registered protocol family 2
[ 0.790469] IP idents hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.791290] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
[ 0.791560] TCP bind hash table entries: 65536 (order: 9, 3670016 bytes)
[ 0.792134] TCP: Hash tables configured (established 65536 bind 65536)
[ 0.792177] UDP hash table entries: 4096 (order: 7, 524288 bytes)
[ 0.792288] UDP-Lite hash table entries: 4096 (order: 7, 524288 bytes)
[ 0.792400] NET: Registered protocol family 1
[ 0.792410] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.844011] PCI: CLS 64 bytes, default 64
[ 0.844050] Unpacking initramfs...
[ 1.118184] Freeing initrd memory: 28516K
[ 1.118187] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 1.118189] software IO TLB: mapped [mem 0xd3ee4000-0xd7ee4000] (64MB)
[ 1.118470] audit: initializing netlink subsys (disabled)
[ 1.118485] audit: type=2000 audit(1715376316.664:1): initialized
[ 1.118825] workingset: timestamp_bits=40 max_order=21 bucket_order=0
[ 1.120019] zbud: loaded
[ 1.120785] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[ 1.120810] io scheduler noop registered
[ 1.120810] io scheduler deadline registered
[ 1.120832] io scheduler cfq registered (default)
[ 1.121385] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[ 1.121389] pcie_pme 0000:00:1c.0:pcie001: service driver pcie_pme loaded
[ 1.121422] pcieport 0000:00:1c.2: Signaling PME through PCIe PME interrupt
[ 1.121423] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
[ 1.121424] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[ 1.121428] pcie_pme 0000:00:1c.2:pcie001: service driver pcie_pme loaded
[ 1.121463] pcieport 0000:00:1c.3: Signaling PME through PCIe PME interrupt
[ 1.121464] pci 0000:04:00.0: Signaling PME through PCIe PME interrupt
[ 1.121467] pcie_pme 0000:00:1c.3:pcie001: service driver pcie_pme loaded
[ 1.121475] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 1.121484] pciehp 0000:00:1c.0:pcie004: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+
[ 1.121518] pciehp 0000:00:1c.0:pcie004: service driver pciehp loaded
[ 1.121522] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 1.121535] intel_idle: MWAIT substates: 0x42120
[ 1.121536] intel_idle: v0.4.1 model 0x3C
[ 1.121646] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 1.121762] GHES: HEST is not enabled!
[ 1.121813] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 1.122157] Linux agpgart interface v0.103
[ 1.122236] AMD IOMMUv2 driver by Joerg Roedel <This email address is being protected from spambots. You need JavaScript enabled to view it.>
[ 1.122237] AMD IOMMUv2 functionality not available on this system
[ 1.122466] i8042: PNP: No PS/2 controller found. Probing ports directly.
[ 1.125170] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.125197] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.125306] mousedev: PS/2 mouse device common for all mice
[ 1.125338] rtc_cmos 00:02: RTC can wake from S4
[ 1.125467] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[ 1.125545] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 1.125552] intel_pstate: Intel P-state driver initializing
[ 1.126052] NET: Registered protocol family 10
[ 1.126213] mip6: Mobile IPv6
[ 1.126215] NET: Registered protocol family 17
[ 1.126217] mpls_gso: MPLS GSO support
[ 1.126384] microcode: sig=0x306c3, pf=0x2, revision=0x28
[ 1.126452] microcode: Microcode Update Driver: v2.01 <This email address is being protected from spambots. You need JavaScript enabled to view it.>, Peter Oruba
[ 1.126595] registered taskstats version 1
[ 1.126611] zswap: loaded using pool lzo/zbud
[ 1.126641] ima: No TPM chip found, activating TPM-bypass!
[ 1.126642] ima: Allocated hash algorithm: sha256
[ 1.126968] rtc_cmos 00:02: setting system clock to 2024-05-10 21:25:17 UTC (1715376317)
[ 1.127020] PM: Hibernation image not present or could not be loaded.
[ 1.127769] Freeing unused kernel memory: 1692K
[ 1.127769] Write protecting the kernel read-only data: 12288k
[ 1.128247] Freeing unused kernel memory: 1736K
[ 1.129993] Freeing unused kernel memory: 1176K
[ 1.133511] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.144906] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 1.144965] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 1.144973] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 1.176956] ACPI: bus type USB registered
[ 1.177321] usbcore: registered new interface driver usbfs
[ 1.178000] usbcore: registered new interface driver hub
[ 1.178528] usbcore: registered new device driver usb
[ 1.183225] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[ 1.184927] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.187310] SCSI subsystem initialized
[ 1.188007] ehci-pci: EHCI PCI platform driver
[ 1.192114] thermal LNXTHERM:00: registered as thermal_zone0
[ 1.192116] ACPI: Thermal Zone [TZ00] (28 C)
[ 1.192343] ehci-pci 0000:00:1a.0: EHCI Host Controller
[ 1.192527] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 1.192538] ehci-pci 0000:00:1a.0: debug port 2
[ 1.195389] thermal LNXTHERM:01: registered as thermal_zone1
[ 1.195390] ACPI: Thermal Zone [TZ01] (30 C)
[ 1.196454] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[ 1.196483] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7e1c000
[ 1.198541] r8169 0000:04:00.0 eth0: RTL8168g/8111g at 0xffff9b79c1475000, b0:83:fe:95:ff:5e, XID 0c000800 IRQ 27
[ 1.198543] r8169 0000:04:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[ 1.200055] libata version 3.00 loaded.
[ 1.205617] AVX2 version of gcm_enc/dec engaged.
[ 1.205618] AES CTR mode by8 optimization enabled
[ 1.211934] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 1.212126] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.212127] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.212129] usb usb1: Product: EHCI Host Controller
[ 1.212130] usb usb1: Manufacturer: Linux 4.9.0-17-rt-amd64 ehci_hcd
[ 1.212130] usb usb1: SerialNumber: 0000:00:1a.0
[ 1.214786] hub 1-0:1.0: USB hub found
[ 1.214796] hub 1-0:1.0: 2 ports detected
[ 1.215321] i801_smbus 0000:00:1f.3: SPD Write Disable is set
[ 1.215365] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[ 1.216084] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.216089] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 1.217166] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[ 1.217170] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[ 1.217330] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.217331] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.217332] usb usb2: Product: xHCI Host Controller
[ 1.217333] usb usb2: Manufacturer: Linux 4.9.0-17-rt-amd64 xhci-hcd
[ 1.217334] usb usb2: SerialNumber: 0000:00:14.0
[ 1.217429] hub 2-0:1.0: USB hub found
[ 1.217444] hub 2-0:1.0: 10 ports detected
[ 1.218551] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.218554] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[ 1.218624] usb usb3: New USB device found, idVendor=1d6b, idProduct=0003
[ 1.218626] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.218627] usb usb3: Product: xHCI Host Controller
[ 1.218628] usb usb3: Manufacturer: Linux 4.9.0-17-rt-amd64 xhci-hcd
[ 1.218629] usb usb3: SerialNumber: 0000:00:14.0
[ 1.218728] hub 3-0:1.0: USB hub found
[ 1.218739] hub 3-0:1.0: 2 ports detected
[ 1.218940] ahci 0000:00:1f.2: version 3.0
[ 1.219144] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 6 Gbps 0x21 impl SATA mode
[ 1.219146] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems
[ 1.228780] scsi host0: ahci
[ 1.228933] scsi host1: ahci
[ 1.229038] scsi host2: ahci
[ 1.229109] scsi host3: ahci
[ 1.229177] scsi host4: ahci
[ 1.229245] scsi host5: ahci
[ 1.229283] ata1: SATA max UDMA/133 abar m2048@0xf7e1a000 port 0xf7e1a100 irq 29
[ 1.229283] ata2: DUMMY
[ 1.229284] ata3: DUMMY
[ 1.229284] ata4: DUMMY
[ 1.229285] ata5: DUMMY
[ 1.229287] ata6: SATA max UDMA/133 abar m2048@0xf7e1a000 port 0xf7e1a380 irq 29
[ 1.229601] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 1.229605] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
[ 1.229614] ehci-pci 0000:00:1d.0: debug port 2
[ 1.233501] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[ 1.233562] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7e1b000
[ 1.248002] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 1.248052] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.248053] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.248054] usb usb4: Product: EHCI Host Controller
[ 1.248055] usb usb4: Manufacturer: Linux 4.9.0-17-rt-amd64 ehci_hcd
[ 1.248056] usb usb4: SerialNumber: 0000:00:1d.0
[ 1.248222] hub 4-0:1.0: USB hub found
[ 1.248226] hub 4-0:1.0: 2 ports detected
[ 1.459966] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 1.463963] usb 2-5: new low-speed USB device number 2 using xhci_hcd
[ 1.495964] usb 4-1: new high-speed USB device number 2 using ehci-pci
[ 1.543070] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 1.543128] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 1.545630] ata1.00: NCQ Send/Recv Log not supported
[ 1.545641] ata1.00: ATA-9: SAMSUNG SSD PM851 2.5 7mm 128GB, EXT08D0Q, max UDMA/133
[ 1.545642] ata1.00: 250069680 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 1.546291] ata1.00: NCQ Send/Recv Log not supported
[ 1.546333] ata1.00: configured for UDMA/133
[ 1.546516] scsi 0:0:0:0: Direct-Access ATA SAMSUNG SSD PM85 8D0Q PQ: 0 ANSI: 5
[ 1.547660] ata6.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[ 1.547662] ata6.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 1.547664] ata6.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 1.547931] ata6.00: ATAPI: PLDS DVD+/-RW DS-8ABSH, LD11, max UDMA/133
[ 1.555198] ata6.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[ 1.555211] ata6.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 1.555212] ata6.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 1.555523] ata6.00: configured for UDMA/133
[ 1.596350] scsi 5:0:0:0: CD-ROM PLDS DVD+-RW DS-8ABSH LD11 PQ: 0 ANSI: 5
[ 1.607584] usb 2-5: New USB device found, idVendor=413c, idProduct=301a
[ 1.607586] usb 2-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.607587] usb 2-5: Product: Dell MS116 USB Optical Mouse
[ 1.607588] usb 2-5: Manufacturer: PixArt
[ 1.608305] usb 1-1: New USB device found, idVendor=8087, idProduct=8008
[ 1.608306] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.608632] hub 1-1:1.0: USB hub found
[ 1.608784] hub 1-1:1.0: 4 ports detected
[ 1.609094] hidraw: raw HID events driver (C) Jiri Kosina
[ 1.610721] usbcore: registered new interface driver usbhid
[ 1.610722] usbhid: USB HID core driver
[ 1.611322] input: PixArt Dell MS116 USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb2/2-5/2-5:1.0/0003:413C:301A.0001/input/input3
[ 1.614110] hid-generic 0003:413C:301A.0001: input,hidraw0: USB HID v1.11 Mouse [PixArt Dell MS116 USB Optical Mouse] on usb-0000:00:14.0-5/input0
[ 1.615664] sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
[ 1.615689] sd 0:0:0:0: [sda] Write Protect is off
[ 1.615691] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.615699] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.622657] sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[ 1.623043] sd 0:0:0:0: [sda] Attached SCSI disk
[ 1.632470] sr 5:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 1.632471] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 1.632580] sr 5:0:0:0: Attached scsi CD-ROM sr0
[ 1.644485] usb 4-1: New USB device found, idVendor=8087, idProduct=8000
[ 1.644487] usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.644829] hub 4-1:1.0: USB hub found
[ 1.644938] hub 4-1:1.0: 6 ports detected
[ 1.727940] usb 2-6: new low-speed USB device number 3 using xhci_hcd
[ 1.790515] random: fast init done
[ 1.792303] PM: Starting manual resume from disk
[ 1.792305] PM: Hibernation image partition 8:7 present
[ 1.792305] PM: Looking for hibernation image.
[ 1.792520] PM: Image not found (code -22)
[ 1.792520] PM: Hibernation image not present or could not be loaded.
[ 1.888643] usb 2-6: New USB device found, idVendor=0d62, idProduct=3f41
[ 1.888645] usb 2-6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.888646] usb 2-6: Product: HP Wired Desktop 320K Keyboard
[ 1.888647] usb 2-6: Manufacturer: Darfon
[ 1.892892] input: Darfon HP Wired Desktop 320K Keyboard as /devices/pci0000:00/0000:00:14.0/usb2/2-6/2-6:1.0/0003:0D62:3F41.0002/input/input4
[ 1.893298] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
[ 1.952156] hid-generic 0003:0D62:3F41.0002: input,hidraw1: USB HID v1.11 Keyboard [Darfon HP Wired Desktop 320K Keyboard] on usb-0000:00:14.0-6/input0
[ 1.956187] input: Darfon HP Wired Desktop 320K Keyboard as /devices/pci0000:00/0000:00:14.0/usb2/2-6/2-6:1.1/0003:0D62:3F41.0003/input/input5
[ 2.016091] hid-generic 0003:0D62:3F41.0003: input,hidraw2: USB HID v1.11 Device [Darfon HP Wired Desktop 320K Keyboard] on usb-0000:00:14.0-6/input1
[ 2.143988] tsc: Refined TSC clocksource calibration: 3292.375 MHz
[ 2.143993] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2f75298baf3, max_idle_ns: 440795322961 ns
[ 2.400482] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 2.414891] systemd[1]: systemd 232 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[ 2.415061] systemd[1]: Detected architecture x86-64.
[ 2.418799] systemd[1]: Set hostname to <CNCRouterPC>.
[ 2.629288] systemd[1]: NetworkManager-wait-online.service: Cannot add dependency job, ignoring: Unit NetworkManager-wait-online.service is masked.
[ 2.629308] systemd[1]: NetworkManager.service: Cannot add dependency job, ignoring: Unit NetworkManager.service is masked.
[ 2.629318] systemd[1]: live-tools.service: Cannot add dependency job, ignoring: Unit live-tools.service is masked.
[ 2.629994] systemd[1]: Created slice System Slice.
[ 2.630126] systemd[1]: Created slice system-getty.slice.
[ 2.630187] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[ 2.630233] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[ 2.680829] EXT4-fs (sda6): re-mounted. Opts: errors=remount-ro
[ 2.709800] lp: driver loaded but no devices found
[ 2.718095] ppdev: user-space parallel port driver
[ 2.768182] systemd-journald[257]: Received request to flush runtime journal from PID 1
[ 3.078355] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input6
[ 3.078359] ACPI: Power Button [PWRB]
[ 3.078410] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input7
[ 3.078411] ACPI: Power Button [PWRF]
[ 3.143217] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 3.168027] clocksource: Switched to clocksource tsc
[ 3.206849] [drm] Initialized
[ 3.350316] [drm] PipeC fused off
[ 3.350326] [drm] Memory usable by graphics device = 2048M
[ 3.350327] [drm] Replacing VGA console driver
[ 3.352497] Console: switching to colour dummy device 80x25
[ 3.359701] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 3.359702] [drm] Driver supports precise vblank timestamp query.
[ 3.372417] wmi: Mapper loaded
[ 3.376922] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 3.413791] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 3.418595] acpi device:60: registered as cooling_device9
[ 3.423045] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input8
[ 3.423404] [drm] Initialized i915 1.6.0 20160919 for 0000:00:02.0 on minor 0
[ 3.438086] snd_hda_intel 0000:00:03.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[ 3.444217] fbcon: inteldrmfb (fb0) is primary device
[ 3.487026] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 3.489860] sr 5:0:0:0: Attached scsi generic sg1 type 5
[ 3.521146] Console: switching to colour frame buffer device 240x67
[ 3.540576] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[ 3.551359] snd_hda_codec_realtek hdaudioC1D2: autoconfig for ALC3220: line_outs=1 (0x1b/0x0/0x0/0x0/0x0) type:line
[ 3.551361] snd_hda_codec_realtek hdaudioC1D2: speaker_outs=1 (0x14/0x0/0x0/0x0/0x0)
[ 3.551363] snd_hda_codec_realtek hdaudioC1D2: hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
[ 3.551364] snd_hda_codec_realtek hdaudioC1D2: mono: mono_out=0x0
[ 3.551364] snd_hda_codec_realtek hdaudioC1D2: inputs:
[ 3.551366] snd_hda_codec_realtek hdaudioC1D2: Front Mic=0x1a
[ 3.551367] snd_hda_codec_realtek hdaudioC1D2: Rear Mic=0x18
[ 3.551890] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input9
[ 3.566775] input: PC Speaker as /devices/platform/pcspkr/input/input14
[ 3.581544] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input10
[ 3.586936] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input11
[ 3.592198] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card1/input12
[ 3.596971] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input13
[ 3.655532] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[ 3.655533] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 3.655534] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 3.655534] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 3.655535] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[ 3.776159] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[ 3.868352] iTCO_vendor_support: vendor-support=0
[ 3.874154] Adding 8303612k swap on /dev/sda7. Priority:-1 extents:1 across:8303612k SSFS
[ 3.875083] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[ 3.875538] iTCO_wdt: Found a Lynx Point TCO device (Version=2, TCOBASE=0x1860)
[ 3.885973] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 3.902426] dell_wmi: Detected Dell WMI interface version 1
[ 3.906212] input: Dell WMI hotkeys as /devices/virtual/input/input15
[ 4.025277] intel_rapl: Found RAPL domain package
[ 4.025279] intel_rapl: Found RAPL domain core
[ 4.025280] intel_rapl: Found RAPL domain uncore
[ 4.025281] intel_rapl: Found RAPL domain dram
[ 4.025282] intel_rapl: RAPL package 0 domain package locked by BIOS
[ 4.025286] intel_rapl: RAPL package 0 domain dram locked by BIOS
[ 4.605478] r8169 0000:04:00.0: firmware: direct-loading firmware rtl_nic/rtl8168g-2.fw
[ 4.678206] r8169 0000:04:00.0 eth0: link down
[ 4.678221] r8169 0000:04:00.0 eth0: link down
[ 4.678263] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 6.936482] r8169 0000:04:00.0 eth0: link up
[ 6.936486] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 29.024668] random: crng init done
[ 29.024670] random: 7 urandom warning(s) missed due to ratelimiting
RUN_IN_PLACE=no
LINUXCNC_DIR=
LINUXCNC_BIN_DIR=/usr/bin
LINUXCNC_TCL_DIR=/usr/lib/tcltk/linuxcnc
LINUXCNC_SCRIPT_DIR=
LINUXCNC_RTLIB_DIR=/usr/lib/linuxcnc/modules
LINUXCNC_CONFIG_DIR=
LINUXCNC_LANG_DIR=/usr/share/linuxcnc/tcl/msgs
INIVAR=inivar
HALCMD=halcmd
LINUXCNC_EMCSH=/usr/bin/wish8.6
LINUXCNC - 2.7.15
Machine configuration directory is '/home/cncuser/linuxcnc/configs/GerberSabre408_Crafted1'
Machine configuration file is 'GerberSabre408_Crafted1.ini'
INIFILE=/home/cncuser/linuxcnc/configs/GerberSabre408_Crafted1/GerberSabre408_Crafted1.ini
PARAMETER_FILE=linuxcnc.var
TASK=milltask
HALUI=halui
DISPLAY=axis
Starting LinuxCNC...
Starting LinuxCNC server program: linuxcncsvr
Loading Real Time OS, RTAPI, and HAL_LIB modules
Starting LinuxCNC IO program: io
Starting HAL User Interface program: halui
Found file(REL): ./GerberSabre408_Crafted1.hal
hm2: loading Mesa HostMot2 driver version 0.15
hm2_pci: loading Mesa AnyIO HostMot2 driver version 0.7
hm2_pci: discovered 5i25 at 0000:03:00.0
hm2/hm2_5i25.0: Smart Serial Firmware Version 43
Board hm2_5i25.0.7i77.0.0 Hardware Mode 0 = standard
Board hm2_5i25.0.7i77.0.0 Software Mode 0 = input_output
Board hm2_5i25.0.7i77.0.0 Software Mode 1 = io_analog
Board hm2_5i25.0.7i77.0.0 Software Mode 2 = io_analog_fieldvoltage
Board hm2_5i25.0.7i77.0.0 Software Mode 3 = io_encoder_analog_fieldvoltage
Board hm2_5i25.0.7i77.0.1 Hardware Mode 0 = standard
Board hm2_5i25.0.7i77.0.1 Software Mode 0 = analogout_enables
hm2/hm2_5i25.0: 34 I/O Pins used:
hm2/hm2_5i25.0: IO Pin 000 (P3-01): IOPort
hm2/hm2_5i25.0: IO Pin 001 (P3-14): IOPort
hm2/hm2_5i25.0: IO Pin 002 (P3-02): IOPort
hm2/hm2_5i25.0: IO Pin 003 (P3-15): Smart Serial Interface #0, pin TxData1 (Output)
hm2/hm2_5i25.0: IO Pin 004 (P3-03): Smart Serial Interface #0, pin RxData1 (Input)
hm2/hm2_5i25.0: IO Pin 005 (P3-16): Smart Serial Interface #0, pin TxData0 (Output)
hm2/hm2_5i25.0: IO Pin 006 (P3-04): Smart Serial Interface #0, pin RxData0 (Input)
hm2/hm2_5i25.0: IO Pin 007 (P3-17): Muxed Encoder Select #0, pin Mux Select 0 (Output)
hm2/hm2_5i25.0: IO Pin 008 (P3-05): Muxed Encoder #0, pin Muxed A (Input)
hm2/hm2_5i25.0: IO Pin 009 (P3-06): Muxed Encoder #0, pin Muxed B (Input)
hm2/hm2_5i25.0: IO Pin 010 (P3-07): Muxed Encoder #0, pin Muxed Index (Input)
hm2/hm2_5i25.0: IO Pin 011 (P3-08): Muxed Encoder #1, pin Muxed A (Input)
hm2/hm2_5i25.0: IO Pin 012 (P3-09): Muxed Encoder #1, pin Muxed B (Input)
hm2/hm2_5i25.0: IO Pin 013 (P3-10): Muxed Encoder #1, pin Muxed Index (Input)
hm2/hm2_5i25.0: IO Pin 014 (P3-11): Muxed Encoder #2, pin Muxed A (Input)
hm2/hm2_5i25.0: IO Pin 015 (P3-12): Muxed Encoder #2, pin Muxed B (Input)
hm2/hm2_5i25.0: IO Pin 016 (P3-13): Muxed Encoder #2, pin Muxed Index (Input)
hm2/hm2_5i25.0: IO Pin 017 (P2-01): IOPort
hm2/hm2_5i25.0: IO Pin 018 (P2-14): IOPort
hm2/hm2_5i25.0: IO Pin 019 (P2-02): IOPort
hm2/hm2_5i25.0: IO Pin 020 (P2-15): IOPort
hm2/hm2_5i25.0: IO Pin 021 (P2-03): IOPort
hm2/hm2_5i25.0: IO Pin 022 (P2-16): IOPort
hm2/hm2_5i25.0: IO Pin 023 (P2-04): IOPort
hm2/hm2_5i25.0: IO Pin 024 (P2-17): IOPort
hm2/hm2_5i25.0: IO Pin 025 (P2-05): IOPort
hm2/hm2_5i25.0: IO Pin 026 (P2-06): IOPort
hm2/hm2_5i25.0: IO Pin 027 (P2-07): IOPort
hm2/hm2_5i25.0: IO Pin 028 (P2-08): IOPort
hm2/hm2_5i25.0: IO Pin 029 (P2-09): IOPort
hm2/hm2_5i25.0: IO Pin 030 (P2-10): IOPort
hm2/hm2_5i25.0: IO Pin 031 (P2-11): IOPort
hm2/hm2_5i25.0: IO Pin 032 (P2-12): IOPort
hm2/hm2_5i25.0: IO Pin 033 (P2-13): IOPort
hm2/hm2_5i25.0: registered
hm2_5i25.0: initialized AnyIO board at 0000:03:00.0
Found file(REL): ./custom.hal
Found file(REL): ./vc-p4s.hal
Shutting down and cleaning up LinuxCNC...
hm2_5i25.0: dropping AnyIO board at 0000:03:00.0
hm2/hm2_5i25.0: unregistered
hm2_pci: driver unloaded
hm2: unloading
Removing HAL_LIB, RTAPI, and Real Time OS modules
Removing NML shared memory segments
Debug file information:
Note: Using POSIX realtime
./vc-p4s.hal:2: Warning: File contains DOS-style line endings.
./vc-p4s.hal:25: Pin 'halui.jog.0.plus' was already linked to signal 'jog-x-pos'
1440
Stopping realtime threads
Unloading hal components
RTAPI_PCI: Unmapped 65536 bytes at 0x7fed93fe7000
Traceback (most recent call last):
File "/usr/bin/hal_manualtoolchange", line 66, in <module>
nf.start(app); nf.makecommand(app, "_", _)
File "/usr/lib/python2.7/dist-packages/nf.py", line 119, in start
source_lib_tcl(r, "support.tcl")
File "/usr/lib/python2.7/dist-packages/nf.py", line 111, in source_lib_tcl
r.tk.call("source", os.path.join(tcl_libdir, f))
KeyboardInterrupt
Note: Using POSIX realtime
Kernel message information:
[ 0.000000] microcode: microcode updated early to revision 0x28, date = 2019-11-12
[ 0.000000] Linux version 4.9.0-17-rt-amd64 (This email address is being protected from spambots. You need JavaScript enabled to view it.) (gcc version 6.3.0 20170516 (Debian 6.3.0-18+deb9u1) ) #1 SMP PREEMPT RT Debian 4.9.290-1 (2021-12-12)
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.9.0-17-rt-amd64 root=UUID=7db4c91d-478e-4fc6-9457-0538c6d6762b ro quiet usbcore.autosuspend=-1
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000d2180fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000d2181000-0x00000000d2187fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000d2188000-0x00000000d25befff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000d25bf000-0x00000000d29ecfff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000d29ed000-0x00000000d7ee3fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000d7ee4000-0x00000000d7ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000d8000000-0x00000000d875dfff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000d875e000-0x00000000d87fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000d8800000-0x00000000d8fadfff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000d8fae000-0x00000000d8ffffff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000d9000000-0x00000000da71bfff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000da71c000-0x00000000da7fffff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000da800000-0x00000000db7fcfff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000db7fd000-0x00000000dbffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000dd000000-0x00000000df1fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000021fdfffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.7 present.
[ 0.000000] DMI: Dell Inc. OptiPlex 3020/0WMJ54, BIOS A19 10/30/2018
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] e820: last_pfn = 0x21fe00 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-D3FFF write-protect
[ 0.000000] D4000-E7FFF uncachable
[ 0.000000] E8000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 0000000000 mask 7E00000000 write-back
[ 0.000000] 1 base 0200000000 mask 7FE0000000 write-back
[ 0.000000] 2 base 00E0000000 mask 7FE0000000 uncachable
[ 0.000000] 3 base 00DE000000 mask 7FFE000000 uncachable
[ 0.000000] 4 base 00DD000000 mask 7FFF000000 uncachable
[ 0.000000] 5 base 021FE00000 mask 7FFFE00000 uncachable
[ 0.000000] 6 disabled
[ 0.000000] 7 disabled
[ 0.000000] 8 disabled
[ 0.000000] 9 disabled
[ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT
[ 0.000000] e820: update [mem 0xdd000000-0xffffffff] usable ==> reserved
[ 0.000000] e820: last_pfn = 0xdb7fd max_arch_pfn = 0x400000000
[ 0.000000] found SMP MP-table at [mem 0x000fd970-0x000fd97f] mapped at [ffff8e95400fd970]
[ 0.000000] Base memory trampoline at [ffff8e9540097000] 97000 size 24576
[ 0.000000] Using GB pages for direct mapping
[ 0.000000] RAMDISK: [mem 0x3483d000-0x36415fff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000F0490 000024 (v02 DELL )
[ 0.000000] ACPI: XSDT 0x00000000D8FEE078 00006C (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.000000] ACPI: FACP 0x00000000D8FFAAC0 00010C (v05 DELL CBX3 01072009 AMI 00010013)
[ 0.000000] ACPI: DSDT 0x00000000D8FEE170 00C949 (v02 DELL CBX3 00000014 INTL 20091112)
[ 0.000000] ACPI: FACS 0x00000000DA7FE080 000040
[ 0.000000] ACPI: APIC 0x00000000D8FFABD0 000072 (v03 DELL CBX3 01072009 AMI 00010013)
[ 0.000000] ACPI: FPDT 0x00000000D8FFAC48 000044 (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.000000] ACPI: SLIC 0x00000000D8FFAC90 000176 (v03 DELL CBX3 01072009 MSFT 00010013)
[ 0.000000] ACPI: SSDT 0x00000000D8FFAE08 000AD8 (v01 PmRef CpuPm 00003000 INTL 20120711)
[ 0.000000] ACPI: HPET 0x00000000D8FFB8E0 000038 (v01 DELL CBX3 01072009 AMI. 00000005)
[ 0.000000] ACPI: SSDT 0x00000000D8FFB918 00036D (v01 SataRe SataTabl 00001000 INTL 20120711)
[ 0.000000] ACPI: MCFG 0x00000000D8FFBC88 00003C (v01 DELL CBX3 01072009 MSFT 00000097)
[ 0.000000] ACPI: SSDT 0x00000000D8FFBCC8 003528 (v01 SaSsdt SaSsdt 00003000 INTL 20091112)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000021fdfffff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x21fdf9000-0x21fdfdfff]
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.000000] Normal [mem 0x0000000100000000-0x000000021fdfffff]
[ 0.000000] Device empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009cfff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x00000000d2180fff]
[ 0.000000] node 0: [mem 0x00000000d2188000-0x00000000d25befff]
[ 0.000000] node 0: [mem 0x00000000d29ed000-0x00000000d7ee3fff]
[ 0.000000] node 0: [mem 0x00000000d8000000-0x00000000d875dfff]
[ 0.000000] node 0: [mem 0x00000000d8800000-0x00000000d8fadfff]
[ 0.000000] node 0: [mem 0x00000000d9000000-0x00000000da71bfff]
[ 0.000000] node 0: [mem 0x00000000da800000-0x00000000db7fcfff]
[ 0.000000] node 0: [mem 0x0000000100000000-0x000000021fdfffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000021fdfffff]
[ 0.000000] On node 0 totalpages: 2076272
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 21 pages reserved
[ 0.000000] DMA zone: 3996 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 13956 pages used for memmap
[ 0.000000] DMA32 zone: 893140 pages, LIFO batch:31
[ 0.000000] Normal zone: 18424 pages used for memmap
[ 0.000000] Normal zone: 1179136 pages, LIFO batch:31
[ 0.000000] Reserving Intel graphics memory at 0x00000000dd200000-0x00000000df1fffff
[ 0.000000] ACPI: PM-Timer IO Port: 0x1808
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[ 0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xd2181000-0xd2187fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xd25bf000-0xd29ecfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xd7ee4000-0xd7ffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xd875e000-0xd87fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xd8fae000-0xd8ffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xda71c000-0xda7fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdb7fd000-0xdbffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdc000000-0xdcffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdd000000-0xdf1fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdf200000-0xf7ffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[ 0.000000] e820: [mem 0xdf200000-0xf7ffffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[ 0.000000] percpu: Embedded 116 pages/cpu s438144 r8192 d28800 u524288
[ 0.000000] pcpu-alloc: s438144 r8192 d28800 u524288 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 2043807
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.9.0-17-rt-amd64 root=UUID=7db4c91d-478e-4fc6-9457-0538c6d6762b ro quiet usbcore.autosuspend=-1
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[ 0.000000] Memory: 8061428K/8305088K available (6441K kernel code, 1156K rwdata, 2920K rodata, 1692K init, 864K bss, 243660K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.000000] Kernel/User page tables isolation: enabled
[ 0.000000] Preemptible hierarchical RCU implementation.
[ 0.000000] RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=4.
[ 0.000000] RCU kthread priority: 1.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[ 0.000000] NR_IRQS:33024 nr_irqs:456 16
[ 0.000000] spurious 8259A interrupt: IRQ7.
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[ 0.000000] hpet clockevent registered
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 3292.293 MHz processor
[ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 6584.58 BogoMIPS (lpj=13169172)
[ 0.000003] pid_max: default: 32768 minimum: 301
[ 0.000009] ACPI: Core revision 20160831
[ 0.006920] ACPI: 4 ACPI AML tables successfully acquired and loaded
[ 0.006938] Security Framework initialized
[ 0.006939] Yama: disabled by default; enable with sysctl kernel.yama.*
[ 0.006942] AppArmor: AppArmor disabled by boot time parameter
[ 0.007696] Dentry cache hash table entries: 1048576 (order: 12, 16777216 bytes)
[ 0.009685] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.010156] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
[ 0.010163] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
[ 0.010361] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.010361] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.010370] mce: CPU supports 9 MCE banks
[ 0.010379] CPU0: Thermal monitoring enabled (TM1)
[ 0.010390] process: using mwait in idle threads
[ 0.010393] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
[ 0.010393] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
[ 0.010394] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.010395] Spectre V2 : Mitigation: Full generic retpoline
[ 0.010395] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.010395] Spectre V2 : Enabling Restricted Speculation for firmware calls
[ 0.010396] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.010396] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[ 0.010398] SRBDS: Mitigation: Microcode
[ 0.010398] MDS: Mitigation: Clear CPU buffers
[ 0.010672] Freeing SMP alternatives memory: 24K
[ 0.011324] ftrace: allocating 25360 entries in 100 pages
[ 0.027418] smpboot: Max logical packages: 1
[ 0.027484] x2apic: IRQ remapping doesn't support X2APIC mode
[ 0.027854] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[ 0.067542] TSC deadline timer enabled
[ 0.067544] smpboot: CPU0: Intel(R) Core(TM) i5-4590 CPU @ 3.30GHz (family: 0x6, model: 0x3c, stepping: 0x3)
[ 0.067560] Performance Events: PEBS fmt2+, Haswell events, 16-deep LBR, full-width counters, Intel PMU driver.
[ 0.067575] ... version: 3
[ 0.067576] ... bit width: 48
[ 0.067576] ... generic registers: 8
[ 0.067577] ... value mask: 0000ffffffffffff
[ 0.067577] ... max period: 00007fffffffffff
[ 0.067578] ... fixed-purpose events: 3
[ 0.067578] ... event mask: 00000007000000ff
[ 0.123630] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.175591] x86: Booting SMP configuration:
[ 0.175592] .... node #0, CPUs: #1 #2 #3
[ 0.266896] x86: Booted up 1 node, 4 CPUs
[ 0.266898] smpboot: Total of 4 processors activated (26338.34 BogoMIPS)
[ 0.269615] devtmpfs: initialized
[ 0.269665] x86/mm: Memory block size: 128MB
[ 0.271298] PM: Registering ACPI NVS region [mem 0xd2181000-0xd2187fff] (28672 bytes)
[ 0.271299] PM: Registering ACPI NVS region [mem 0xda71c000-0xda7fffff] (933888 bytes)
[ 0.271341] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.271355] futex hash table entries: 1024 (order: 5, 131072 bytes)
[ 0.271387] pinctrl core: initialized pinctrl subsystem
[ 0.271492] NET: Registered protocol family 16
[ 0.271645] cpuidle: using governor ladder
[ 0.271682] cpuidle: using governor menu
[ 0.271709] ACPI: bus type PCI registered
[ 0.271710] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.271761] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 0.271762] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[ 0.271767] pmd_set_huge: Cannot satisfy [mem 0xf8000000-0xf8200000] with a huge-page mapping due to MTRR override.
[ 0.271841] PCI: Using configuration type 1 for base access
[ 0.271845] dmi type 0xB1 record - unknown flag
[ 0.271926] core: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off
[ 0.271962] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.272723] HugeTLB registered 1 GB page size, pre-allocated 0 pages
[ 0.272724] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 0.272838] ACPI: Added _OSI(Module Device)
[ 0.272839] ACPI: Added _OSI(Processor Device)
[ 0.272840] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.272840] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.272996] ACPI: Executed 1 blocks of module-level executable AML code
[ 0.275533] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.277236] ACPI: Interpreter enabled
[ 0.277259] ACPI: (supports S0 S3 S4 S5)
[ 0.277259] ACPI: Using IOAPIC for interrupt routing
[ 0.277278] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.563130] ACPI: Power Resource [FN00] (off)
[ 0.563198] ACPI: Power Resource [FN01] (off)
[ 0.563263] ACPI: Power Resource [FN02] (off)
[ 0.563329] ACPI: Power Resource [FN03] (off)
[ 0.563391] ACPI: Power Resource [FN04] (off)
[ 0.564032] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[ 0.564035] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 0.564467] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[ 0.564772] PCI host bridge to bus 0000:00
[ 0.564774] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.564775] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.564776] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.564777] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[ 0.564777] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[ 0.564778] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[ 0.564779] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[ 0.564780] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[ 0.564781] pci_bus 0000:00: root bus resource [mem 0xdf200000-0xfeafffff window]
[ 0.564783] pci_bus 0000:00: root bus resource [bus 00-3e]
[ 0.564789] pci 0000:00:00.0: [8086:0c00] type 00 class 0x060000
[ 0.564861] pci 0000:00:02.0: [8086:0412] type 00 class 0x030000
[ 0.564868] pci 0000:00:02.0: reg 0x10: [mem 0xf7800000-0xf7bfffff 64bit]
[ 0.564873] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[ 0.564876] pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
[ 0.745130] pci 0000:00:03.0: [8086:0c0c] type 00 class 0x040300
[ 0.745137] pci 0000:00:03.0: reg 0x10: [mem 0xf7e14000-0xf7e17fff 64bit]
[ 0.745228] pci 0000:00:14.0: [8086:8c31] type 00 class 0x0c0330
[ 0.745243] pci 0000:00:14.0: reg 0x10: [mem 0xf7e00000-0xf7e0ffff 64bit]
[ 0.745295] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.745328] pci 0000:00:14.0: System wakeup disabled by ACPI
[ 0.745358] pci 0000:00:16.0: [8086:8c3a] type 00 class 0x078000
[ 0.745374] pci 0000:00:16.0: reg 0x10: [mem 0xf7e1e000-0xf7e1e00f 64bit]
[ 0.745429] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.745494] pci 0000:00:1a.0: [8086:8c2d] type 00 class 0x0c0320
[ 0.745509] pci 0000:00:1a.0: reg 0x10: [mem 0xf7e1c000-0xf7e1c3ff]
[ 0.745581] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 0.745615] pci 0000:00:1a.0: System wakeup disabled by ACPI
[ 0.745646] pci 0000:00:1b.0: [8086:8c20] type 00 class 0x040300
[ 0.745659] pci 0000:00:1b.0: reg 0x10: [mem 0xf7e10000-0xf7e13fff 64bit]
[ 0.745720] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.745754] pci 0000:00:1b.0: System wakeup disabled by ACPI
[ 0.745783] pci 0000:00:1c.0: [8086:8c10] type 01 class 0x060400
[ 0.745838] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.745902] pci 0000:00:1c.0: System wakeup disabled by ACPI
[ 0.745932] pci 0000:00:1c.2: [8086:8c14] type 01 class 0x060400
[ 0.745988] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[ 0.746046] pci 0000:00:1c.2: System wakeup disabled by ACPI
[ 0.746075] pci 0000:00:1c.3: [8086:8c16] type 01 class 0x060400
[ 0.746131] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 0.746190] pci 0000:00:1c.3: System wakeup disabled by ACPI
[ 0.746224] pci 0000:00:1d.0: [8086:8c26] type 00 class 0x0c0320
[ 0.746240] pci 0000:00:1d.0: reg 0x10: [mem 0xf7e1b000-0xf7e1b3ff]
[ 0.746315] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.746348] pci 0000:00:1d.0: System wakeup disabled by ACPI
[ 0.746378] pci 0000:00:1f.0: [8086:8c5c] type 00 class 0x060100
[ 0.746521] pci 0000:00:1f.2: [8086:8c02] type 00 class 0x010601
[ 0.746533] pci 0000:00:1f.2: reg 0x10: [io 0xf0b0-0xf0b7]
[ 0.746539] pci 0000:00:1f.2: reg 0x14: [io 0xf0a0-0xf0a3]
[ 0.746546] pci 0000:00:1f.2: reg 0x18: [io 0xf090-0xf097]
[ 0.746552] pci 0000:00:1f.2: reg 0x1c: [io 0xf080-0xf083]
[ 0.746559] pci 0000:00:1f.2: reg 0x20: [io 0xf060-0xf07f]
[ 0.746565] pci 0000:00:1f.2: reg 0x24: [mem 0xf7e1a000-0xf7e1a7ff]
[ 0.746596] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.746652] pci 0000:00:1f.3: [8086:8c22] type 00 class 0x0c0500
[ 0.746665] pci 0000:00:1f.3: reg 0x10: [mem 0xf7e19000-0xf7e190ff 64bit]
[ 0.746682] pci 0000:00:1f.3: reg 0x20: [io 0xf040-0xf05f]
[ 0.746800] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.746871] pci 0000:02:00.0: [104c:8240] type 01 class 0x060400
[ 0.746993] pci 0000:02:00.0: supports D1 D2
[ 0.747023] pci 0000:02:00.0: System wakeup disabled by ACPI
[ 0.755339] pci 0000:00:1c.2: PCI bridge to [bus 02-03]
[ 0.755344] pci 0000:00:1c.2: bridge window [mem 0xf7d00000-0xf7dfffff]
[ 0.755423] pci 0000:03:00.0: [2718:5125] type 00 class 0x110000
[ 0.755447] pci 0000:03:00.0: reg 0x10: [mem 0xf7d00000-0xf7d0ffff]
[ 0.755666] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.755677] pci 0000:02:00.0: bridge window [mem 0xf7d00000-0xf7dfffff]
[ 0.755764] pci 0000:04:00.0: [10ec:8168] type 00 class 0x020000
[ 0.755782] pci 0000:04:00.0: reg 0x10: [io 0xe000-0xe0ff]
[ 0.755808] pci 0000:04:00.0: reg 0x18: [mem 0xf7c00000-0xf7c00fff 64bit]
[ 0.755825] pci 0000:04:00.0: reg 0x20: [mem 0xf0000000-0xf0003fff 64bit pref]
[ 0.755912] pci 0000:04:00.0: supports D1 D2
[ 0.755913] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.755951] pci 0000:04:00.0: System wakeup disabled by ACPI
[ 0.771343] pci 0000:00:1c.3: PCI bridge to [bus 04]
[ 0.771346] pci 0000:00:1c.3: bridge window [io 0xe000-0xefff]
[ 0.771349] pci 0000:00:1c.3: bridge window [mem 0xf7c00000-0xf7cfffff]
[ 0.771353] pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
[ 0.771942] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 0.771979] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.772017] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 10 11 12 14 15)
[ 0.772054] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
[ 0.772090] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.772128] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.772164] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 10 11 12 14 15)
[ 0.772198] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 *4 5 6 10 11 12 14 15)
[ 0.772433] ACPI: Enabled 4 GPEs in block 00 to 3F
[ 0.772504] vgaarb: setting as boot device: PCI:0000:00:02.0
[ 0.772505] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.772508] vgaarb: loaded
[ 0.772509] vgaarb: bridge control possible 0000:00:02.0
[ 0.772556] PCI: Using ACPI for IRQ routing
[ 0.773723] PCI: pci_cache_line_size set to 64 bytes
[ 0.773764] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[ 0.773765] e820: reserve RAM buffer [mem 0xd2181000-0xd3ffffff]
[ 0.773766] e820: reserve RAM buffer [mem 0xd25bf000-0xd3ffffff]
[ 0.773767] e820: reserve RAM buffer [mem 0xd7ee4000-0xd7ffffff]
[ 0.773768] e820: reserve RAM buffer [mem 0xd875e000-0xdbffffff]
[ 0.773769] e820: reserve RAM buffer [mem 0xd8fae000-0xdbffffff]
[ 0.773769] e820: reserve RAM buffer [mem 0xda71c000-0xdbffffff]
[ 0.773770] e820: reserve RAM buffer [mem 0xdb7fd000-0xdbffffff]
[ 0.773771] e820: reserve RAM buffer [mem 0x21fe00000-0x21fffffff]
[ 0.773873] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.773878] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.775902] clocksource: Switched to clocksource hpet
[ 0.783082] VFS: Disk quotas dquot_6.6.0
[ 0.783099] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.783169] pnp: PnP ACPI init
[ 0.783250] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
[ 0.783253] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.783393] system 00:01: [io 0x0680-0x069f] has been reserved
[ 0.783394] system 00:01: [io 0xffff] has been reserved
[ 0.783395] system 00:01: [io 0xffff] has been reserved
[ 0.783396] system 00:01: [io 0xffff] has been reserved
[ 0.783398] system 00:01: [io 0x1c00-0x1cfe] has been reserved
[ 0.783399] system 00:01: [io 0x1d00-0x1dfe] has been reserved
[ 0.783400] system 00:01: [io 0x1e00-0x1efe] has been reserved
[ 0.783401] system 00:01: [io 0x1f00-0x1ffe] has been reserved
[ 0.783402] system 00:01: [io 0x1800-0x18fe] has been reserved
[ 0.783403] system 00:01: [io 0x164e-0x164f] has been reserved
[ 0.783405] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.783424] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.783463] system 00:03: [io 0x1854-0x1857] has been reserved
[ 0.783465] system 00:03: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[ 0.783540] system 00:04: [io 0x0a00-0x0a0f] has been reserved
[ 0.783542] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.783581] system 00:05: [io 0x04d0-0x04d1] has been reserved
[ 0.783583] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.783994] system 00:06: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.783996] system 00:06: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.783997] system 00:06: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.783998] system 00:06: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.784000] system 00:06: [mem 0xf8000000-0xfbffffff] has been reserved
[ 0.784001] system 00:06: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.784002] system 00:06: [mem 0xfed90000-0xfed93fff] has been reserved
[ 0.784003] system 00:06: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.784005] system 00:06: [mem 0xff000000-0xffffffff] has been reserved
[ 0.784006] system 00:06: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.784007] system 00:06: [mem 0xf7fdf000-0xf7fdffff] has been reserved
[ 0.784008] system 00:06: [mem 0xf7fe0000-0xf7feffff] has been reserved
[ 0.784011] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.784174] pnp: PnP ACPI: found 7 devices
[ 0.790176] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.790187] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000
[ 0.790189] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[ 0.790191] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[ 0.790214] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[ 0.790215] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x002fffff] res_to_dev_res add_size 200000 min_align 100000
[ 0.790216] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.790217] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.790219] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.790220] pci 0000:00:1c.0: res[13]=[io 0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.790224] pci 0000:00:1c.0: BAR 14: assigned [mem 0xdf200000-0xdf3fffff]
[ 0.790229] pci 0000:00:1c.0: BAR 15: assigned [mem 0xdf400000-0xdf5fffff 64bit pref]
[ 0.790231] pci 0000:00:1c.0: BAR 13: assigned [io 0x2000-0x2fff]
[ 0.790232] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.790235] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
[ 0.790240] pci 0000:00:1c.0: bridge window [mem 0xdf200000-0xdf3fffff]
[ 0.790243] pci 0000:00:1c.0: bridge window [mem 0xdf400000-0xdf5fffff 64bit pref]
[ 0.790248] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.790254] pci 0000:02:00.0: bridge window [mem 0xf7d00000-0xf7dfffff]
[ 0.790266] pci 0000:00:1c.2: PCI bridge to [bus 02-03]
[ 0.790270] pci 0000:00:1c.2: bridge window [mem 0xf7d00000-0xf7dfffff]
[ 0.790277] pci 0000:00:1c.3: PCI bridge to [bus 04]
[ 0.790279] pci 0000:00:1c.3: bridge window [io 0xe000-0xefff]
[ 0.790283] pci 0000:00:1c.3: bridge window [mem 0xf7c00000-0xf7cfffff]
[ 0.790287] pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
[ 0.790292] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.790293] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.790294] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.790295] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff window]
[ 0.790296] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff window]
[ 0.790297] pci_bus 0000:00: resource 9 [mem 0x000dc000-0x000dffff window]
[ 0.790298] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000e3fff window]
[ 0.790299] pci_bus 0000:00: resource 11 [mem 0x000e4000-0x000e7fff window]
[ 0.790300] pci_bus 0000:00: resource 12 [mem 0xdf200000-0xfeafffff window]
[ 0.790301] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
[ 0.790302] pci_bus 0000:01: resource 1 [mem 0xdf200000-0xdf3fffff]
[ 0.790303] pci_bus 0000:01: resource 2 [mem 0xdf400000-0xdf5fffff 64bit pref]
[ 0.790304] pci_bus 0000:02: resource 1 [mem 0xf7d00000-0xf7dfffff]
[ 0.790305] pci_bus 0000:03: resource 1 [mem 0xf7d00000-0xf7dfffff]
[ 0.790306] pci_bus 0000:04: resource 0 [io 0xe000-0xefff]
[ 0.790307] pci_bus 0000:04: resource 1 [mem 0xf7c00000-0xf7cfffff]
[ 0.790308] pci_bus 0000:04: resource 2 [mem 0xf0000000-0xf00fffff 64bit pref]
[ 0.790383] NET: Registered protocol family 2
[ 0.790469] IP idents hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.791290] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
[ 0.791560] TCP bind hash table entries: 65536 (order: 9, 3670016 bytes)
[ 0.792134] TCP: Hash tables configured (established 65536 bind 65536)
[ 0.792177] UDP hash table entries: 4096 (order: 7, 524288 bytes)
[ 0.792288] UDP-Lite hash table entries: 4096 (order: 7, 524288 bytes)
[ 0.792400] NET: Registered protocol family 1
[ 0.792410] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.844011] PCI: CLS 64 bytes, default 64
[ 0.844050] Unpacking initramfs...
[ 1.118184] Freeing initrd memory: 28516K
[ 1.118187] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 1.118189] software IO TLB: mapped [mem 0xd3ee4000-0xd7ee4000] (64MB)
[ 1.118470] audit: initializing netlink subsys (disabled)
[ 1.118485] audit: type=2000 audit(1715376316.664:1): initialized
[ 1.118825] workingset: timestamp_bits=40 max_order=21 bucket_order=0
[ 1.120019] zbud: loaded
[ 1.120785] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[ 1.120810] io scheduler noop registered
[ 1.120810] io scheduler deadline registered
[ 1.120832] io scheduler cfq registered (default)
[ 1.121385] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[ 1.121389] pcie_pme 0000:00:1c.0:pcie001: service driver pcie_pme loaded
[ 1.121422] pcieport 0000:00:1c.2: Signaling PME through PCIe PME interrupt
[ 1.121423] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
[ 1.121424] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[ 1.121428] pcie_pme 0000:00:1c.2:pcie001: service driver pcie_pme loaded
[ 1.121463] pcieport 0000:00:1c.3: Signaling PME through PCIe PME interrupt
[ 1.121464] pci 0000:04:00.0: Signaling PME through PCIe PME interrupt
[ 1.121467] pcie_pme 0000:00:1c.3:pcie001: service driver pcie_pme loaded
[ 1.121475] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 1.121484] pciehp 0000:00:1c.0:pcie004: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+
[ 1.121518] pciehp 0000:00:1c.0:pcie004: service driver pciehp loaded
[ 1.121522] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 1.121535] intel_idle: MWAIT substates: 0x42120
[ 1.121536] intel_idle: v0.4.1 model 0x3C
[ 1.121646] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 1.121762] GHES: HEST is not enabled!
[ 1.121813] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 1.122157] Linux agpgart interface v0.103
[ 1.122236] AMD IOMMUv2 driver by Joerg Roedel <This email address is being protected from spambots. You need JavaScript enabled to view it.>
[ 1.122237] AMD IOMMUv2 functionality not available on this system
[ 1.122466] i8042: PNP: No PS/2 controller found. Probing ports directly.
[ 1.125170] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.125197] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.125306] mousedev: PS/2 mouse device common for all mice
[ 1.125338] rtc_cmos 00:02: RTC can wake from S4
[ 1.125467] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[ 1.125545] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 1.125552] intel_pstate: Intel P-state driver initializing
[ 1.126052] NET: Registered protocol family 10
[ 1.126213] mip6: Mobile IPv6
[ 1.126215] NET: Registered protocol family 17
[ 1.126217] mpls_gso: MPLS GSO support
[ 1.126384] microcode: sig=0x306c3, pf=0x2, revision=0x28
[ 1.126452] microcode: Microcode Update Driver: v2.01 <This email address is being protected from spambots. You need JavaScript enabled to view it.>, Peter Oruba
[ 1.126595] registered taskstats version 1
[ 1.126611] zswap: loaded using pool lzo/zbud
[ 1.126641] ima: No TPM chip found, activating TPM-bypass!
[ 1.126642] ima: Allocated hash algorithm: sha256
[ 1.126968] rtc_cmos 00:02: setting system clock to 2024-05-10 21:25:17 UTC (1715376317)
[ 1.127020] PM: Hibernation image not present or could not be loaded.
[ 1.127769] Freeing unused kernel memory: 1692K
[ 1.127769] Write protecting the kernel read-only data: 12288k
[ 1.128247] Freeing unused kernel memory: 1736K
[ 1.129993] Freeing unused kernel memory: 1176K
[ 1.133511] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.144906] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 1.144965] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 1.144973] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 1.176956] ACPI: bus type USB registered
[ 1.177321] usbcore: registered new interface driver usbfs
[ 1.178000] usbcore: registered new interface driver hub
[ 1.178528] usbcore: registered new device driver usb
[ 1.183225] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[ 1.184927] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.187310] SCSI subsystem initialized
[ 1.188007] ehci-pci: EHCI PCI platform driver
[ 1.192114] thermal LNXTHERM:00: registered as thermal_zone0
[ 1.192116] ACPI: Thermal Zone [TZ00] (28 C)
[ 1.192343] ehci-pci 0000:00:1a.0: EHCI Host Controller
[ 1.192527] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 1.192538] ehci-pci 0000:00:1a.0: debug port 2
[ 1.195389] thermal LNXTHERM:01: registered as thermal_zone1
[ 1.195390] ACPI: Thermal Zone [TZ01] (30 C)
[ 1.196454] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[ 1.196483] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7e1c000
[ 1.198541] r8169 0000:04:00.0 eth0: RTL8168g/8111g at 0xffff9b79c1475000, b0:83:fe:95:ff:5e, XID 0c000800 IRQ 27
[ 1.198543] r8169 0000:04:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[ 1.200055] libata version 3.00 loaded.
[ 1.205617] AVX2 version of gcm_enc/dec engaged.
[ 1.205618] AES CTR mode by8 optimization enabled
[ 1.211934] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 1.212126] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.212127] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.212129] usb usb1: Product: EHCI Host Controller
[ 1.212130] usb usb1: Manufacturer: Linux 4.9.0-17-rt-amd64 ehci_hcd
[ 1.212130] usb usb1: SerialNumber: 0000:00:1a.0
[ 1.214786] hub 1-0:1.0: USB hub found
[ 1.214796] hub 1-0:1.0: 2 ports detected
[ 1.215321] i801_smbus 0000:00:1f.3: SPD Write Disable is set
[ 1.215365] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[ 1.216084] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.216089] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 1.217166] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[ 1.217170] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[ 1.217330] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.217331] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.217332] usb usb2: Product: xHCI Host Controller
[ 1.217333] usb usb2: Manufacturer: Linux 4.9.0-17-rt-amd64 xhci-hcd
[ 1.217334] usb usb2: SerialNumber: 0000:00:14.0
[ 1.217429] hub 2-0:1.0: USB hub found
[ 1.217444] hub 2-0:1.0: 10 ports detected
[ 1.218551] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.218554] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[ 1.218624] usb usb3: New USB device found, idVendor=1d6b, idProduct=0003
[ 1.218626] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.218627] usb usb3: Product: xHCI Host Controller
[ 1.218628] usb usb3: Manufacturer: Linux 4.9.0-17-rt-amd64 xhci-hcd
[ 1.218629] usb usb3: SerialNumber: 0000:00:14.0
[ 1.218728] hub 3-0:1.0: USB hub found
[ 1.218739] hub 3-0:1.0: 2 ports detected
[ 1.218940] ahci 0000:00:1f.2: version 3.0
[ 1.219144] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 6 Gbps 0x21 impl SATA mode
[ 1.219146] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems
[ 1.228780] scsi host0: ahci
[ 1.228933] scsi host1: ahci
[ 1.229038] scsi host2: ahci
[ 1.229109] scsi host3: ahci
[ 1.229177] scsi host4: ahci
[ 1.229245] scsi host5: ahci
[ 1.229283] ata1: SATA max UDMA/133 abar m2048@0xf7e1a000 port 0xf7e1a100 irq 29
[ 1.229283] ata2: DUMMY
[ 1.229284] ata3: DUMMY
[ 1.229284] ata4: DUMMY
[ 1.229285] ata5: DUMMY
[ 1.229287] ata6: SATA max UDMA/133 abar m2048@0xf7e1a000 port 0xf7e1a380 irq 29
[ 1.229601] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 1.229605] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
[ 1.229614] ehci-pci 0000:00:1d.0: debug port 2
[ 1.233501] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[ 1.233562] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7e1b000
[ 1.248002] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 1.248052] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.248053] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.248054] usb usb4: Product: EHCI Host Controller
[ 1.248055] usb usb4: Manufacturer: Linux 4.9.0-17-rt-amd64 ehci_hcd
[ 1.248056] usb usb4: SerialNumber: 0000:00:1d.0
[ 1.248222] hub 4-0:1.0: USB hub found
[ 1.248226] hub 4-0:1.0: 2 ports detected
[ 1.459966] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 1.463963] usb 2-5: new low-speed USB device number 2 using xhci_hcd
[ 1.495964] usb 4-1: new high-speed USB device number 2 using ehci-pci
[ 1.543070] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 1.543128] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 1.545630] ata1.00: NCQ Send/Recv Log not supported
[ 1.545641] ata1.00: ATA-9: SAMSUNG SSD PM851 2.5 7mm 128GB, EXT08D0Q, max UDMA/133
[ 1.545642] ata1.00: 250069680 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 1.546291] ata1.00: NCQ Send/Recv Log not supported
[ 1.546333] ata1.00: configured for UDMA/133
[ 1.546516] scsi 0:0:0:0: Direct-Access ATA SAMSUNG SSD PM85 8D0Q PQ: 0 ANSI: 5
[ 1.547660] ata6.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[ 1.547662] ata6.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 1.547664] ata6.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 1.547931] ata6.00: ATAPI: PLDS DVD+/-RW DS-8ABSH, LD11, max UDMA/133
[ 1.555198] ata6.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[ 1.555211] ata6.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 1.555212] ata6.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 1.555523] ata6.00: configured for UDMA/133
[ 1.596350] scsi 5:0:0:0: CD-ROM PLDS DVD+-RW DS-8ABSH LD11 PQ: 0 ANSI: 5
[ 1.607584] usb 2-5: New USB device found, idVendor=413c, idProduct=301a
[ 1.607586] usb 2-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.607587] usb 2-5: Product: Dell MS116 USB Optical Mouse
[ 1.607588] usb 2-5: Manufacturer: PixArt
[ 1.608305] usb 1-1: New USB device found, idVendor=8087, idProduct=8008
[ 1.608306] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.608632] hub 1-1:1.0: USB hub found
[ 1.608784] hub 1-1:1.0: 4 ports detected
[ 1.609094] hidraw: raw HID events driver (C) Jiri Kosina
[ 1.610721] usbcore: registered new interface driver usbhid
[ 1.610722] usbhid: USB HID core driver
[ 1.611322] input: PixArt Dell MS116 USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb2/2-5/2-5:1.0/0003:413C:301A.0001/input/input3
[ 1.614110] hid-generic 0003:413C:301A.0001: input,hidraw0: USB HID v1.11 Mouse [PixArt Dell MS116 USB Optical Mouse] on usb-0000:00:14.0-5/input0
[ 1.615664] sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
[ 1.615689] sd 0:0:0:0: [sda] Write Protect is off
[ 1.615691] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.615699] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.622657] sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[ 1.623043] sd 0:0:0:0: [sda] Attached SCSI disk
[ 1.632470] sr 5:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 1.632471] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 1.632580] sr 5:0:0:0: Attached scsi CD-ROM sr0
[ 1.644485] usb 4-1: New USB device found, idVendor=8087, idProduct=8000
[ 1.644487] usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.644829] hub 4-1:1.0: USB hub found
[ 1.644938] hub 4-1:1.0: 6 ports detected
[ 1.727940] usb 2-6: new low-speed USB device number 3 using xhci_hcd
[ 1.790515] random: fast init done
[ 1.792303] PM: Starting manual resume from disk
[ 1.792305] PM: Hibernation image partition 8:7 present
[ 1.792305] PM: Looking for hibernation image.
[ 1.792520] PM: Image not found (code -22)
[ 1.792520] PM: Hibernation image not present or could not be loaded.
[ 1.888643] usb 2-6: New USB device found, idVendor=0d62, idProduct=3f41
[ 1.888645] usb 2-6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.888646] usb 2-6: Product: HP Wired Desktop 320K Keyboard
[ 1.888647] usb 2-6: Manufacturer: Darfon
[ 1.892892] input: Darfon HP Wired Desktop 320K Keyboard as /devices/pci0000:00/0000:00:14.0/usb2/2-6/2-6:1.0/0003:0D62:3F41.0002/input/input4
[ 1.893298] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
[ 1.952156] hid-generic 0003:0D62:3F41.0002: input,hidraw1: USB HID v1.11 Keyboard [Darfon HP Wired Desktop 320K Keyboard] on usb-0000:00:14.0-6/input0
[ 1.956187] input: Darfon HP Wired Desktop 320K Keyboard as /devices/pci0000:00/0000:00:14.0/usb2/2-6/2-6:1.1/0003:0D62:3F41.0003/input/input5
[ 2.016091] hid-generic 0003:0D62:3F41.0003: input,hidraw2: USB HID v1.11 Device [Darfon HP Wired Desktop 320K Keyboard] on usb-0000:00:14.0-6/input1
[ 2.143988] tsc: Refined TSC clocksource calibration: 3292.375 MHz
[ 2.143993] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2f75298baf3, max_idle_ns: 440795322961 ns
[ 2.400482] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 2.414891] systemd[1]: systemd 232 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[ 2.415061] systemd[1]: Detected architecture x86-64.
[ 2.418799] systemd[1]: Set hostname to <CNCRouterPC>.
[ 2.629288] systemd[1]: NetworkManager-wait-online.service: Cannot add dependency job, ignoring: Unit NetworkManager-wait-online.service is masked.
[ 2.629308] systemd[1]: NetworkManager.service: Cannot add dependency job, ignoring: Unit NetworkManager.service is masked.
[ 2.629318] systemd[1]: live-tools.service: Cannot add dependency job, ignoring: Unit live-tools.service is masked.
[ 2.629994] systemd[1]: Created slice System Slice.
[ 2.630126] systemd[1]: Created slice system-getty.slice.
[ 2.630187] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[ 2.630233] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[ 2.680829] EXT4-fs (sda6): re-mounted. Opts: errors=remount-ro
[ 2.709800] lp: driver loaded but no devices found
[ 2.718095] ppdev: user-space parallel port driver
[ 2.768182] systemd-journald[257]: Received request to flush runtime journal from PID 1
[ 3.078355] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input6
[ 3.078359] ACPI: Power Button [PWRB]
[ 3.078410] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input7
[ 3.078411] ACPI: Power Button [PWRF]
[ 3.143217] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 3.168027] clocksource: Switched to clocksource tsc
[ 3.206849] [drm] Initialized
[ 3.350316] [drm] PipeC fused off
[ 3.350326] [drm] Memory usable by graphics device = 2048M
[ 3.350327] [drm] Replacing VGA console driver
[ 3.352497] Console: switching to colour dummy device 80x25
[ 3.359701] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 3.359702] [drm] Driver supports precise vblank timestamp query.
[ 3.372417] wmi: Mapper loaded
[ 3.376922] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 3.413791] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 3.418595] acpi device:60: registered as cooling_device9
[ 3.423045] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input8
[ 3.423404] [drm] Initialized i915 1.6.0 20160919 for 0000:00:02.0 on minor 0
[ 3.438086] snd_hda_intel 0000:00:03.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[ 3.444217] fbcon: inteldrmfb (fb0) is primary device
[ 3.487026] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 3.489860] sr 5:0:0:0: Attached scsi generic sg1 type 5
[ 3.521146] Console: switching to colour frame buffer device 240x67
[ 3.540576] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[ 3.551359] snd_hda_codec_realtek hdaudioC1D2: autoconfig for ALC3220: line_outs=1 (0x1b/0x0/0x0/0x0/0x0) type:line
[ 3.551361] snd_hda_codec_realtek hdaudioC1D2: speaker_outs=1 (0x14/0x0/0x0/0x0/0x0)
[ 3.551363] snd_hda_codec_realtek hdaudioC1D2: hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
[ 3.551364] snd_hda_codec_realtek hdaudioC1D2: mono: mono_out=0x0
[ 3.551364] snd_hda_codec_realtek hdaudioC1D2: inputs:
[ 3.551366] snd_hda_codec_realtek hdaudioC1D2: Front Mic=0x1a
[ 3.551367] snd_hda_codec_realtek hdaudioC1D2: Rear Mic=0x18
[ 3.551890] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input9
[ 3.566775] input: PC Speaker as /devices/platform/pcspkr/input/input14
[ 3.581544] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input10
[ 3.586936] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input11
[ 3.592198] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card1/input12
[ 3.596971] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input13
[ 3.655532] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[ 3.655533] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 3.655534] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 3.655534] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 3.655535] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[ 3.776159] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[ 3.868352] iTCO_vendor_support: vendor-support=0
[ 3.874154] Adding 8303612k swap on /dev/sda7. Priority:-1 extents:1 across:8303612k SSFS
[ 3.875083] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[ 3.875538] iTCO_wdt: Found a Lynx Point TCO device (Version=2, TCOBASE=0x1860)
[ 3.885973] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 3.902426] dell_wmi: Detected Dell WMI interface version 1
[ 3.906212] input: Dell WMI hotkeys as /devices/virtual/input/input15
[ 4.025277] intel_rapl: Found RAPL domain package
[ 4.025279] intel_rapl: Found RAPL domain core
[ 4.025280] intel_rapl: Found RAPL domain uncore
[ 4.025281] intel_rapl: Found RAPL domain dram
[ 4.025282] intel_rapl: RAPL package 0 domain package locked by BIOS
[ 4.025286] intel_rapl: RAPL package 0 domain dram locked by BIOS
[ 4.605478] r8169 0000:04:00.0: firmware: direct-loading firmware rtl_nic/rtl8168g-2.fw
[ 4.678206] r8169 0000:04:00.0 eth0: link down
[ 4.678221] r8169 0000:04:00.0 eth0: link down
[ 4.678263] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 6.936482] r8169 0000:04:00.0 eth0: link up
[ 6.936486] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 29.024668] random: crng init done
[ 29.024670] random: 7 urandom warning(s) missed due to ratelimiting
04 May 2024 13:59
Replied by hitchhiker on topic Debian 12 Bookworm Linuxcnc 2.9.2....Latency problem
Debian 12 Bookworm Linuxcnc 2.9.2....Latency problem
Category: Installing LinuxCNC
after sudo dpkg headers and image =
uname -v=
#3 SMP PREEMPT_RT Sun Apr 28 23:39:38 CEST 2024
cat /proc/cmdline=
BOOT_IMAGE=/boot/vmlinuz-6.9.0-rc5-rt1+ root=UUID=1c171f88-4f36-42ba-b84a-1dcf20ae1a6b ro initrd=/install/gtk/initrd.gz quiet
cat /proc/interrupts=
CPU0 CPU1 CPU2 CPU3
0: 20 0 0 0 IO-APIC 2-edge timer
8: 0 0 0 0 IO-APIC 8-edge rtc0
9: 0 4 0 0 IO-APIC 9-fasteoi acpi
16: 0 0 0 25 IO-APIC 16-fasteoi ehci_hcd:usb1
18: 0 0 5 0 IO-APIC 18-fasteoi i801_smbus
23: 0 31 0 0 IO-APIC 23-fasteoi ehci_hcd:usb3
24: 0 0 0 0 PCI-MSI-0000:00:1c.0 0-edge PCIe PME, pciehp
25: 0 0 0 0 PCI-MSI-0000:00:1c.2 0-edge PCIe PME
26: 0 0 0 0 PCI-MSI-0000:00:1c.3 0-edge PCIe PME
27: 71 0 0 0 PCI-MSIX-0000:02:00.0 0-edge enp2s0
28: 4315 0 0 0 PCI-MSI-0000:00:14.0 0-edge xhci_hcd
29: 0 0 13954 0 PCI-MSI-0000:00:1f.2 0-edge ahci[0000:00:1f.2]
30: 0 0 0 7021 PCI-MSI-0000:00:02.0 0-edge i915
31: 22 0 0 0 PCI-MSI-0000:00:16.0 0-edge mei_me
32: 0 2407 0 0 PCI-MSI-0000:03:00.0 0-edge iwlwifi
33: 0 0 322 0 PCI-MSI-0000:00:03.0 0-edge snd_hda_intel:card0
34: 0 0 0 466 PCI-MSI-0000:00:1b.0 0-edge snd_hda_intel:card1
NMI: 1 0 0 1 Non-maskable interrupts
LOC: 26236 24028 22816 26873 Local timer interrupts
SPU: 0 0 0 0 Spurious interrupts
PMI: 1 0 0 1 Performance monitoring interrupts
IWI: 1074 1085 1382 4708 IRQ work interrupts
RTR: 0 0 0 0 APIC ICR read retries
RES: 907 822 916 928 Rescheduling interrupts
CAL: 5927 4453 4487 5567 Function call interrupts
TLB: 1085 470 1086 980 TLB shootdowns
TRM: 0 0 0 0 Thermal event interrupts
THR: 0 0 0 0 Threshold APIC interrupts
MCE: 0 0 0 0 Machine check exceptions
MCP: 1 2 2 2 Machine check polls
ERR: 1
MIS: 0
uname -v=
#3 SMP PREEMPT_RT Sun Apr 28 23:39:38 CEST 2024
cat /proc/cmdline=
BOOT_IMAGE=/boot/vmlinuz-6.9.0-rc5-rt1+ root=UUID=1c171f88-4f36-42ba-b84a-1dcf20ae1a6b ro initrd=/install/gtk/initrd.gz quiet
cat /proc/interrupts=
CPU0 CPU1 CPU2 CPU3
0: 20 0 0 0 IO-APIC 2-edge timer
8: 0 0 0 0 IO-APIC 8-edge rtc0
9: 0 4 0 0 IO-APIC 9-fasteoi acpi
16: 0 0 0 25 IO-APIC 16-fasteoi ehci_hcd:usb1
18: 0 0 5 0 IO-APIC 18-fasteoi i801_smbus
23: 0 31 0 0 IO-APIC 23-fasteoi ehci_hcd:usb3
24: 0 0 0 0 PCI-MSI-0000:00:1c.0 0-edge PCIe PME, pciehp
25: 0 0 0 0 PCI-MSI-0000:00:1c.2 0-edge PCIe PME
26: 0 0 0 0 PCI-MSI-0000:00:1c.3 0-edge PCIe PME
27: 71 0 0 0 PCI-MSIX-0000:02:00.0 0-edge enp2s0
28: 4315 0 0 0 PCI-MSI-0000:00:14.0 0-edge xhci_hcd
29: 0 0 13954 0 PCI-MSI-0000:00:1f.2 0-edge ahci[0000:00:1f.2]
30: 0 0 0 7021 PCI-MSI-0000:00:02.0 0-edge i915
31: 22 0 0 0 PCI-MSI-0000:00:16.0 0-edge mei_me
32: 0 2407 0 0 PCI-MSI-0000:03:00.0 0-edge iwlwifi
33: 0 0 322 0 PCI-MSI-0000:00:03.0 0-edge snd_hda_intel:card0
34: 0 0 0 466 PCI-MSI-0000:00:1b.0 0-edge snd_hda_intel:card1
NMI: 1 0 0 1 Non-maskable interrupts
LOC: 26236 24028 22816 26873 Local timer interrupts
SPU: 0 0 0 0 Spurious interrupts
PMI: 1 0 0 1 Performance monitoring interrupts
IWI: 1074 1085 1382 4708 IRQ work interrupts
RTR: 0 0 0 0 APIC ICR read retries
RES: 907 822 916 928 Rescheduling interrupts
CAL: 5927 4453 4487 5567 Function call interrupts
TLB: 1085 470 1086 980 TLB shootdowns
TRM: 0 0 0 0 Thermal event interrupts
THR: 0 0 0 0 Threshold APIC interrupts
MCE: 0 0 0 0 Machine check exceptions
MCP: 1 2 2 2 Machine check polls
ERR: 1
MIS: 0
04 May 2024 13:22
Replied by hitchhiker on topic Debian 12 Bookworm Linuxcnc 2.9.2....Latency problem
Debian 12 Bookworm Linuxcnc 2.9.2....Latency problem
Category: Installing LinuxCNC
after i dist-upgrade :
uname -v=
#1 SMP PREEMPT_RT Debian 6.1.85-1 (2024-04-11)
cat /proc/cmdline=
BOOT_IMAGE=/boot/vmlinuz-6.1.0-20-rt-amd64 root=UUID=1c171f88-4f36-42ba-b84a-1dcf20ae1a6b ro initrd=/install/gtk/initrd.gz quiet
cat /proc/interrupts=
CPU0 CPU1 CPU2 CPU3
0: 8 0 0 0 IO-APIC 2-edge timer
8: 0 0 0 0 IO-APIC 8-edge rtc0
9: 0 4 0 0 IO-APIC 9-fasteoi acpi
16: 0 0 0 27 IO-APIC 16-fasteoi ehci_hcd:usb1
18: 0 0 3 0 IO-APIC 18-fasteoi i801_smbus
23: 0 0 31 0 IO-APIC 23-fasteoi ehci_hcd:usb3
24: 0 0 0 0 PCI-MSI 458752-edge PCIe PME, pciehp
25: 0 0 0 0 PCI-MSI 462848-edge PCIe PME
26: 0 0 0 0 PCI-MSI 464896-edge PCIe PME
27: 50 0 0 0 PCI-MSI 1048576-edge enp2s0
28: 13962 0 0 0 PCI-MSI 512000-edge ahci[0000:00:1f.2]
29: 0 2805 0 0 PCI-MSI 327680-edge xhci_hcd
30: 0 0 0 4484 PCI-MSI 32768-edge i915
31: 18 0 0 0 PCI-MSI 360448-edge mei_me
32: 0 4590 0 0 PCI-MSI 1572864-edge iwlwifi
33: 0 0 322 0 PCI-MSI 49152-edge snd_hda_intel:card0
34: 0 0 0 466 PCI-MSI 442368-edge snd_hda_intel:card1
NMI: 0 0 0 0 Non-maskable interrupts
LOC: 10116 10066 9694 9853 Local timer interrupts
SPU: 0 0 0 0 Spurious interrupts
PMI: 0 0 0 0 Performance monitoring interrupts
IWI: 808 698 598 4301 IRQ work interrupts
RTR: 0 0 0 0 APIC ICR read retries
RES: 2950 3180 3717 3080 Rescheduling interrupts
CAL: 7556 8256 5742 6800 Function call interrupts
TLB: 1080 781 519 815 TLB shootdowns
TRM: 0 0 0 0 Thermal event interrupts
THR: 0 0 0 0 Threshold APIC interrupts
DFR: 0 0 0 0 Deferred Error APIC interrupts
MCE: 0 0 0 0 Machine check exceptions
MCP: 1 2 2 2 Machine check polls
ERR: 1
MIS: 0
PIN: 0 0 0 0 Posted-interrupt notification event
NPI: 0 0 0 0 Nested posted-interrupt event
PIW: 0 0 0 0 Posted-interrupt wakeup event
uname -v=
#1 SMP PREEMPT_RT Debian 6.1.85-1 (2024-04-11)
cat /proc/cmdline=
BOOT_IMAGE=/boot/vmlinuz-6.1.0-20-rt-amd64 root=UUID=1c171f88-4f36-42ba-b84a-1dcf20ae1a6b ro initrd=/install/gtk/initrd.gz quiet
cat /proc/interrupts=
CPU0 CPU1 CPU2 CPU3
0: 8 0 0 0 IO-APIC 2-edge timer
8: 0 0 0 0 IO-APIC 8-edge rtc0
9: 0 4 0 0 IO-APIC 9-fasteoi acpi
16: 0 0 0 27 IO-APIC 16-fasteoi ehci_hcd:usb1
18: 0 0 3 0 IO-APIC 18-fasteoi i801_smbus
23: 0 0 31 0 IO-APIC 23-fasteoi ehci_hcd:usb3
24: 0 0 0 0 PCI-MSI 458752-edge PCIe PME, pciehp
25: 0 0 0 0 PCI-MSI 462848-edge PCIe PME
26: 0 0 0 0 PCI-MSI 464896-edge PCIe PME
27: 50 0 0 0 PCI-MSI 1048576-edge enp2s0
28: 13962 0 0 0 PCI-MSI 512000-edge ahci[0000:00:1f.2]
29: 0 2805 0 0 PCI-MSI 327680-edge xhci_hcd
30: 0 0 0 4484 PCI-MSI 32768-edge i915
31: 18 0 0 0 PCI-MSI 360448-edge mei_me
32: 0 4590 0 0 PCI-MSI 1572864-edge iwlwifi
33: 0 0 322 0 PCI-MSI 49152-edge snd_hda_intel:card0
34: 0 0 0 466 PCI-MSI 442368-edge snd_hda_intel:card1
NMI: 0 0 0 0 Non-maskable interrupts
LOC: 10116 10066 9694 9853 Local timer interrupts
SPU: 0 0 0 0 Spurious interrupts
PMI: 0 0 0 0 Performance monitoring interrupts
IWI: 808 698 598 4301 IRQ work interrupts
RTR: 0 0 0 0 APIC ICR read retries
RES: 2950 3180 3717 3080 Rescheduling interrupts
CAL: 7556 8256 5742 6800 Function call interrupts
TLB: 1080 781 519 815 TLB shootdowns
TRM: 0 0 0 0 Thermal event interrupts
THR: 0 0 0 0 Threshold APIC interrupts
DFR: 0 0 0 0 Deferred Error APIC interrupts
MCE: 0 0 0 0 Machine check exceptions
MCP: 1 2 2 2 Machine check polls
ERR: 1
MIS: 0
PIN: 0 0 0 0 Posted-interrupt notification event
NPI: 0 0 0 0 Nested posted-interrupt event
PIW: 0 0 0 0 Posted-interrupt wakeup event
04 May 2024 13:05
Replied by hitchhiker on topic Debian 12 Bookworm Linuxcnc 2.9.2....Latency problem
Debian 12 Bookworm Linuxcnc 2.9.2....Latency problem
Category: Installing LinuxCNC
and on Debian 12 with 2.9.2
uname -v =
#1 SMP PREEMPT_RT Debian 6.1.76-1 (2024-02-01)
cat /proc/cmdline =
BOOT_IMAGE=/boot/vmlinuz-6.1.0-18-rt-amd64 root=UUID=1c171f88-4f36-42ba-b84a-1dcf20ae1a6b ro initrd=/install/gtk/initrd.gz quiet
cat /proc/interrupts=cat /proc/interrupts=
<pre> CPU0 CPU1 CPU2 CPU3
0: 8 0 0 0 IO-APIC 2-edge timer
8: 0 0 0 0 IO-APIC 8-edge rtc0
9: 0 4 0 0 IO-APIC 9-fasteoi acpi
16: 0 0 0 25 IO-APIC 16-fasteoi ehci_hcd:usb1
18: 0 0 3 0 IO-APIC 18-fasteoi i801_smbus
23: 0 0 29 0 IO-APIC 23-fasteoi ehci_hcd:usb3
24: 0 0 0 0 PCI-MSI 458752-edge PCIe PME, pciehp
25: 0 0 0 0 PCI-MSI 462848-edge PCIe PME
26: 0 0 0 0 PCI-MSI 464896-edge PCIe PME
27: 18398 0 0 0 PCI-MSI 512000-edge ahci[0000:00:1f.2]
28: 88 0 0 0 PCI-MSI 1048576-edge enp2s0
29: 0 7214 0 0 PCI-MSI 327680-edge xhci_hcd
30: 0 0 0 8202 PCI-MSI 32768-edge i915
31: 18 0 0 0 PCI-MSI 360448-edge mei_me
32: 0 567 0 0 PCI-MSI 49152-edge snd_hda_intel:card0
33: 0 0 641 0 PCI-MSI 442368-edge snd_hda_intel:card1
34: 0 0 0 8354 PCI-MSI 1572864-edge iwlwifi
NMI: 2 2 1 2 Non-maskable interrupts
LOC: 24270 24754 22704 23422 Local timer interrupts
SPU: 0 0 0 0 Spurious interrupts
PMI: 2 2 1 2 Performance monitoring interrupts
IWI: 389 338 276 675 IRQ work interrupts
RTR: 0 0 0 0 APIC ICR read retries
RES: 5753 5763 5661 6035 Rescheduling interrupts
CAL: 15997 18728 20080 14703 Function call interrupts
TLB: 9323 10584 11866 10543 TLB shootdowns
TRM: 0 0 0 0 Thermal event interrupts
THR: 0 0 0 0 Threshold APIC interrupts
DFR: 0 0 0 0 Deferred Error APIC interrupts
MCE: 0 0 0 0 Machine check exceptions
MCP: 1 2 2 2 Machine check polls
ERR: 1
MIS: 0
PIN: 0 0 0 0 Posted-interrupt notification event
NPI: 0 0 0 0 Nested posted-interrupt event
PIW: 0 0 0 0 Posted-interrupt wakeup event
</pre>
thats are both clean installed SSDs the Debian 10 with 2.9.2 works perfect
Debian 12 with 2.9.2 crash
thanks for any help... i will try install your kernel?
uname -v =
#1 SMP PREEMPT_RT Debian 6.1.76-1 (2024-02-01)
cat /proc/cmdline =
BOOT_IMAGE=/boot/vmlinuz-6.1.0-18-rt-amd64 root=UUID=1c171f88-4f36-42ba-b84a-1dcf20ae1a6b ro initrd=/install/gtk/initrd.gz quiet
cat /proc/interrupts=cat /proc/interrupts=
<pre> CPU0 CPU1 CPU2 CPU3
0: 8 0 0 0 IO-APIC 2-edge timer
8: 0 0 0 0 IO-APIC 8-edge rtc0
9: 0 4 0 0 IO-APIC 9-fasteoi acpi
16: 0 0 0 25 IO-APIC 16-fasteoi ehci_hcd:usb1
18: 0 0 3 0 IO-APIC 18-fasteoi i801_smbus
23: 0 0 29 0 IO-APIC 23-fasteoi ehci_hcd:usb3
24: 0 0 0 0 PCI-MSI 458752-edge PCIe PME, pciehp
25: 0 0 0 0 PCI-MSI 462848-edge PCIe PME
26: 0 0 0 0 PCI-MSI 464896-edge PCIe PME
27: 18398 0 0 0 PCI-MSI 512000-edge ahci[0000:00:1f.2]
28: 88 0 0 0 PCI-MSI 1048576-edge enp2s0
29: 0 7214 0 0 PCI-MSI 327680-edge xhci_hcd
30: 0 0 0 8202 PCI-MSI 32768-edge i915
31: 18 0 0 0 PCI-MSI 360448-edge mei_me
32: 0 567 0 0 PCI-MSI 49152-edge snd_hda_intel:card0
33: 0 0 641 0 PCI-MSI 442368-edge snd_hda_intel:card1
34: 0 0 0 8354 PCI-MSI 1572864-edge iwlwifi
NMI: 2 2 1 2 Non-maskable interrupts
LOC: 24270 24754 22704 23422 Local timer interrupts
SPU: 0 0 0 0 Spurious interrupts
PMI: 2 2 1 2 Performance monitoring interrupts
IWI: 389 338 276 675 IRQ work interrupts
RTR: 0 0 0 0 APIC ICR read retries
RES: 5753 5763 5661 6035 Rescheduling interrupts
CAL: 15997 18728 20080 14703 Function call interrupts
TLB: 9323 10584 11866 10543 TLB shootdowns
TRM: 0 0 0 0 Thermal event interrupts
THR: 0 0 0 0 Threshold APIC interrupts
DFR: 0 0 0 0 Deferred Error APIC interrupts
MCE: 0 0 0 0 Machine check exceptions
MCP: 1 2 2 2 Machine check polls
ERR: 1
MIS: 0
PIN: 0 0 0 0 Posted-interrupt notification event
NPI: 0 0 0 0 Nested posted-interrupt event
PIW: 0 0 0 0 Posted-interrupt wakeup event
</pre>
thats are both clean installed SSDs the Debian 10 with 2.9.2 works perfect
Debian 12 with 2.9.2 crash
thanks for any help... i will try install your kernel?
04 May 2024 12:45 - 04 May 2024 12:49
Replied by hitchhiker on topic Debian 12 Bookworm Linuxcnc 2.9.2....Latency problem
Debian 12 Bookworm Linuxcnc 2.9.2....Latency problem
Category: Installing LinuxCNC
Hi Thanks for your help! First Debian 10:
uname -v =
Linux debian 4.19.0-26-rt-amd64 #1 SMP PREEMPT RT Debian 4.19.304-1 (2024-01-09) x86_64 GNU/Linux
cat /proc/cmdline =
BOOT_IMAGE=/boot/vmlinuz-4.19.0-26-rt-amd64 root=UUID=c4845308-4dd9-4166-a1ab-c1420c7a7374 ro initrd=/install/gtk/initrd.gz quiet
cat /proc/interrupts=cat /proc/interrupts=
CPU0 CPU1 CPU2 CPU3
0: 7 0 0 0 IO-APIC 2-edge timer
8: 0 1 0 0 IO-APIC 8-edge rtc0
9: 0 4 0 0 IO-APIC 9-fasteoi acpi
16: 0 0 0 25 IO-APIC 16-fasteoi ehci_hcd:usb1
18: 0 0 0 0 IO-APIC 18-fasteoi i801_smbus
23: 0 0 29 0 IO-APIC 23-fasteoi ehci_hcd:usb3
24: 0 0 0 0 PCI-MSI 458752-edge PCIe PME, pciehp
25: 0 0 0 0 PCI-MSI 462848-edge PCIe PME
26: 0 0 0 0 PCI-MSI 464896-edge PCIe PME
27: 64 0 0 0 PCI-MSI 1048576-edge enp2s0
28: 21186 0 0 0 PCI-MSI 512000-edge ahci[0000:00:1f.2]
29: 0 15746 0 0 PCI-MSI 327680-edge xhci_hcd
30: 0 0 0 19421 PCI-MSI 32768-edge i915
31: 14 0 0 0 PCI-MSI 360448-edge mei_me
32: 0 284 0 0 PCI-MSI 49152-edge snd_hda_intel:card0
33: 0 0 450 0 PCI-MSI 442368-edge snd_hda_intel:card1
34: 0 0 0 37625 PCI-MSI 1572864-edge iwlwifi
NMI: 4 4 4 4 Non-maskable interrupts
LOC: 52498 53988 52606 55808 Local timer interrupts
SPU: 0 0 0 0 Spurious interrupts
PMI: 4 4 4 4 Performance monitoring interrupts
IWI: 117 129 41 41 IRQ work interrupts
RTR: 1 0 0 0 APIC ICR read retries
RES: 17103 15345 12175 9979 Rescheduling interrupts
CAL: 20423 21178 18639 18313 Function call interrupts
TLB: 16008 16767 14838 14613 TLB shootdowns
TRM: 0 0 0 0 Thermal event interrupts
THR: 0 0 0 0 Threshold APIC interrupts
DFR: 0 0 0 0 Deferred Error APIC interrupts
MCE: 0 0 0 0 Machine check exceptions
MCP: 2 3 3 3 Machine check polls
ERR: 1
MIS: 0
PIN: 0 0 0 0 Posted-interrupt notification event
NPI: 0 0 0 0 Nested posted-interrupt event
PIW: 0 0 0 0 Posted-interrupt wakeup event
uname -v =
Linux debian 4.19.0-26-rt-amd64 #1 SMP PREEMPT RT Debian 4.19.304-1 (2024-01-09) x86_64 GNU/Linux
cat /proc/cmdline =
BOOT_IMAGE=/boot/vmlinuz-4.19.0-26-rt-amd64 root=UUID=c4845308-4dd9-4166-a1ab-c1420c7a7374 ro initrd=/install/gtk/initrd.gz quiet
cat /proc/interrupts=cat /proc/interrupts=
CPU0 CPU1 CPU2 CPU3
0: 7 0 0 0 IO-APIC 2-edge timer
8: 0 1 0 0 IO-APIC 8-edge rtc0
9: 0 4 0 0 IO-APIC 9-fasteoi acpi
16: 0 0 0 25 IO-APIC 16-fasteoi ehci_hcd:usb1
18: 0 0 0 0 IO-APIC 18-fasteoi i801_smbus
23: 0 0 29 0 IO-APIC 23-fasteoi ehci_hcd:usb3
24: 0 0 0 0 PCI-MSI 458752-edge PCIe PME, pciehp
25: 0 0 0 0 PCI-MSI 462848-edge PCIe PME
26: 0 0 0 0 PCI-MSI 464896-edge PCIe PME
27: 64 0 0 0 PCI-MSI 1048576-edge enp2s0
28: 21186 0 0 0 PCI-MSI 512000-edge ahci[0000:00:1f.2]
29: 0 15746 0 0 PCI-MSI 327680-edge xhci_hcd
30: 0 0 0 19421 PCI-MSI 32768-edge i915
31: 14 0 0 0 PCI-MSI 360448-edge mei_me
32: 0 284 0 0 PCI-MSI 49152-edge snd_hda_intel:card0
33: 0 0 450 0 PCI-MSI 442368-edge snd_hda_intel:card1
34: 0 0 0 37625 PCI-MSI 1572864-edge iwlwifi
NMI: 4 4 4 4 Non-maskable interrupts
LOC: 52498 53988 52606 55808 Local timer interrupts
SPU: 0 0 0 0 Spurious interrupts
PMI: 4 4 4 4 Performance monitoring interrupts
IWI: 117 129 41 41 IRQ work interrupts
RTR: 1 0 0 0 APIC ICR read retries
RES: 17103 15345 12175 9979 Rescheduling interrupts
CAL: 20423 21178 18639 18313 Function call interrupts
TLB: 16008 16767 14838 14613 TLB shootdowns
TRM: 0 0 0 0 Thermal event interrupts
THR: 0 0 0 0 Threshold APIC interrupts
DFR: 0 0 0 0 Deferred Error APIC interrupts
MCE: 0 0 0 0 Machine check exceptions
MCP: 2 3 3 3 Machine check polls
ERR: 1
MIS: 0
PIN: 0 0 0 0 Posted-interrupt notification event
NPI: 0 0 0 0 Nested posted-interrupt event
PIW: 0 0 0 0 Posted-interrupt wakeup event
04 May 2024 12:39 - 04 May 2024 12:54
Replied by rdtsc on topic Touchscreen issues with debian12
Touchscreen issues with debian12
Category: Computers and Hardware
I noticed for the
Waveshare 22930 touchscreen
, the following is listed in dmesg:
So `input` is recognized for both touch and mouse, but only the mouse is registered as hid-generic at first. Touchscreen seems to be registered later. Maybe this is normal; unsure. Really surprised this is still an issue after all this time.
[ 3.194915] usb 1-1.4: new full-speed USB device number 5 using xhci_hcd
[ 3.309613] usb 1-1.4: New USB device found, idVendor=222a, idProduct=0001, bcdDevice= 0.02
[ 3.309646] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.309658] usb 1-1.4: Product: ILITEK-TP
[ 3.309668] usb 1-1.4: Manufacturer: ILITEK
[ 3.332490] input: ILITEK ILITEK-TP Touchscreen as /devices/platform/scb/fd500000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:222A:0001.0004/input/input3
[ 3.336105] input: ILITEK ILITEK-TP Mouse as /devices/platform/scb/fd500000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:222A:0001.0004/input/input5
[ 3.341179] hid-generic 0003:222A:0001.0004: input,hiddev97,hidraw3: USB HID v1.10 Mouse [ILITEK ILITEK-TP] on usb-0000:01:00.0-1.4/input0
...
[ 14.143042] input: ILITEK ILITEK-TP as /devices/platform/scb/fd500000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:222A:0001.0004/input/input8
[ 14.160772] input: ILITEK ILITEK-TP Mouse as /devices/platform/scb/fd500000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:222A:0001.0004/input/input10
[ 14.167235] hid-multitouch 0003:222A:0001.0004: input,hiddev97,hidraw3: USB HID v1.10 Mouse [ILITEK ILITEK-TP] on usb-0000:01:00.0-1.4/input0
So `input` is recognized for both touch and mouse, but only the mouse is registered as hid-generic at first. Touchscreen seems to be registered later. Maybe this is normal; unsure. Really surprised this is still an issue after all this time.
04 May 2024 11:32
Replied by Franklin on topic WHB02 remote control to QtPlasmac
WHB02 remote control to QtPlasmac
Category: Plasmac
Thanks for the answer, the WHB02 costs half as much as the WHB04 and it has enough functionality for plasma cutting.
The WHB02 is similar to the remote controls that come with laser cutting machines.
I thought that maybe the same component xhc-whb04b-6 could be suitable for this remote.
The WHB02 is similar to the remote controls that come with laser cutting machines.
I thought that maybe the same component xhc-whb04b-6 could be suitable for this remote.
04 May 2024 09:14
Replied by andypugh on topic WHB02 remote control to QtPlasmac
WHB02 remote control to QtPlasmac
Category: Plasmac
Googling for Linuxcnc and XHC WHB02 seems to show Aliexpress vendors selling it for LinuxCNC use (but possibly only in Hebrew!, which I can't read) but then most vendors on Aliexpress have no idea what they are selling, so I wouldn't necessarily read too much onto that.
I don't see any mention of it on these forums.
It might be safer to go with the known-supported WHB04, if you don't feel like being the guinea pig.
I don't see any mention of it on these forums.
It might be safer to go with the known-supported WHB04, if you don't feel like being the guinea pig.
29 Apr 2024 08:57
Replied by andypugh on topic Fehler Rules
Fehler Rules
Category: General LinuxCNC Questions
Well, that sounds like a Linux problem rather than a LinuxCNC problem.
Maybe this? www.forum.linuxcnc.org/38-general-linuxc...ing-up-as-usb#238667
Maybe this? www.forum.linuxcnc.org/38-general-linuxc...ing-up-as-usb#238667
28 Apr 2024 00:01
Replied by PCW on topic Mesa 7i76 error after xhc-whb04b-6 install
Mesa 7i76 error after xhc-whb04b-6 install
Category: Driver Boards
I would disable the xhc and see if the problem goes away.
Something else unrelated to jog controller may have
changed on the PC
Something else unrelated to jog controller may have
changed on the PC
Time to create page: 0.728 seconds