snowzjx / liteflow

A Hybrid Framework to Build High-performance Adaptive Neural Networks for Kernel Datapath
GNU General Public License v2.0
24 stars 6 forks source link

Model registration fails on Ubuntu 18.04 and Ubuntu 20.04. #14

Closed y-koj closed 1 year ago

y-koj commented 1 year ago

Description

Liteflow does not work properly on Ubuntu 18.04 and Ubuntu 20.04.

The following warnings appeared while building kernel modules, which tells that lf_register_model is not visible from the liteflow models.

WARNING: "lf_unregister_model" [/home/yk/repos/liteflow/script/lf_model_3.ko] undefined!
WARNING: "lf_register_model" [/home/yk/repos/liteflow/script/lf_model_3.ko] undefined!
WARNING: "lf_unregister_model" [/home/yk/repos/liteflow/script/lf_model_2.ko] undefined!
WARNING: "lf_register_model" [/home/yk/repos/liteflow/script/lf_model_2.ko] undefined!
WARNING: "lf_unregister_model" [/home/yk/repos/liteflow/script/lf_model_1.ko] undefined!
WARNING: "lf_register_model" [/home/yk/repos/liteflow/script/lf_model_1.ko] undefined!

Environment

I met this error on Ubuntu 20.04 on the real machine. I also tried on Ubuntu 18.04 on the virtual machine, but it failed with the same warning messages.

Ubuntu 20.04

Dependencies Version
Architecture x86_64 (Real Machine)
Linux Kernel Linux 5.15.0-71-generic
GCC 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1)
Tensorflow 2.2.0 (Tensorflow 2.1.0 was not available from pip on this machine)

Ubuntu 18.04

Dependencies Version
Architecture x86_64 (Virtual Machine on QEMU Q35)
Linux Kernel Linux 4.15.0-210-generic
GCC 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)
Tensorflow 2.1.0

Steps to reproduce

  1. Run commands as in the installation guide. On the virtual environment, I additionally ran apt update && apt upgrade because it was a fresh machine.
    
    $ git clone https://github.com/snowzjx/liteflow.git

$ cd liteflow

$ sudo apt install -y build-essential libnl-3-dev libnl-genl-3-dev pkg-config linux-headers-generic python3 python3-pip

$ pip3 install -U pip $ pip3 install -r bin/requirements.txt

$ make all $ make module_install $ make tcp_kernel_install


2. Run example scripts
```sh
$ cd script
$ ./snapshot_generation.sh
$ ./active_standby_switch.sh

Additional Information

The result of sysctl net.ipv4.tcp_congestion_control tells that liteflow is used for congestion control.

yk@ubuntu18-on-qemu:~/liteflow/script$ sysctl net.ipv4.tcp_congestion_control 
net.ipv4.tcp_congestion_control = lf_tcp_kernel
Full output of make command ``` yk@ubuntu18-on-qemu:~/liteflow$ make all make clean make[1]: Entering directory '/home/yk/liteflow' make[1]: Leaving directory '/home/yk/liteflow' make module make[1]: Entering directory '/home/yk/liteflow' make[2]: Entering directory '/home/yk/liteflow/build/datapath' make -C /lib/modules/4.15.0-210-generic/build M=/home/yk/liteflow/build/datapath modules make[3]: Entering directory '/usr/src/linux-headers-4.15.0-210-generic' CC [M] /home/yk/liteflow/build/datapath/liteflow.o CC [M] /home/yk/liteflow/build/datapath/liteflow_model.o CC [M] /home/yk/liteflow/build/datapath/liteflow_nl.o LD [M] /home/yk/liteflow/build/datapath/lf_kernel.o CC [M] /home/yk/liteflow/build/datapath/liteflow_tcp.o LD [M] /home/yk/liteflow/build/datapath/lf_tcp_kernel.o CC [M] /home/yk/liteflow/build/datapath/liteflow_netfilter.o LD [M] /home/yk/liteflow/build/datapath/lf_netfilter_kernel.o Building modules, stage 2. MODPOST 3 modules CC /home/yk/liteflow/build/datapath/lf_kernel.mod.o LD [M] /home/yk/liteflow/build/datapath/lf_kernel.ko CC /home/yk/liteflow/build/datapath/lf_netfilter_kernel.mod.o LD [M] /home/yk/liteflow/build/datapath/lf_netfilter_kernel.ko CC /home/yk/liteflow/build/datapath/lf_tcp_kernel.mod.o LD [M] /home/yk/liteflow/build/datapath/lf_tcp_kernel.ko make[3]: Leaving directory '/usr/src/linux-headers-4.15.0-210-generic' make[2]: Leaving directory '/home/yk/liteflow/build/datapath' make[1]: Leaving directory '/home/yk/liteflow' make lib make[1]: Entering directory '/home/yk/liteflow' mkdir: cannot create directory ‘build’: File exists Makefile:26: recipe for target 'lib' failed make[1]: [lib] Error 1 (ignored) make[2]: Entering directory '/home/yk/liteflow/build/lib' gcc -c -Werror -O3 -fpic liblf_dp_notification.c -I../include -I/usr/include/libnl3 -lnl-genl-3 -lnl-3 gcc -shared -o liblf.so liblf_dp_notification.o -I/usr/include/libnl3 -lnl-genl-3 -lnl-3 make[2]: Leaving directory '/home/yk/liteflow/build/lib' make[1]: Leaving directory '/home/yk/liteflow' make test make[1]: Entering directory '/home/yk/liteflow' mkdir: cannot create directory ‘build’: File exists Makefile:32: recipe for target 'test' failed make[1]: [test] Error 1 (ignored) make[2]: Entering directory '/home/yk/liteflow/build/test' make[3]: Entering directory '/home/yk/liteflow/build/test/kernel' make -C /lib/modules/4.15.0-210-generic/build M=/home/yk/liteflow/build/test/kernel modules make[4]: Entering directory '/usr/src/linux-headers-4.15.0-210-generic' CC [M] /home/yk/liteflow/build/test/kernel/liteflow_sample_model.o LD [M] /home/yk/liteflow/build/test/kernel/lf_sample_model.o Building modules, stage 2. MODPOST 1 modules WARNING: "lf_unregister_model" [/home/yk/liteflow/build/test/kernel/lf_sample_model.ko] undefined! WARNING: "lf_register_model" [/home/yk/liteflow/build/test/kernel/lf_sample_model.ko] undefined! WARNING: "lf_unregister_app" [/home/yk/liteflow/build/test/kernel/lf_sample_model.ko] undefined! WARNING: "lf_register_app" [/home/yk/liteflow/build/test/kernel/lf_sample_model.ko] undefined! WARNING: "lf_query_model" [/home/yk/liteflow/build/test/kernel/lf_sample_model.ko] undefined! CC /home/yk/liteflow/build/test/kernel/lf_sample_model.mod.o LD [M] /home/yk/liteflow/build/test/kernel/lf_sample_model.ko make[4]: Leaving directory '/usr/src/linux-headers-4.15.0-210-generic' make[3]: Leaving directory '/home/yk/liteflow/build/test/kernel' gcc -Werror -O3 -o test_dp_notification -I../include test_dp_notification.c -L../lib -llf -I/usr/include/libnl3 -lnl-genl-3 -lnl-3 make[2]: Leaving directory '/home/yk/liteflow/build/test' make[1]: Leaving directory '/home/yk/liteflow' ```
Full output of snapshot generation ``` yk@ubuntu18-on-qemu:~/liteflow/script$ ./snapshot_generation.sh 2023-05-14 10:56:20.170478: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library 'libnvinfer.so.6'; dlerror: libnvinfer.so.6: cannot open shared object file: No such file or directory 2023-05-14 10:56:20.170522: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library 'libnvinfer_plugin.so.6'; dlerror: libnvinfer_plugin.so.6: cannot open shared object file: No such file or directory 2023-05-14 10:56:20.170527: W tensorflow/compiler/tf2tensorrt/utils/py_utils.cc:30] Cannot dlopen some TensorRT libraries. If you would like to use Nvidia GPU with TensorRT, please make sure the missing libraries mentioned above are installed properly. 2023-05-14 10:56:20.409170: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library 'libcuda.so.1'; dlerror: libcuda.so.1: cannot open shared object file: No such file or directory 2023-05-14 10:56:20.409191: E tensorflow/stream_executor/cuda/cuda_driver.cc:351] failed call to cuInit: UNKNOWN ERROR (303) 2023-05-14 10:56:20.409207: I tensorflow/stream_executor/cuda/cuda_diagnostics.cc:156] kernel driver does not appear to be running on this host (ubuntu18-on-qemu): /proc/driver/nvidia/version does not exist 2023-05-14 10:56:20.409395: I tensorflow/core/platform/cpu_feature_guard.cc:142] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA 2023-05-14 10:56:20.412070: I tensorflow/core/platform/profile_utils/cpu_utils.cc:94] CPU Frequency: 2112000000 Hz 2023-05-14 10:56:20.412146: I tensorflow/compiler/xla/service/service.cc:168] XLA service 0x4905f60 initialized for platform Host (this does not guarantee that XLA will be used). Devices: 2023-05-14 10:56:20.412154: I tensorflow/compiler/xla/service/service.cc:176] StreamExecutor device (0): Host, Default Version WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). 2023-05-14 10:56:21.023831: I tensorflow/core/grappler/devices.cc:55] Number of eligible GPUs (core count >= 8, compute capability >= 0.0): 0 2023-05-14 10:56:21.023890: I tensorflow/core/grappler/clusters/single_machine.cc:356] Starting new session 2023-05-14 10:56:21.024491: I tensorflow/core/grappler/optimizers/meta_optimizer.cc:814] Optimization results for grappler item: graph_to_optimize 2023-05-14 10:56:21.024507: I tensorflow/core/grappler/optimizers/meta_optimizer.cc:816] function_optimizer: function_optimizer did nothing. time = 0ms. 2023-05-14 10:56:21.024510: I tensorflow/core/grappler/optimizers/meta_optimizer.cc:816] function_optimizer: function_optimizer did nothing. time = 0ms. WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). WARNING:tensorflow:Unable to create a python object for variable because it is a reference variable. It may not be visible to training APIs. If this is a problem, consider rebuilding the SavedModel after running tf.compat.v1.enable_resource_variables(). 2023-05-14 10:56:21.045343: I tensorflow/core/grappler/devices.cc:55] Number of eligible GPUs (core count >= 8, compute capability >= 0.0): 0 2023-05-14 10:56:21.045397: I tensorflow/core/grappler/clusters/single_machine.cc:356] Starting new session 2023-05-14 10:56:21.046793: I tensorflow/core/grappler/optimizers/meta_optimizer.cc:814] Optimization results for grappler item: graph_to_optimize 2023-05-14 10:56:21.046811: I tensorflow/core/grappler/optimizers/meta_optimizer.cc:816] constant_folding: Graph size after: 23 nodes (-6), 23 edges (-6), time = 0.524ms. 2023-05-14 10:56:21.046816: I tensorflow/core/grappler/optimizers/meta_optimizer.cc:816] constant_folding: Graph size after: 23 nodes (0), 23 edges (0), time = 0.202ms. Convert done ... Begin inspecting model Input index quant: 12, output index quant: 13 Test input: [[0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0.15899576 1. 1.4292452 ]] Output: [[-1.2645402]] Test input: [[0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0.15899576 1. 1.4292452 0.15846686 1.2071031 1.4772727 ]] Output: [[-2.6115503]] Test input: [[0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0.15899576 1. 1.4292452 0.15846686 1.2071031 1.4772727 0.15053324 1.377292 1.4591194 ]] Output: [[-2.9964104]] Test input: [[0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0.15899576 1. 1.4292452 0.15846686 1.2071031 1.4772727 0.15053324 1.377292 1.4591194 0.15121102 1.5694607 1.5414364 ]] Output: [[-3.3125453]] Test input: [[0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0.15899576 1. 1.4292452 0.15846686 1.2071031 1.4772727 0.15053324 1.377292 1.4591194 0.15121102 1.5694607 1.5414364 0.15856479 1.8002757 1.5072464 ]] Output: [[-3.4774854]] Test input: [[0. 1. 1. 0. 1. 1. 0. 1. 1. 0. 1. 1. 0.15899576 1. 1.4292452 0.15846686 1.2071031 1.4772727 0.15053324 1.377292 1.4591194 0.15121102 1.5694607 1.5414364 0.15856479 1.8002757 1.5072464 0.15612586 2.063534 1.5274261 ]] Output: [[-3.5049753]] Test input: [[0. 1. 1. 0. 1. 1. 0. 1. 1. 0.15899576 1. 1.4292452 0.15846686 1.2071031 1.4772727 0.15053324 1.377292 1.4591194 0.15121102 1.5694607 1.5414364 0.15856479 1.8002757 1.5072464 0.15612586 2.063534 1.5274261 0.1718788 2.3858385 1.5238096 ]] Output: [[-3.4499953]] Test input: [[0. 1. 1. 0. 1. 1. 0.15899576 1. 1.4292452 0.15846686 1.2071031 1.4772727 0.15053324 1.377292 1.4591194 0.15121102 1.5694607 1.5414364 0.15856479 1.8002757 1.5072464 0.15612586 2.063534 1.5274261 0.1718788 2.3858385 1.5238096 0.16725668 2.7611747 1.4888889 ]] Output: [[-3.3675253]] Test input: [[0. 1. 1. 0.15899576 1. 1.4292452 0.15846686 1.2071031 1.4772727 0.15053324 1.377292 1.4591194 0.15121102 1.5694607 1.5414364 0.15856479 1.8002757 1.5072464 0.15612586 2.063534 1.5274261 0.1718788 2.3858385 1.5238096 0.16725668 2.7611747 1.4888889 0.16907479 3.1967044 1.5260274 ]] Output: [[-3.2850554]] Test input: [[0.15899576 1. 1.4292452 0.15846686 1.2071031 1.4772727 0.15053324 1.377292 1.4591194 0.15121102 1.5694607 1.5414364 0.15856479 1.8002757 1.5072464 0.15612586 2.063534 1.5274261 0.1718788 2.3858385 1.5238096 0.16725668 2.7611747 1.4888889 0.16907479 3.1967044 1.5260274 0.17068054 3.7049541 1.6090047 ]] Output: [[-3.2575653]] Test input: [[0.15846686 1.2071031 1.4772727 0.15053324 1.377292 1.4591194 0.15121102 1.5694607 1.5414364 0.15856479 1.8002757 1.5072464 0.15612586 2.063534 1.5274261 0.1718788 2.3858385 1.5238096 0.16725668 2.7611747 1.4888889 0.16907479 3.1967044 1.5260274 0.17068054 3.7049541 1.6090047 0.16307603 4.275214 1.6523517 ]] Output: [[-3.2025855]] Test input: [[0.15053324 1.377292 1.4591194 0.15121102 1.5694607 1.5414364 0.15856479 1.8002757 1.5072464 0.15612586 2.063534 1.5274261 0.1718788 2.3858385 1.5238096 0.16725668 2.7611747 1.4888889 0.16907479 3.1967044 1.5260274 0.17068054 3.7049541 1.6090047 0.16307603 4.275214 1.6523517 0.17285101 4.9517145 1.6272085 ]] Output: [[-3.2025855]] Test input: [[0.15121102 1.5694607 1.5414364 0.15856479 1.8002757 1.5072464 0.15612586 2.063534 1.5274261 0.1718788 2.3858385 1.5238096 0.16725668 2.7611747 1.4888889 0.16907479 3.1967044 1.5260274 0.17068054 3.7049541 1.6090047 0.16307603 4.275214 1.6523517 0.17285101 4.9517145 1.6272085 0.01407066 5.4931827 1.6314985 ]] Output: [[-3.1338603]] Test input: [[ 1.5856479e-01 1.8002757e+00 1.5072464e+00 1.5612586e-01 2.0635340e+00 1.5274261e+00 1.7187880e-01 2.3858385e+00 1.5238096e+00 1.6725668e-01 2.7611747e+00 1.4888889e+00 1.6907479e-01 3.1967044e+00 1.5260274e+00 1.7068054e-01 3.7049541e+00 1.6090047e+00 1.6307603e-01 4.2752142e+00 1.6523517e+00 1.7285101e-01 4.9517145e+00 1.6272085e+00 1.4070662e-02 5.4931827e+00 1.6314985e+00 -1.3570951e-06 5.5105510e+00 1.6327373e+00]] Output: [[-3.1063704]] Test input: [[ 1.5612586e-01 2.0635340e+00 1.5274261e+00 1.7187880e-01 2.3858385e+00 1.5238096e+00 1.6725668e-01 2.7611747e+00 1.4888889e+00 1.6907479e-01 3.1967044e+00 1.5260274e+00 1.7068054e-01 3.7049541e+00 1.6090047e+00 1.6307603e-01 4.2752142e+00 1.6523517e+00 1.7285101e-01 4.9517145e+00 1.6272085e+00 1.4070662e-02 5.4931827e+00 1.6314985e+00 -1.3570951e-06 5.5105510e+00 1.6327373e+00 -1.9755321e-06 5.5105524e+00 1.6043956e+00]] Output: [[-3.0651352]] Test input: [[ 1.7187880e-01 2.3858385e+00 1.5238096e+00 1.6725668e-01 2.7611747e+00 1.4888889e+00 1.6907479e-01 3.1967044e+00 1.5260274e+00 1.7068054e-01 3.7049541e+00 1.6090047e+00 1.6307603e-01 4.2752142e+00 1.6523517e+00 1.7285101e-01 4.9517145e+00 1.6272085e+00 1.4070662e-02 5.4931827e+00 1.6314985e+00 -1.3570951e-06 5.5105510e+00 1.6327373e+00 -1.9755321e-06 5.5105524e+00 1.6043956e+00 4.7785502e-06 5.5105591e+00 1.5445817e+00]] Output: [[-2.9551754]] Test input: [[ 1.6725668e-01 2.7611747e+00 1.4888889e+00 1.6907479e-01 3.1967044e+00 1.5260274e+00 1.7068054e-01 3.7049541e+00 1.6090047e+00 1.6307603e-01 4.2752142e+00 1.6523517e+00 1.7285101e-01 4.9517145e+00 1.6272085e+00 1.4070662e-02 5.4931827e+00 1.6314985e+00 -1.3570951e-06 5.5105510e+00 1.6327373e+00 -1.9755321e-06 5.5105524e+00 1.6043956e+00 4.7785502e-06 5.5105591e+00 1.5445817e+00 2.9647097e-05 5.5105548e+00 1.5637860e+00]] Output: [[-2.9826653]] Test input: [[ 1.6907479e-01 3.1967044e+00 1.5260274e+00 1.7068054e-01 3.7049541e+00 1.6090047e+00 1.6307603e-01 4.2752142e+00 1.6523517e+00 1.7285101e-01 4.9517145e+00 1.6272085e+00 1.4070662e-02 5.4931827e+00 1.6314985e+00 -1.3570951e-06 5.5105510e+00 1.6327373e+00 -1.9755321e-06 5.5105524e+00 1.6043956e+00 4.7785502e-06 5.5105591e+00 1.5445817e+00 2.9647097e-05 5.5105548e+00 1.5637860e+00 1.2460895e-06 5.5104933e+00 1.5418382e+00]] Output: [[-3.1476054]] Test input: [[ 1.7068054e-01 3.7049541e+00 1.6090047e+00 1.6307603e-01 4.2752142e+00 1.6523517e+00 1.7285101e-01 4.9517145e+00 1.6272085e+00 1.4070662e-02 5.4931827e+00 1.6314985e+00 -1.3570951e-06 5.5105510e+00 1.6327373e+00 -1.9755321e-06 5.5105524e+00 1.6043956e+00 4.7785502e-06 5.5105591e+00 1.5445817e+00 2.9647097e-05 5.5105548e+00 1.5637860e+00 1.2460895e-06 5.5104933e+00 1.5418382e+00 -8.0792901e-08 5.5105047e+00 1.4739012e+00]] Output: [[-3.1613503]] Test input: [[ 1.6307603e-01 4.2752142e+00 1.6523517e+00 1.7285101e-01 4.9517145e+00 1.6272085e+00 1.4070662e-02 5.4931827e+00 1.6314985e+00 -1.3570951e-06 5.5105510e+00 1.6327373e+00 -1.9755321e-06 5.5105524e+00 1.6043956e+00 4.7785502e-06 5.5105591e+00 1.5445817e+00 2.9647097e-05 5.5105548e+00 1.5637860e+00 1.2460895e-06 5.5104933e+00 1.5418382e+00 -8.0792901e-08 5.5105047e+00 1.4739012e+00 6.4206563e-07 5.5104895e+00 1.4238683e+00]] Output: [[-3.1476054]] Test input: [[ 1.7285101e-01 4.9517145e+00 1.6272085e+00 1.4070662e-02 5.4931827e+00 1.6314985e+00 -1.3570951e-06 5.5105510e+00 1.6327373e+00 -1.9755321e-06 5.5105524e+00 1.6043956e+00 4.7785502e-06 5.5105591e+00 1.5445817e+00 2.9647097e-05 5.5105548e+00 1.5637860e+00 1.2460895e-06 5.5104933e+00 1.5418382e+00 -8.0792901e-08 5.5105047e+00 1.4739012e+00 6.4206563e-07 5.5104895e+00 1.4238683e+00 -9.0280514e-07 5.5104122e+00 1.4197531e+00]] Output: [[-3.0513904]] Test input: [[ 1.4070662e-02 5.4931827e+00 1.6314985e+00 -1.3570951e-06 5.5105510e+00 1.6327373e+00 -1.9755321e-06 5.5105524e+00 1.6043956e+00 4.7785502e-06 5.5105591e+00 1.5445817e+00 2.9647097e-05 5.5105548e+00 1.5637860e+00 1.2460895e-06 5.5104933e+00 1.5418382e+00 -8.0792901e-08 5.5105047e+00 1.4739012e+00 6.4206563e-07 5.5104895e+00 1.4238683e+00 -9.0280514e-07 5.5104122e+00 1.4197531e+00 4.7516951e-07 5.5103927e+00 1.3827161e+00]] Output: [[-2.9551754]] Test input: [[-1.3570951e-06 5.5105510e+00 1.6327373e+00 -1.9755321e-06 5.5105524e+00 1.6043956e+00 4.7785502e-06 5.5105591e+00 1.5445817e+00 2.9647097e-05 5.5105548e+00 1.5637860e+00 1.2460895e-06 5.5104933e+00 1.5418382e+00 -8.0792901e-08 5.5105047e+00 1.4739012e+00 6.4206563e-07 5.5104895e+00 1.4238683e+00 -9.0280514e-07 5.5104122e+00 1.4197531e+00 4.7516951e-07 5.5103927e+00 1.3827161e+00 -6.5539639e-06 5.5103807e+00 1.3964335e+00]] Output: [[-2.9964104]] Test input: [[-1.9755321e-06 5.5105524e+00 1.6043956e+00 4.7785502e-06 5.5105591e+00 1.5445817e+00 2.9647097e-05 5.5105548e+00 1.5637860e+00 1.2460895e-06 5.5104933e+00 1.5418382e+00 -8.0792901e-08 5.5105047e+00 1.4739012e+00 6.4206563e-07 5.5104895e+00 1.4238683e+00 -9.0280514e-07 5.5104122e+00 1.4197531e+00 4.7516951e-07 5.5103927e+00 1.3827161e+00 -6.5539639e-06 5.5103807e+00 1.3964335e+00 -4.8117713e-06 5.5103440e+00 1.3750000e+00]] Output: [[-2.9551754]] Test input: [[ 4.7785502e-06 5.5105591e+00 1.5445817e+00 2.9647097e-05 5.5105548e+00 1.5637860e+00 1.2460895e-06 5.5104933e+00 1.5418382e+00 -8.0792901e-08 5.5105047e+00 1.4739012e+00 6.4206563e-07 5.5104895e+00 1.4238683e+00 -9.0280514e-07 5.5104122e+00 1.4197531e+00 4.7516951e-07 5.5103927e+00 1.3827161e+00 -6.5539639e-06 5.5103807e+00 1.3964335e+00 -4.8117713e-06 5.5103440e+00 1.3750000e+00 -3.3506424e-06 5.5103521e+00 1.3580247e+00]] Output: [[-2.9139404]] Test input: [[ 2.9647097e-05 5.5105548e+00 1.5637860e+00 1.2460895e-06 5.5104933e+00 1.5418382e+00 -8.0792901e-08 5.5105047e+00 1.4739012e+00 6.4206563e-07 5.5104895e+00 1.4238683e+00 -9.0280514e-07 5.5104122e+00 1.4197531e+00 4.7516951e-07 5.5103927e+00 1.3827161e+00 -6.5539639e-06 5.5103807e+00 1.3964335e+00 -4.8117713e-06 5.5103440e+00 1.3750000e+00 -3.3506424e-06 5.5103521e+00 1.3580247e+00 7.7639243e-06 5.5103383e+00 1.2757201e+00]] Output: [[-2.9551754]] Test input: [[ 1.2460895e-06 5.5104933e+00 1.5418382e+00 -8.0792901e-08 5.5105047e+00 1.4739012e+00 6.4206563e-07 5.5104895e+00 1.4238683e+00 -9.0280514e-07 5.5104122e+00 1.4197531e+00 4.7516951e-07 5.5103927e+00 1.3827161e+00 -6.5539639e-06 5.5103807e+00 1.3964335e+00 -4.8117713e-06 5.5103440e+00 1.3750000e+00 -3.3506424e-06 5.5103521e+00 1.3580247e+00 7.7639243e-06 5.5103383e+00 1.2757201e+00 -2.5197573e-06 5.5103388e+00 1.2884616e+00]] Output: [[-2.9139404]] Test input: [[-8.0792901e-08 5.5105047e+00 1.4739012e+00 6.4206563e-07 5.5104895e+00 1.4238683e+00 -9.0280514e-07 5.5104122e+00 1.4197531e+00 4.7516951e-07 5.5103927e+00 1.3827161e+00 -6.5539639e-06 5.5103807e+00 1.3964335e+00 -4.8117713e-06 5.5103440e+00 1.3750000e+00 -3.3506424e-06 5.5103521e+00 1.3580247e+00 7.7639243e-06 5.5103383e+00 1.2757201e+00 -2.5197573e-06 5.5103388e+00 1.2884616e+00 1.3274242e-05 5.5102191e+00 1.3401921e+00]] Output: [[-2.8727052]] Test input: [[ 6.4206563e-07 5.5104895e+00 1.4238683e+00 -9.0280514e-07 5.5104122e+00 1.4197531e+00 4.7516951e-07 5.5103927e+00 1.3827161e+00 -6.5539639e-06 5.5103807e+00 1.3964335e+00 -4.8117713e-06 5.5103440e+00 1.3750000e+00 -3.3506424e-06 5.5103521e+00 1.3580247e+00 7.7639243e-06 5.5103383e+00 1.2757201e+00 -2.5197573e-06 5.5103388e+00 1.2884616e+00 1.3274242e-05 5.5102191e+00 1.3401921e+00 3.5795299e-06 5.5102439e+00 1.3333334e+00]] Output: [[-2.8864503]] Test input: [[-9.0280514e-07 5.5104122e+00 1.4197531e+00 4.7516951e-07 5.5103927e+00 1.3827161e+00 -6.5539639e-06 5.5103807e+00 1.3964335e+00 -4.8117713e-06 5.5103440e+00 1.3750000e+00 -3.3506424e-06 5.5103521e+00 1.3580247e+00 7.7639243e-06 5.5103383e+00 1.2757201e+00 -2.5197573e-06 5.5103388e+00 1.2884616e+00 1.3274242e-05 5.5102191e+00 1.3401921e+00 3.5795299e-06 5.5102439e+00 1.3333334e+00 -1.3281416e-06 5.5102849e+00 1.3104396e+00]] Output: [[-2.8727052]] Test input: [[ 4.7516951e-07 5.5103927e+00 1.3827161e+00 -6.5539639e-06 5.5103807e+00 1.3964335e+00 -4.8117713e-06 5.5103440e+00 1.3750000e+00 -3.3506424e-06 5.5103521e+00 1.3580247e+00 7.7639243e-06 5.5103383e+00 1.2757201e+00 -2.5197573e-06 5.5103388e+00 1.2884616e+00 1.3274242e-05 5.5102191e+00 1.3401921e+00 3.5795299e-06 5.5102439e+00 1.3333334e+00 -1.3281416e-06 5.5102849e+00 1.3104396e+00 1.1023934e-04 5.5102825e+00 1.3031551e+00]] Output: [[-2.8864503]] Test input: [[-6.5539639e-06 5.5103807e+00 1.3964335e+00 -4.8117713e-06 5.5103440e+00 1.3750000e+00 -3.3506424e-06 5.5103521e+00 1.3580247e+00 7.7639243e-06 5.5103383e+00 1.2757201e+00 -2.5197573e-06 5.5103388e+00 1.2884616e+00 1.3274242e-05 5.5102191e+00 1.3401921e+00 3.5795299e-06 5.5102439e+00 1.3333334e+00 -1.3281416e-06 5.5102849e+00 1.3104396e+00 1.1023934e-04 5.5102825e+00 1.3031551e+00 5.8443618e-07 5.5102658e+00 1.3484225e+00]] Output: [[-2.8864503]] Test input: [[-4.8117713e-06 5.5103440e+00 1.3750000e+00 -3.3506424e-06 5.5103521e+00 1.3580247e+00 7.7639243e-06 5.5103383e+00 1.2757201e+00 -2.5197573e-06 5.5103388e+00 1.2884616e+00 1.3274242e-05 5.5102191e+00 1.3401921e+00 3.5795299e-06 5.5102439e+00 1.3333334e+00 -1.3281416e-06 5.5102849e+00 1.3104396e+00 1.1023934e-04 5.5102825e+00 1.3031551e+00 5.8443618e-07 5.5102658e+00 1.3484225e+00 1.4584485e-07 5.5102677e+00 1.3264747e+00]] Output: [[-2.9001954]] Test input: [[-3.3506424e-06 5.5103521e+00 1.3580247e+00 7.7639243e-06 5.5103383e+00 1.2757201e+00 -2.5197573e-06 5.5103388e+00 1.2884616e+00 1.3274242e-05 5.5102191e+00 1.3401921e+00 3.5795299e-06 5.5102439e+00 1.3333334e+00 -1.3281416e-06 5.5102849e+00 1.3104396e+00 1.1023934e-04 5.5102825e+00 1.3031551e+00 5.8443618e-07 5.5102658e+00 1.3484225e+00 1.4584485e-07 5.5102677e+00 1.3264747e+00 4.2389943e-06 5.5103078e+00 1.3017833e+00]] Output: [[-2.9001954]] Test input: [[ 7.7639243e-06 5.5103383e+00 1.2757201e+00 -2.5197573e-06 5.5103388e+00 1.2884616e+00 1.3274242e-05 5.5102191e+00 1.3401921e+00 3.5795299e-06 5.5102439e+00 1.3333334e+00 -1.3281416e-06 5.5102849e+00 1.3104396e+00 1.1023934e-04 5.5102825e+00 1.3031551e+00 5.8443618e-07 5.5102658e+00 1.3484225e+00 1.4584485e-07 5.5102677e+00 1.3264747e+00 4.2389943e-06 5.5103078e+00 1.3017833e+00 1.6459428e-06 5.5102878e+00 1.2537723e+00]] Output: [[-2.8864503]] Test input: [[-2.5197573e-06 5.5103388e+00 1.2884616e+00 1.3274242e-05 5.5102191e+00 1.3401921e+00 3.5795299e-06 5.5102439e+00 1.3333334e+00 -1.3281416e-06 5.5102849e+00 1.3104396e+00 1.1023934e-04 5.5102825e+00 1.3031551e+00 5.8443618e-07 5.5102658e+00 1.3484225e+00 1.4584485e-07 5.5102677e+00 1.3264747e+00 4.2389943e-06 5.5103078e+00 1.3017833e+00 1.6459428e-06 5.5102878e+00 1.2537723e+00 3.2763860e-06 5.5102506e+00 1.3076923e+00]] Output: [[-2.8864503]] Test input: [[ 1.3274242e-05 5.5102191e+00 1.3401921e+00 3.5795299e-06 5.5102439e+00 1.3333334e+00 -1.3281416e-06 5.5102849e+00 1.3104396e+00 1.1023934e-04 5.5102825e+00 1.3031551e+00 5.8443618e-07 5.5102658e+00 1.3484225e+00 1.4584485e-07 5.5102677e+00 1.3264747e+00 4.2389943e-06 5.5103078e+00 1.3017833e+00 1.6459428e-06 5.5102878e+00 1.2537723e+00 3.2763860e-06 5.5102506e+00 1.3076923e+00 4.6038320e-05 5.5101681e+00 1.2876712e+00]] Output: [[-2.8727052]] Test input: [[ 3.5795299e-06 5.5102439e+00 1.3333334e+00 -1.3281416e-06 5.5102849e+00 1.3104396e+00 1.1023934e-04 5.5102825e+00 1.3031551e+00 5.8443618e-07 5.5102658e+00 1.3484225e+00 1.4584485e-07 5.5102677e+00 1.3264747e+00 4.2389943e-06 5.5103078e+00 1.3017833e+00 1.6459428e-06 5.5102878e+00 1.2537723e+00 3.2763860e-06 5.5102506e+00 1.3076923e+00 4.6038320e-05 5.5101681e+00 1.2876712e+00 3.7788702e-06 5.5102515e+00 1.2870879e+00]] Output: [[-2.8727052]] Test input: [[-1.3281416e-06 5.5102849e+00 1.3104396e+00 1.1023934e-04 5.5102825e+00 1.3031551e+00 5.8443618e-07 5.5102658e+00 1.3484225e+00 1.4584485e-07 5.5102677e+00 1.3264747e+00 4.2389943e-06 5.5103078e+00 1.3017833e+00 1.6459428e-06 5.5102878e+00 1.2537723e+00 3.2763860e-06 5.5102506e+00 1.3076923e+00 4.6038320e-05 5.5101681e+00 1.2876712e+00 3.7788702e-06 5.5102515e+00 1.2870879e+00 8.1557655e-06 5.5102310e+00 1.2716049e+00]] Output: [[-2.8727052]] Test input: [[1.1023934e-04 5.5102825e+00 1.3031551e+00 5.8443618e-07 5.5102658e+00 1.3484225e+00 1.4584485e-07 5.5102677e+00 1.3264747e+00 4.2389943e-06 5.5103078e+00 1.3017833e+00 1.6459428e-06 5.5102878e+00 1.2537723e+00 3.2763860e-06 5.5102506e+00 1.3076923e+00 4.6038320e-05 5.5101681e+00 1.2876712e+00 3.7788702e-06 5.5102515e+00 1.2870879e+00 8.1557655e-06 5.5102310e+00 1.2716049e+00 3.2241367e-06 5.5102472e+00 1.3237312e+00]] Output: [[-2.8864503]] Test input: [[ 5.8443618e-07 5.5102658e+00 1.3484225e+00 1.4584485e-07 5.5102677e+00 1.3264747e+00 4.2389943e-06 5.5103078e+00 1.3017833e+00 1.6459428e-06 5.5102878e+00 1.2537723e+00 3.2763860e-06 5.5102506e+00 1.3076923e+00 4.6038320e-05 5.5101681e+00 1.2876712e+00 3.7788702e-06 5.5102515e+00 1.2870879e+00 8.1557655e-06 5.5102310e+00 1.2716049e+00 3.2241367e-06 5.5102472e+00 1.3237312e+00 -3.5546443e-06 5.5101843e+00 1.3049451e+00]] Output: [[-2.8864503]] Test input: [[ 1.4584485e-07 5.5102677e+00 1.3264747e+00 4.2389943e-06 5.5103078e+00 1.3017833e+00 1.6459428e-06 5.5102878e+00 1.2537723e+00 3.2763860e-06 5.5102506e+00 1.3076923e+00 4.6038320e-05 5.5101681e+00 1.2876712e+00 3.7788702e-06 5.5102515e+00 1.2870879e+00 8.1557655e-06 5.5102310e+00 1.2716049e+00 3.2241367e-06 5.5102472e+00 1.3237312e+00 -3.5546443e-06 5.5101843e+00 1.3049451e+00 -3.1835775e-06 5.5102630e+00 1.3196160e+00]] Output: [[-2.8727052]] Test input: [[ 4.2389943e-06 5.5103078e+00 1.3017833e+00 1.6459428e-06 5.5102878e+00 1.2537723e+00 3.2763860e-06 5.5102506e+00 1.3076923e+00 4.6038320e-05 5.5101681e+00 1.2876712e+00 3.7788702e-06 5.5102515e+00 1.2870879e+00 8.1557655e-06 5.5102310e+00 1.2716049e+00 3.2241367e-06 5.5102472e+00 1.3237312e+00 -3.5546443e-06 5.5101843e+00 1.3049451e+00 -3.1835775e-06 5.5102630e+00 1.3196160e+00 -1.3238323e-05 5.5102229e+00 1.2582418e+00]] Output: [[-2.9001954]] Test input: [[ 1.6459428e-06 5.5102878e+00 1.2537723e+00 3.2763860e-06 5.5102506e+00 1.3076923e+00 4.6038320e-05 5.5101681e+00 1.2876712e+00 3.7788702e-06 5.5102515e+00 1.2870879e+00 8.1557655e-06 5.5102310e+00 1.2716049e+00 3.2241367e-06 5.5102472e+00 1.3237312e+00 -3.5546443e-06 5.5101843e+00 1.3049451e+00 -3.1835775e-06 5.5102630e+00 1.3196160e+00 -1.3238323e-05 5.5102229e+00 1.2582418e+00 7.0823990e-06 5.5102425e+00 1.2565157e+00]] Output: [[-2.8452153]] Test input: [[ 3.2763860e-06 5.5102506e+00 1.3076923e+00 4.6038320e-05 5.5101681e+00 1.2876712e+00 3.7788702e-06 5.5102515e+00 1.2870879e+00 8.1557655e-06 5.5102310e+00 1.2716049e+00 3.2241367e-06 5.5102472e+00 1.3237312e+00 -3.5546443e-06 5.5101843e+00 1.3049451e+00 -3.1835775e-06 5.5102630e+00 1.3196160e+00 -1.3238323e-05 5.5102229e+00 1.2582418e+00 7.0823990e-06 5.5102425e+00 1.2565157e+00 1.1102212e-05 5.5101981e+00 1.1821917e+00]] Output: [[-2.8864503]] Test input: [[ 4.6038320e-05 5.5101681e+00 1.2876712e+00 3.7788702e-06 5.5102515e+00 1.2870879e+00 8.1557655e-06 5.5102310e+00 1.2716049e+00 3.2241367e-06 5.5102472e+00 1.3237312e+00 -3.5546443e-06 5.5101843e+00 1.3049451e+00 -3.1835775e-06 5.5102630e+00 1.3196160e+00 -1.3238323e-05 5.5102229e+00 1.2582418e+00 7.0823990e-06 5.5102425e+00 1.2565157e+00 1.1102212e-05 5.5101981e+00 1.1821917e+00 2.5045936e-06 5.5102043e+00 1.1851852e+00]] Output: [[-2.8864503]] Test input: [[ 3.7788702e-06 5.5102515e+00 1.2870879e+00 8.1557655e-06 5.5102310e+00 1.2716049e+00 3.2241367e-06 5.5102472e+00 1.3237312e+00 -3.5546443e-06 5.5101843e+00 1.3049451e+00 -3.1835775e-06 5.5102630e+00 1.3196160e+00 -1.3238323e-05 5.5102229e+00 1.2582418e+00 7.0823990e-06 5.5102425e+00 1.2565157e+00 1.1102212e-05 5.5101981e+00 1.1821917e+00 2.5045936e-06 5.5102043e+00 1.1851852e+00 2.6077068e-06 5.5101080e+00 1.1909341e+00]] Output: [[-2.8727052]] Test input: [[ 8.1557655e-06 5.5102310e+00 1.2716049e+00 3.2241367e-06 5.5102472e+00 1.3237312e+00 -3.5546443e-06 5.5101843e+00 1.3049451e+00 -3.1835775e-06 5.5102630e+00 1.3196160e+00 -1.3238323e-05 5.5102229e+00 1.2582418e+00 7.0823990e-06 5.5102425e+00 1.2565157e+00 1.1102212e-05 5.5101981e+00 1.1821917e+00 2.5045936e-06 5.5102043e+00 1.1851852e+00 2.6077068e-06 5.5101080e+00 1.1909341e+00 1.6787177e-05 5.5101032e+00 1.1659808e+00]] Output: [[-2.8039804]] Test input: [[ 3.2241367e-06 5.5102472e+00 1.3237312e+00 -3.5546443e-06 5.5101843e+00 1.3049451e+00 -3.1835775e-06 5.5102630e+00 1.3196160e+00 -1.3238323e-05 5.5102229e+00 1.2582418e+00 7.0823990e-06 5.5102425e+00 1.2565157e+00 1.1102212e-05 5.5101981e+00 1.1821917e+00 2.5045936e-06 5.5102043e+00 1.1851852e+00 2.6077068e-06 5.5101080e+00 1.1909341e+00 1.6787177e-05 5.5101032e+00 1.1659808e+00 9.9408180e-06 5.5101042e+00 1.1604939e+00]] Output: [[-2.8177254]] Test input: [[-3.5546443e-06 5.5101843e+00 1.3049451e+00 -3.1835775e-06 5.5102630e+00 1.3196160e+00 -1.3238323e-05 5.5102229e+00 1.2582418e+00 7.0823990e-06 5.5102425e+00 1.2565157e+00 1.1102212e-05 5.5101981e+00 1.1821917e+00 2.5045936e-06 5.5102043e+00 1.1851852e+00 2.6077068e-06 5.5101080e+00 1.1909341e+00 1.6787177e-05 5.5101032e+00 1.1659808e+00 9.9408180e-06 5.5101042e+00 1.1604939e+00 -3.4012601e-06 5.5100465e+00 1.1442307e+00]] Output: [[-2.7764902]] Test input: [[-3.1835775e-06 5.5102630e+00 1.3196160e+00 -1.3238323e-05 5.5102229e+00 1.2582418e+00 7.0823990e-06 5.5102425e+00 1.2565157e+00 1.1102212e-05 5.5101981e+00 1.1821917e+00 2.5045936e-06 5.5102043e+00 1.1851852e+00 2.6077068e-06 5.5101080e+00 1.1909341e+00 1.6787177e-05 5.5101032e+00 1.1659808e+00 9.9408180e-06 5.5101042e+00 1.1604939e+00 -3.4012601e-06 5.5100465e+00 1.1442307e+00 -4.3923388e-05 5.5100384e+00 1.1358025e+00]] Output: [[-2.7764902]] Test input: [[-1.3238323e-05 5.5102229e+00 1.2582418e+00 7.0823990e-06 5.5102425e+00 1.2565157e+00 1.1102212e-05 5.5101981e+00 1.1821917e+00 2.5045936e-06 5.5102043e+00 1.1851852e+00 2.6077068e-06 5.5101080e+00 1.1909341e+00 1.6787177e-05 5.5101032e+00 1.1659808e+00 9.9408180e-06 5.5101042e+00 1.1604939e+00 -3.4012601e-06 5.5100465e+00 1.1442307e+00 -4.3923388e-05 5.5100384e+00 1.1358025e+00 -4.4587373e-06 5.5100632e+00 1.1689560e+00]] Output: [[-2.7902353]] Test input: [[ 7.0823990e-06 5.5102425e+00 1.2565157e+00 1.1102212e-05 5.5101981e+00 1.1821917e+00 2.5045936e-06 5.5102043e+00 1.1851852e+00 2.6077068e-06 5.5101080e+00 1.1909341e+00 1.6787177e-05 5.5101032e+00 1.1659808e+00 9.9408180e-06 5.5101042e+00 1.1604939e+00 -3.4012601e-06 5.5100465e+00 1.1442307e+00 -4.3923388e-05 5.5100384e+00 1.1358025e+00 -4.4587373e-06 5.5100632e+00 1.1689560e+00 -1.3024712e-05 5.5100770e+00 1.1465753e+00]] Output: [[-2.7764902]] Test input: [[ 1.1102212e-05 5.5101981e+00 1.1821917e+00 2.5045936e-06 5.5102043e+00 1.1851852e+00 2.6077068e-06 5.5101080e+00 1.1909341e+00 1.6787177e-05 5.5101032e+00 1.1659808e+00 9.9408180e-06 5.5101042e+00 1.1604939e+00 -3.4012601e-06 5.5100465e+00 1.1442307e+00 -4.3923388e-05 5.5100384e+00 1.1358025e+00 -4.4587373e-06 5.5100632e+00 1.1689560e+00 -1.3024712e-05 5.5100770e+00 1.1465753e+00 1.4820310e-05 5.5100718e+00 1.1138546e+00]] Output: [[-2.7764902]] Test input: [[ 2.5045936e-06 5.5102043e+00 1.1851852e+00 2.6077068e-06 5.5101080e+00 1.1909341e+00 1.6787177e-05 5.5101032e+00 1.1659808e+00 9.9408180e-06 5.5101042e+00 1.1604939e+00 -3.4012601e-06 5.5100465e+00 1.1442307e+00 -4.3923388e-05 5.5100384e+00 1.1358025e+00 -4.4587373e-06 5.5100632e+00 1.1689560e+00 -1.3024712e-05 5.5100770e+00 1.1465753e+00 1.4820310e-05 5.5100718e+00 1.1138546e+00 2.6703607e-05 5.5100279e+00 1.1083677e+00]] Output: [[-2.7215104]] Test input: [[ 2.6077068e-06 5.5101080e+00 1.1909341e+00 1.6787177e-05 5.5101032e+00 1.1659808e+00 9.9408180e-06 5.5101042e+00 1.1604939e+00 -3.4012601e-06 5.5100465e+00 1.1442307e+00 -4.3923388e-05 5.5100384e+00 1.1358025e+00 -4.4587373e-06 5.5100632e+00 1.1689560e+00 -1.3024712e-05 5.5100770e+00 1.1465753e+00 1.4820310e-05 5.5100718e+00 1.1138546e+00 2.6703607e-05 5.5100279e+00 1.1083677e+00 -4.7037653e-07 5.5100236e+00 1.0932784e+00]] Output: [[-2.7215104]] Test input: [[ 1.6787177e-05 5.5101032e+00 1.1659808e+00 9.9408180e-06 5.5101042e+00 1.1604939e+00 -3.4012601e-06 5.5100465e+00 1.1442307e+00 -4.3923388e-05 5.5100384e+00 1.1358025e+00 -4.4587373e-06 5.5100632e+00 1.1689560e+00 -1.3024712e-05 5.5100770e+00 1.1465753e+00 1.4820310e-05 5.5100718e+00 1.1138546e+00 2.6703607e-05 5.5100279e+00 1.1083677e+00 -4.7037653e-07 5.5100236e+00 1.0932784e+00 4.5823752e-05 5.5098848e+00 1.1126374e+00]] Output: [[-2.7215104]] Test input: [[ 9.9408180e-06 5.5101042e+00 1.1604939e+00 -3.4012601e-06 5.5100465e+00 1.1442307e+00 -4.3923388e-05 5.5100384e+00 1.1358025e+00 -4.4587373e-06 5.5100632e+00 1.1689560e+00 -1.3024712e-05 5.5100770e+00 1.1465753e+00 1.4820310e-05 5.5100718e+00 1.1138546e+00 2.6703607e-05 5.5100279e+00 1.1083677e+00 -4.7037653e-07 5.5100236e+00 1.0932784e+00 4.5823752e-05 5.5098848e+00 1.1126374e+00 -6.1712541e-05 5.5098825e+00 1.1179699e+00]] Output: [[-2.6940203]] Test input: [[-3.4012601e-06 5.5100465e+00 1.1442307e+00 -4.3923388e-05 5.5100384e+00 1.1358025e+00 -4.4587373e-06 5.5100632e+00 1.1689560e+00 -1.3024712e-05 5.5100770e+00 1.1465753e+00 1.4820310e-05 5.5100718e+00 1.1138546e+00 2.6703607e-05 5.5100279e+00 1.1083677e+00 -4.7037653e-07 5.5100236e+00 1.0932784e+00 4.5823752e-05 5.5098848e+00 1.1126374e+00 -6.1712541e-05 5.5098825e+00 1.1179699e+00 -1.3816259e-05 5.5100121e+00 1.1015090e+00]] Output: [[-2.6940203]] Test input: [[-4.3923388e-05 5.5100384e+00 1.1358025e+00 -4.4587373e-06 5.5100632e+00 1.1689560e+00 -1.3024712e-05 5.5100770e+00 1.1465753e+00 1.4820310e-05 5.5100718e+00 1.1138546e+00 2.6703607e-05 5.5100279e+00 1.1083677e+00 -4.7037653e-07 5.5100236e+00 1.0932784e+00 4.5823752e-05 5.5098848e+00 1.1126374e+00 -6.1712541e-05 5.5098825e+00 1.1179699e+00 -1.3816259e-05 5.5100121e+00 1.1015090e+00 6.5980712e-06 5.5100169e+00 1.0837913e+00]] Output: [[-2.6940203]] Reading model from ./aurora_int_quan_model.tflite ... Reading model from ./aurora_int_quan_model.tflite ... Reading model from ./aurora_int_quan_model.tflite ... make -C /lib/modules/4.15.0-210-generic/build M=/home/yk/liteflow/script modules make[1]: Entering directory '/usr/src/linux-headers-4.15.0-210-generic' CC [M] /home/yk/liteflow/script/lf_model_1.o CC [M] /home/yk/liteflow/script/lf_model_2.o CC [M] /home/yk/liteflow/script/lf_model_3.o Building modules, stage 2. MODPOST 3 modules WARNING: "lf_unregister_model" [/home/yk/liteflow/script/lf_model_3.ko] undefined! WARNING: "lf_register_model" [/home/yk/liteflow/script/lf_model_3.ko] undefined! WARNING: "lf_unregister_model" [/home/yk/liteflow/script/lf_model_2.ko] undefined! WARNING: "lf_register_model" [/home/yk/liteflow/script/lf_model_2.ko] undefined! WARNING: "lf_unregister_model" [/home/yk/liteflow/script/lf_model_1.ko] undefined! WARNING: "lf_register_model" [/home/yk/liteflow/script/lf_model_1.ko] undefined! LD [M] /home/yk/liteflow/script/lf_model_1.ko LD [M] /home/yk/liteflow/script/lf_model_2.ko LD [M] /home/yk/liteflow/script/lf_model_3.ko make[1]: Leaving directory '/usr/src/linux-headers-4.15.0-210-generic' ```
y-koj commented 1 year ago

And here is the full output of active standby. I could not include it in the first comment because it met the character count limit.

Full output of active standby ``` yk@ubuntu18-on-qemu:~/liteflow/script$ ./active_standby_switch.sh insmod: ERROR: could not insert module lf_model_1.ko: Operation not permitted --2023-05-14 10:56:42-- https://conferences.sigcomm.org/sigcomm/2022/ Resolving conferences.sigcomm.org (conferences.sigcomm.org)... 190.92.158.4 Connecting to conferences.sigcomm.org (conferences.sigcomm.org)|190.92.158.4|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 34140 (33K) [text/html] Saving to: ‘/tmp/sigcomm1.html’ /tmp/sigcomm1.html 100%[===================>] 33.34K 208KB/s in 0.2s 2023-05-14 10:56:43 (208 KB/s) - ‘/tmp/sigcomm1.html’ saved [34140/34140] insmod: ERROR: could not insert module lf_model_2.ko: Operation not permitted --2023-05-14 10:56:43-- https://conferences.sigcomm.org/sigcomm/2022/ Resolving conferences.sigcomm.org (conferences.sigcomm.org)... 190.92.158.4 Connecting to conferences.sigcomm.org (conferences.sigcomm.org)|190.92.158.4|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 34140 (33K) [text/html] Saving to: ‘/tmp/sigcomm2.html’ /tmp/sigcomm2.html 100%[===================>] 33.34K --.-KB/s in 0.1s 2023-05-14 10:56:44 (225 KB/s) - ‘/tmp/sigcomm2.html’ saved [34140/34140] insmod: ERROR: could not insert module lf_model_3.ko: Operation not permitted --2023-05-14 10:56:44-- https://conferences.sigcomm.org/sigcomm/2022/ Resolving conferences.sigcomm.org (conferences.sigcomm.org)... 190.92.158.4 Connecting to conferences.sigcomm.org (conferences.sigcomm.org)|190.92.158.4|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 34140 (33K) [text/html] Saving to: ‘/tmp/sigcomm3.html’ /tmp/sigcomm3.html 100%[===================>] 33.34K 216KB/s in 0.2s 2023-05-14 10:56:44 (216 KB/s) - ‘/tmp/sigcomm3.html’ saved [34140/34140] [ 0.000000] Linux version 4.15.0-210-generic (buildd@lcy02-amd64-056) (gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)) #221-Ubuntu SMP Tue Apr 18 08:32:52 UTC 2023 (Ubuntu 4.15.0-210.221-generic 4.15.18) [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.15.0-210-generic root=UUID=0d1b6e8a-aa0e-4a12-8826-057a2e075bb9 ro maybe-ubiquity [ 0.000000] KERNEL supported cpus: [ 0.000000] Intel GenuineIntel [ 0.000000] AMD AuthenticAMD [ 0.000000] Centaur CentaurHauls [ 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: Supporting XSAVE feature 0x200: 'Protection Keys User registers' [ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 [ 0.000000] x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8 [ 0.000000] x86/fpu: Enabled xstate features 0x207, context size is 840 bytes, using 'compacted' format. [ 0.000000] e820: BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ffdbfff] usable [ 0.000000] BIOS-e820: [mem 0x000000007ffdc000-0x000000007fffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000017fffffff] usable [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] SMBIOS 2.8 present. [ 0.000000] DMI: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.15.0-1 04/01/2014 [ 0.000000] Hypervisor detected: KVM [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.000000] e820: last_pfn = 0x180000 max_arch_pfn = 0x400000000 [ 0.000000] MTRR default type: write-back [ 0.000000] MTRR fixed ranges enabled: [ 0.000000] 00000-9FFFF write-back [ 0.000000] A0000-BFFFF uncachable [ 0.000000] C0000-FFFFF write-protect [ 0.000000] MTRR variable ranges enabled: [ 0.000000] 0 base 0000C0000000 mask 3FFFC0000000 uncachable [ 0.000000] 1 disabled [ 0.000000] 2 disabled [ 0.000000] 3 disabled [ 0.000000] 4 disabled [ 0.000000] 5 disabled [ 0.000000] 6 disabled [ 0.000000] 7 disabled [ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT [ 0.000000] e820: last_pfn = 0x7ffdc max_arch_pfn = 0x400000000 [ 0.000000] found SMP MP-table at [mem 0x000f5b70-0x000f5b7f] [ 0.000000] Scanning 1 areas for low memory corruption [ 0.000000] Using GB pages for direct mapping [ 0.000000] RAMDISK: [mem 0x30789000-0x343bbfff] [ 0.000000] ACPI: Early table checksum verification disabled [ 0.000000] ACPI: RSDP 0x00000000000F5960 000014 (v00 BOCHS ) [ 0.000000] ACPI: RSDT 0x000000007FFE2A4E 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001) [ 0.000000] ACPI: FACP 0x000000007FFE2876 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001) [ 0.000000] ACPI: DSDT 0x000000007FFE0040 002836 (v01 BOCHS BXPC 00000001 BXPC 00000001) [ 0.000000] ACPI: FACS 0x000000007FFE0000 000040 [ 0.000000] ACPI: APIC 0x000000007FFE296A 000080 (v01 BOCHS BXPC 00000001 BXPC 00000001) [ 0.000000] ACPI: MCFG 0x000000007FFE29EA 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001) [ 0.000000] ACPI: WAET 0x000000007FFE2A26 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001) [ 0.000000] ACPI: Reserving FACP table memory at [mem 0x7ffe2876-0x7ffe2969] [ 0.000000] ACPI: Reserving DSDT table memory at [mem 0x7ffe0040-0x7ffe2875] [ 0.000000] ACPI: Reserving FACS table memory at [mem 0x7ffe0000-0x7ffe003f] [ 0.000000] ACPI: Reserving APIC table memory at [mem 0x7ffe296a-0x7ffe29e9] [ 0.000000] ACPI: Reserving MCFG table memory at [mem 0x7ffe29ea-0x7ffe2a25] [ 0.000000] ACPI: Reserving WAET table memory at [mem 0x7ffe2a26-0x7ffe2a4d] [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] No NUMA configuration found [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000017fffffff] [ 0.000000] NODE_DATA(0) allocated [mem 0x17ffd3000-0x17fffdfff] [ 0.000000] kvm-clock: cpu 0, msr 1:7ff52001, primary cpu clock [ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00 [ 0.000000] kvm-clock: using sched offset of 3961501477306 cycles [ 0.000000] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 0.000000] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] [ 0.000000] Normal [mem 0x0000000100000000-0x000000017fffffff] [ 0.000000] Device empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff] [ 0.000000] node 0: [mem 0x0000000000100000-0x000000007ffdbfff] [ 0.000000] node 0: [mem 0x0000000100000000-0x000000017fffffff] [ 0.000000] Reserved but unavailable: 101 pages [ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000017fffffff] [ 0.000000] On node 0 totalpages: 1048442 [ 0.000000] DMA zone: 64 pages used for memmap [ 0.000000] DMA zone: 21 pages reserved [ 0.000000] DMA zone: 3998 pages, LIFO batch:0 [ 0.000000] DMA32 zone: 8128 pages used for memmap [ 0.000000] DMA32 zone: 520156 pages, LIFO batch:31 [ 0.000000] Normal zone: 8192 pages used for memmap [ 0.000000] Normal zone: 524288 pages, LIFO batch:31 [ 0.000000] ACPI: PM-Timer IO Port: 0x608 [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) [ 0.000000] IOAPIC[0]: apic_id 0, version 17, 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 5 global_irq 5 high level) [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) [ 0.000000] ACPI: IRQ0 used by override. [ 0.000000] ACPI: IRQ5 used by override. [ 0.000000] ACPI: IRQ9 used by override. [ 0.000000] ACPI: IRQ10 used by override. [ 0.000000] ACPI: IRQ11 used by override. [ 0.000000] Using ACPI (MADT) for SMP configuration information [ 0.000000] TSC deadline timer available [ 0.000000] smpboot: Allowing 2 CPUs, 0 hotplug CPUs [ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff] [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff] [ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff] [ 0.000000] PM: Registered nosave memory: [mem 0x7ffdc000-0x7fffffff] [ 0.000000] PM: Registered nosave memory: [mem 0x80000000-0xafffffff] [ 0.000000] PM: Registered nosave memory: [mem 0xb0000000-0xbfffffff] [ 0.000000] PM: Registered nosave memory: [mem 0xc0000000-0xfed1bfff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfeffbfff] [ 0.000000] PM: Registered nosave memory: [mem 0xfeffc000-0xfeffffff] [ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xfffbffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfffc0000-0xffffffff] [ 0.000000] e820: [mem 0xc0000000-0xfed1bfff] available for PCI devices [ 0.000000] Booting paravirtualized kernel on KVM [ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns [ 0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 [ 0.000000] percpu: Embedded 50 pages/cpu s167936 r8192 d28672 u1048576 [ 0.000000] pcpu-alloc: s167936 r8192 d28672 u1048576 alloc=1*2097152 [ 0.000000] pcpu-alloc: [0] 0 1 [ 0.000000] KVM setup async PF for cpu 0 [ 0.000000] kvm-stealtime: cpu 0, msr 17fc28040 [ 0.000000] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes) [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 1032037 [ 0.000000] Policy zone: Normal [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-4.15.0-210-generic root=UUID=0d1b6e8a-aa0e-4a12-8826-057a2e075bb9 ro maybe-ubiquity [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! [ 0.000000] Memory: 3971064K/4193768K available (12300K kernel code, 2477K rwdata, 4324K rodata, 2480K init, 2720K bss, 222704K reserved, 0K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] ftrace: allocating 39506 entries in 155 pages [ 0.004000] Hierarchical RCU implementation. [ 0.004000] RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=2. [ 0.004000] Tasks RCU enabled. [ 0.004000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 [ 0.004000] NR_IRQS: 524544, nr_irqs: 440, preallocated irqs: 16 [ 0.004000] random: crng init done [ 0.004000] Console: colour dummy device 80x25 [ 0.004000] console [tty0] enabled [ 0.004000] ACPI: Core revision 20170831 [ 0.004000] ACPI: 1 ACPI AML tables successfully acquired and loaded [ 0.004000] APIC: Switch to symmetric I/O mode setup [ 0.004000] x2apic enabled [ 0.004000] Switched APIC routing to physical x2apic. [ 0.004000] tsc: Detected 2112.000 MHz processor [ 0.004000] Calibrating delay loop (skipped) preset value.. 4224.00 BogoMIPS (lpj=8448000) [ 0.004000] pid_max: default: 32768 minimum: 301 [ 0.004000] Security Framework initialized [ 0.004000] Yama: becoming mindful. [ 0.004000] AppArmor: AppArmor initialized [ 0.004000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes) [ 0.004000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes) [ 0.004000] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes) [ 0.004000] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes) [ 0.004000] x86/cpu: Activated the Intel User Mode Instruction Prevention (UMIP) CPU feature [ 0.004000] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 [ 0.004000] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 [ 0.004000] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization [ 0.004000] Spectre V2 : Mitigation: Enhanced IBRS [ 0.004000] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch [ 0.004000] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT [ 0.004000] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier [ 0.004000] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp [ 0.004000] Freeing SMP alternatives memory: 36K [ 0.004000] smpboot: CPU0: 12th Gen Intel(R) Core(TM) i7-12700 (family: 0x6, model: 0x97, stepping: 0x2) [ 0.004000] Performance Events: generic architected perfmon, full-width counters, Intel PMU driver. [ 0.004000] ... version: 2 [ 0.004000] ... bit width: 48 [ 0.004000] ... generic registers: 6 [ 0.004000] ... value mask: 0000ffffffffffff [ 0.004000] ... max period: 00007fffffffffff [ 0.004000] ... fixed-purpose events: 3 [ 0.004000] ... event mask: 000000070000003f [ 0.004000] Hierarchical SRCU implementation. [ 0.004000] smp: Bringing up secondary CPUs ... [ 0.004000] x86: Booting SMP configuration: [ 0.004000] .... node #0, CPUs: #1 [ 0.004000] kvm-clock: cpu 1, msr 1:7ff52041, secondary cpu clock [ 0.004000] x86/cpu: Activated the Intel User Mode Instruction Prevention (UMIP) CPU feature [ 0.004012] KVM setup async PF for cpu 1 [ 0.004019] kvm-stealtime: cpu 1, msr 17fd28040 [ 0.004021] smp: Brought up 1 node, 2 CPUs [ 0.004021] smpboot: Max logical packages: 2 [ 0.004021] smpboot: Total of 2 processors activated (8448.00 BogoMIPS) [ 0.004598] devtmpfs: initialized [ 0.004598] x86/mm: Memory block size: 128MB [ 0.004598] evm: security.selinux [ 0.004598] evm: security.SMACK64 [ 0.004598] evm: security.SMACK64EXEC [ 0.004598] evm: security.SMACK64TRANSMUTE [ 0.004598] evm: security.SMACK64MMAP [ 0.004598] evm: security.apparmor [ 0.004598] evm: security.ima [ 0.004598] evm: security.capability [ 0.004598] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.004598] futex hash table entries: 512 (order: 3, 32768 bytes) [ 0.004598] pinctrl core: initialized pinctrl subsystem [ 0.004598] RTC time: 10:49:55, date: 05/14/23 [ 0.004598] NET: Registered protocol family 16 [ 0.004598] audit: initializing netlink subsys (disabled) [ 0.004598] audit: type=2000 audit(1684061394.528:1): state=initialized audit_enabled=0 res=1 [ 0.004598] cpuidle: using governor ladder [ 0.004598] cpuidle: using governor menu [ 0.004598] ACPI: bus type PCI registered [ 0.004598] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.004598] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xb0000000-0xbfffffff] (base 0xb0000000) [ 0.004598] PCI: MMCONFIG at [mem 0xb0000000-0xbfffffff] reserved in E820 [ 0.004598] PCI: Using configuration type 1 for base access [ 0.004598] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages [ 0.004598] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 0.004598] ACPI: Added _OSI(Module Device) [ 0.004598] ACPI: Added _OSI(Processor Device) [ 0.004598] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.004598] ACPI: Added _OSI(Processor Aggregator Device) [ 0.004598] ACPI: Added _OSI(Linux-Dell-Video) [ 0.004598] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) [ 0.004598] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) [ 0.005364] ACPI: Interpreter enabled [ 0.005373] ACPI: (supports S0 S5) [ 0.005374] ACPI: Using IOAPIC for interrupt routing [ 0.005384] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.005456] ACPI: Enabled 2 GPEs in block 00 to 3F [ 0.009280] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) [ 0.009282] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] [ 0.009327] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug] [ 0.009363] acpi PNP0A08:00: _OSC: OS now controls [PME AER PCIeCapability] [ 0.009503] PCI host bridge to bus 0000:00 [ 0.009504] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] [ 0.009505] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] [ 0.009506] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] [ 0.009507] pci_bus 0000:00: root bus resource [mem 0x80000000-0xafffffff window] [ 0.009508] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] [ 0.009509] pci_bus 0000:00: root bus resource [mem 0x180000000-0x97fffffff window] [ 0.009510] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.009526] pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000 [ 0.009747] pci 0000:00:01.0: [1af4:1050] type 00 class 0x030000 [ 0.011883] pci 0000:00:01.0: reg 0x10: [mem 0xfa800000-0xfaffffff pref] [ 0.014488] pci 0000:00:01.0: reg 0x18: [mem 0xfcc00000-0xfcc03fff 64bit pref] [ 0.016025] pci 0000:00:01.0: reg 0x20: [mem 0xfea14000-0xfea14fff] [ 0.019307] pci 0000:00:01.0: reg 0x30: [mem 0xfea00000-0xfea0ffff pref] [ 0.020190] pci 0000:00:02.0: [1b36:000c] type 01 class 0x060400 [ 0.021106] pci 0000:00:02.0: reg 0x10: [mem 0xfea15000-0xfea15fff] [ 0.022865] pci 0000:00:02.1: [1b36:000c] type 01 class 0x060400 [ 0.023783] pci 0000:00:02.1: reg 0x10: [mem 0xfea16000-0xfea16fff] [ 0.025415] pci 0000:00:02.2: [1b36:000c] type 01 class 0x060400 [ 0.026537] pci 0000:00:02.2: reg 0x10: [mem 0xfea17000-0xfea17fff] [ 0.028762] pci 0000:00:02.3: [1b36:000c] type 01 class 0x060400 [ 0.031560] pci 0000:00:02.3: reg 0x10: [mem 0xfea18000-0xfea18fff] [ 0.033588] pci 0000:00:02.4: [1b36:000c] type 01 class 0x060400 [ 0.034459] pci 0000:00:02.4: reg 0x10: [mem 0xfea19000-0xfea19fff] [ 0.036035] pci 0000:00:02.5: [1b36:000c] type 01 class 0x060400 [ 0.036860] pci 0000:00:02.5: reg 0x10: [mem 0xfea1a000-0xfea1afff] [ 0.038577] pci 0000:00:02.6: [1b36:000c] type 01 class 0x060400 [ 0.039498] pci 0000:00:02.6: reg 0x10: [mem 0xfea1b000-0xfea1bfff] [ 0.043369] pci 0000:00:02.7: [1b36:000c] type 01 class 0x060400 [ 0.044004] pci 0000:00:02.7: reg 0x10: [mem 0xfea1c000-0xfea1cfff] [ 0.045567] pci 0000:00:03.0: [1b36:000c] type 01 class 0x060400 [ 0.046401] pci 0000:00:03.0: reg 0x10: [mem 0xfea1d000-0xfea1dfff] [ 0.047941] pci 0000:00:03.1: [1b36:000c] type 01 class 0x060400 [ 0.048696] pci 0000:00:03.1: reg 0x10: [mem 0xfea1e000-0xfea1efff] [ 0.050326] pci 0000:00:03.2: [1b36:000c] type 01 class 0x060400 [ 0.051215] pci 0000:00:03.2: reg 0x10: [mem 0xfea1f000-0xfea1ffff] [ 0.054778] pci 0000:00:03.3: [1b36:000c] type 01 class 0x060400 [ 0.055611] pci 0000:00:03.3: reg 0x10: [mem 0xfea20000-0xfea20fff] [ 0.057057] pci 0000:00:03.4: [1b36:000c] type 01 class 0x060400 [ 0.057888] pci 0000:00:03.4: reg 0x10: [mem 0xfea21000-0xfea21fff] [ 0.059432] pci 0000:00:03.5: [1b36:000c] type 01 class 0x060400 [ 0.060002] pci 0000:00:03.5: reg 0x10: [mem 0xfea22000-0xfea22fff] [ 0.062056] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300 [ 0.062414] pci 0000:00:1b.0: reg 0x10: [mem 0xfea10000-0xfea13fff] [ 0.064758] pci 0000:00:1f.0: [8086:2918] type 00 class 0x060100 [ 0.064966] pci 0000:00:1f.0: quirk: [io 0x0600-0x067f] claimed by ICH6 ACPI/GPIO/TCO [ 0.065072] pci 0000:00:1f.2: [8086:2922] type 00 class 0x010601 [ 0.067573] pci 0000:00:1f.2: reg 0x20: [io 0xc040-0xc05f] [ 0.068005] pci 0000:00:1f.2: reg 0x24: [mem 0xfea23000-0xfea23fff] [ 0.068637] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500 [ 0.069913] pci 0000:00:1f.3: reg 0x20: [io 0x0700-0x073f] [ 0.070776] acpiphp: Slot [0] registered [ 0.070834] pci 0000:01:00.0: [1af4:1041] type 00 class 0x020000 [ 0.071863] pci 0000:01:00.0: reg 0x14: [mem 0xfe880000-0xfe880fff] [ 0.073775] pci 0000:01:00.0: reg 0x20: [mem 0xfca00000-0xfca03fff 64bit pref] [ 0.076309] pci 0000:01:00.0: reg 0x30: [mem 0xfe800000-0xfe87ffff pref] [ 0.076779] pci 0000:00:02.0: PCI bridge to [bus 01] [ 0.076794] pci 0000:00:02.0: bridge window [mem 0xfe800000-0xfe9fffff] [ 0.076808] pci 0000:00:02.0: bridge window [mem 0xfca00000-0xfcbfffff 64bit pref] [ 0.077218] acpiphp: Slot [0-2] registered [ 0.077254] pci 0000:02:00.0: [1b36:000d] type 00 class 0x0c0330 [ 0.077554] pci 0000:02:00.0: reg 0x10: [mem 0xfe600000-0xfe603fff 64bit] [ 0.079040] pci 0000:00:02.1: PCI bridge to [bus 02] [ 0.079055] pci 0000:00:02.1: bridge window [mem 0xfe600000-0xfe7fffff] [ 0.079069] pci 0000:00:02.1: bridge window [mem 0xfc800000-0xfc9fffff 64bit pref] [ 0.079455] acpiphp: Slot [0-3] registered [ 0.079510] pci 0000:03:00.0: [1af4:1043] type 00 class 0x078000 [ 0.080498] pci 0000:03:00.0: reg 0x14: [mem 0xfe400000-0xfe400fff] [ 0.082010] pci 0000:03:00.0: reg 0x20: [mem 0xfc600000-0xfc603fff 64bit pref] [ 0.082951] pci 0000:00:02.2: PCI bridge to [bus 03] [ 0.082967] pci 0000:00:02.2: bridge window [mem 0xfe400000-0xfe5fffff] [ 0.082980] pci 0000:00:02.2: bridge window [mem 0xfc600000-0xfc7fffff 64bit pref] [ 0.083363] acpiphp: Slot [0-4] registered [ 0.083419] pci 0000:04:00.0: [1af4:1042] type 00 class 0x010000 [ 0.084515] pci 0000:04:00.0: reg 0x14: [mem 0xfe200000-0xfe200fff] [ 0.086050] pci 0000:04:00.0: reg 0x20: [mem 0xfc400000-0xfc403fff 64bit pref] [ 0.088717] pci 0000:00:02.3: PCI bridge to [bus 04] [ 0.088732] pci 0000:00:02.3: bridge window [mem 0xfe200000-0xfe3fffff] [ 0.088746] pci 0000:00:02.3: bridge window [mem 0xfc400000-0xfc5fffff 64bit pref] [ 0.089627] acpiphp: Slot [0-5] registered [ 0.089682] pci 0000:05:00.0: [1af4:1045] type 00 class 0x00ff00 [ 0.091088] pci 0000:05:00.0: reg 0x20: [mem 0xfc200000-0xfc203fff 64bit pref] [ 0.091780] pci 0000:00:02.4: PCI bridge to [bus 05] [ 0.091795] pci 0000:00:02.4: bridge window [mem 0xfe000000-0xfe1fffff] [ 0.091810] pci 0000:00:02.4: bridge window [mem 0xfc200000-0xfc3fffff 64bit pref] [ 0.092092] acpiphp: Slot [0-6] registered [ 0.092146] pci 0000:06:00.0: [1af4:1044] type 00 class 0x00ff00 [ 0.093491] pci 0000:06:00.0: reg 0x20: [mem 0xfc000000-0xfc003fff 64bit pref] [ 0.094152] pci 0000:00:02.5: PCI bridge to [bus 06] [ 0.094167] pci 0000:00:02.5: bridge window [mem 0xfde00000-0xfdffffff] [ 0.094181] pci 0000:00:02.5: bridge window [mem 0xfc000000-0xfc1fffff 64bit pref] [ 0.094567] acpiphp: Slot [0-7] registered [ 0.094576] pci 0000:00:02.6: PCI bridge to [bus 07] [ 0.094591] pci 0000:00:02.6: bridge window [mem 0xfdc00000-0xfddfffff] [ 0.094604] pci 0000:00:02.6: bridge window [mem 0xfbe00000-0xfbffffff 64bit pref] [ 0.094975] acpiphp: Slot [0-8] registered [ 0.094983] pci 0000:00:02.7: PCI bridge to [bus 08] [ 0.094998] pci 0000:00:02.7: bridge window [mem 0xfda00000-0xfdbfffff] [ 0.095012] pci 0000:00:02.7: bridge window [mem 0xfbc00000-0xfbdfffff 64bit pref] [ 0.095379] acpiphp: Slot [0-9] registered [ 0.095387] pci 0000:00:03.0: PCI bridge to [bus 09] [ 0.095401] pci 0000:00:03.0: bridge window [mem 0xfd800000-0xfd9fffff] [ 0.095415] pci 0000:00:03.0: bridge window [mem 0xfba00000-0xfbbfffff 64bit pref] [ 0.095780] acpiphp: Slot [0-10] registered [ 0.095789] pci 0000:00:03.1: PCI bridge to [bus 0a] [ 0.095803] pci 0000:00:03.1: bridge window [mem 0xfd600000-0xfd7fffff] [ 0.095816] pci 0000:00:03.1: bridge window [mem 0xfb800000-0xfb9fffff 64bit pref] [ 0.096085] acpiphp: Slot [0-11] registered [ 0.096094] pci 0000:00:03.2: PCI bridge to [bus 0b] [ 0.096107] pci 0000:00:03.2: bridge window [mem 0xfd400000-0xfd5fffff] [ 0.096123] pci 0000:00:03.2: bridge window [mem 0xfb600000-0xfb7fffff 64bit pref] [ 0.096491] acpiphp: Slot [0-12] registered [ 0.096499] pci 0000:00:03.3: PCI bridge to [bus 0c] [ 0.096513] pci 0000:00:03.3: bridge window [mem 0xfd200000-0xfd3fffff] [ 0.096526] pci 0000:00:03.3: bridge window [mem 0xfb400000-0xfb5fffff 64bit pref] [ 0.096894] acpiphp: Slot [0-13] registered [ 0.096902] pci 0000:00:03.4: PCI bridge to [bus 0d] [ 0.096917] pci 0000:00:03.4: bridge window [mem 0xfd000000-0xfd1fffff] [ 0.096930] pci 0000:00:03.4: bridge window [mem 0xfb200000-0xfb3fffff 64bit pref] [ 0.097301] acpiphp: Slot [0-14] registered [ 0.097309] pci 0000:00:03.5: PCI bridge to [bus 0e] [ 0.097323] pci 0000:00:03.5: bridge window [mem 0xfce00000-0xfcffffff] [ 0.097337] pci 0000:00:03.5: bridge window [mem 0xfb000000-0xfb1fffff 64bit pref] [ 0.103072] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) [ 0.103116] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) [ 0.103155] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) [ 0.103192] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) [ 0.103229] ACPI: PCI Interrupt Link [LNKE] (IRQs 5 *10 11) [ 0.103266] ACPI: PCI Interrupt Link [LNKF] (IRQs 5 *10 11) [ 0.103304] ACPI: PCI Interrupt Link [LNKG] (IRQs 5 10 *11) [ 0.103341] ACPI: PCI Interrupt Link [LNKH] (IRQs 5 10 *11) [ 0.103357] ACPI: PCI Interrupt Link [GSIA] (IRQs *16) [ 0.103362] ACPI: PCI Interrupt Link [GSIB] (IRQs *17) [ 0.103368] ACPI: PCI Interrupt Link [GSIC] (IRQs *18) [ 0.103373] ACPI: PCI Interrupt Link [GSID] (IRQs *19) [ 0.103378] ACPI: PCI Interrupt Link [GSIE] (IRQs *20) [ 0.103388] ACPI: PCI Interrupt Link [GSIF] (IRQs *21) [ 0.103393] ACPI: PCI Interrupt Link [GSIG] (IRQs *22) [ 0.103398] ACPI: PCI Interrupt Link [GSIH] (IRQs *23) [ 0.103718] SCSI subsystem initialized [ 0.103791] libata version 3.00 loaded. [ 0.103791] pci 0000:00:01.0: vgaarb: setting as boot VGA device [ 0.103791] pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none [ 0.103791] pci 0000:00:01.0: vgaarb: bridge control possible [ 0.103791] vgaarb: loaded [ 0.103791] ACPI: bus type USB registered [ 0.103791] usbcore: registered new interface driver usbfs [ 0.103791] usbcore: registered new interface driver hub [ 0.103791] usbcore: registered new device driver usb [ 0.104018] EDAC MC: Ver: 3.0.0 [ 0.104276] PCI: Using ACPI for IRQ routing [ 0.130292] PCI: pci_cache_line_size set to 64 bytes [ 0.130477] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff] [ 0.130479] e820: reserve RAM buffer [mem 0x7ffdc000-0x7fffffff] [ 0.130565] NetLabel: Initializing [ 0.130566] NetLabel: domain hash size = 128 [ 0.130567] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 0.130575] NetLabel: unlabeled traffic allowed by default [ 0.132753] clocksource: Switched to clocksource kvm-clock [ 0.136744] VFS: Disk quotas dquot_6.6.0 [ 0.136759] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.136825] AppArmor: AppArmor Filesystem Enabled [ 0.136839] pnp: PnP ACPI init [ 0.136872] pnp 00:00: Plug and Play ACPI device, IDs PNP0501 (active) [ 0.136882] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active) [ 0.136894] pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active) [ 0.136902] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active) [ 0.136945] system 00:04: [mem 0xb0000000-0xbfffffff window] has been reserved [ 0.136947] system 00:04: Plug and Play ACPI device, IDs PNP0c01 (active) [ 0.137048] pnp: PnP ACPI: found 5 devices [ 0.142813] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [ 0.142818] pci 0000:00:02.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000 [ 0.142819] pci 0000:00:02.1: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000 [ 0.142820] pci 0000:00:02.2: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000 [ 0.142820] pci 0000:00:02.3: bridge window [io 0x1000-0x0fff] to [bus 04] add_size 1000 [ 0.142821] pci 0000:00:02.4: bridge window [io 0x1000-0x0fff] to [bus 05] add_size 1000 [ 0.142821] pci 0000:00:02.5: bridge window [io 0x1000-0x0fff] to [bus 06] add_size 1000 [ 0.142822] pci 0000:00:02.6: bridge window [io 0x1000-0x0fff] to [bus 07] add_size 1000 [ 0.142822] pci 0000:00:02.7: bridge window [io 0x1000-0x0fff] to [bus 08] add_size 1000 [ 0.142823] pci 0000:00:03.0: bridge window [io 0x1000-0x0fff] to [bus 09] add_size 1000 [ 0.142823] pci 0000:00:03.1: bridge window [io 0x1000-0x0fff] to [bus 0a] add_size 1000 [ 0.142823] pci 0000:00:03.2: bridge window [io 0x1000-0x0fff] to [bus 0b] add_size 1000 [ 0.142824] pci 0000:00:03.3: bridge window [io 0x1000-0x0fff] to [bus 0c] add_size 1000 [ 0.142824] pci 0000:00:03.4: bridge window [io 0x1000-0x0fff] to [bus 0d] add_size 1000 [ 0.142825] pci 0000:00:03.5: bridge window [io 0x1000-0x0fff] to [bus 0e] add_size 1000 [ 0.142830] pci 0000:00:02.0: BAR 13: assigned [io 0x1000-0x1fff] [ 0.142831] pci 0000:00:02.1: BAR 13: assigned [io 0x2000-0x2fff] [ 0.142832] pci 0000:00:02.2: BAR 13: assigned [io 0x3000-0x3fff] [ 0.142833] pci 0000:00:02.3: BAR 13: assigned [io 0x4000-0x4fff] [ 0.142834] pci 0000:00:02.4: BAR 13: assigned [io 0x5000-0x5fff] [ 0.142834] pci 0000:00:02.5: BAR 13: assigned [io 0x6000-0x6fff] [ 0.142835] pci 0000:00:02.6: BAR 13: assigned [io 0x7000-0x7fff] [ 0.142836] pci 0000:00:02.7: BAR 13: assigned [io 0x8000-0x8fff] [ 0.142837] pci 0000:00:03.0: BAR 13: assigned [io 0x9000-0x9fff] [ 0.142838] pci 0000:00:03.1: BAR 13: assigned [io 0xa000-0xafff] [ 0.142839] pci 0000:00:03.2: BAR 13: assigned [io 0xb000-0xbfff] [ 0.142840] pci 0000:00:03.3: BAR 13: assigned [io 0xd000-0xdfff] [ 0.142841] pci 0000:00:03.4: BAR 13: assigned [io 0xe000-0xefff] [ 0.142842] pci 0000:00:03.5: BAR 13: assigned [io 0xf000-0xffff] [ 0.142844] pci 0000:00:02.0: PCI bridge to [bus 01] [ 0.142849] pci 0000:00:02.0: bridge window [io 0x1000-0x1fff] [ 0.143328] pci 0000:00:02.0: bridge window [mem 0xfe800000-0xfe9fffff] [ 0.143600] pci 0000:00:02.0: bridge window [mem 0xfca00000-0xfcbfffff 64bit pref] [ 0.144145] pci 0000:00:02.1: PCI bridge to [bus 02] [ 0.144150] pci 0000:00:02.1: bridge window [io 0x2000-0x2fff] [ 0.144550] pci 0000:00:02.1: bridge window [mem 0xfe600000-0xfe7fffff] [ 0.144809] pci 0000:00:02.1: bridge window [mem 0xfc800000-0xfc9fffff 64bit pref] [ 0.145331] pci 0000:00:02.2: PCI bridge to [bus 03] [ 0.145336] pci 0000:00:02.2: bridge window [io 0x3000-0x3fff] [ 0.145736] pci 0000:00:02.2: bridge window [mem 0xfe400000-0xfe5fffff] [ 0.146003] pci 0000:00:02.2: bridge window [mem 0xfc600000-0xfc7fffff 64bit pref] [ 0.146536] pci 0000:00:02.3: PCI bridge to [bus 04] [ 0.146541] pci 0000:00:02.3: bridge window [io 0x4000-0x4fff] [ 0.146943] pci 0000:00:02.3: bridge window [mem 0xfe200000-0xfe3fffff] [ 0.147202] pci 0000:00:02.3: bridge window [mem 0xfc400000-0xfc5fffff 64bit pref] [ 0.147735] pci 0000:00:02.4: PCI bridge to [bus 05] [ 0.147740] pci 0000:00:02.4: bridge window [io 0x5000-0x5fff] [ 0.148156] pci 0000:00:02.4: bridge window [mem 0xfe000000-0xfe1fffff] [ 0.148435] pci 0000:00:02.4: bridge window [mem 0xfc200000-0xfc3fffff 64bit pref] [ 0.149399] pci 0000:00:02.5: PCI bridge to [bus 06] [ 0.149405] pci 0000:00:02.5: bridge window [io 0x6000-0x6fff] [ 0.149824] pci 0000:00:02.5: bridge window [mem 0xfde00000-0xfdffffff] [ 0.152195] pci 0000:00:02.5: bridge window [mem 0xfc000000-0xfc1fffff 64bit pref] [ 0.152771] pci 0000:00:02.6: PCI bridge to [bus 07] [ 0.152777] pci 0000:00:02.6: bridge window [io 0x7000-0x7fff] [ 0.153197] pci 0000:00:02.6: bridge window [mem 0xfdc00000-0xfddfffff] [ 0.153477] pci 0000:00:02.6: bridge window [mem 0xfbe00000-0xfbffffff 64bit pref] [ 0.154024] pci 0000:00:02.7: PCI bridge to [bus 08] [ 0.154029] pci 0000:00:02.7: bridge window [io 0x8000-0x8fff] [ 0.154435] pci 0000:00:02.7: bridge window [mem 0xfda00000-0xfdbfffff] [ 0.154713] pci 0000:00:02.7: bridge window [mem 0xfbc00000-0xfbdfffff 64bit pref] [ 0.155255] pci 0000:00:03.0: PCI bridge to [bus 09] [ 0.155260] pci 0000:00:03.0: bridge window [io 0x9000-0x9fff] [ 0.155666] pci 0000:00:03.0: bridge window [mem 0xfd800000-0xfd9fffff] [ 0.155931] pci 0000:00:03.0: bridge window [mem 0xfba00000-0xfbbfffff 64bit pref] [ 0.156493] pci 0000:00:03.1: PCI bridge to [bus 0a] [ 0.156498] pci 0000:00:03.1: bridge window [io 0xa000-0xafff] [ 0.156906] pci 0000:00:03.1: bridge window [mem 0xfd600000-0xfd7fffff] [ 0.157180] pci 0000:00:03.1: bridge window [mem 0xfb800000-0xfb9fffff 64bit pref] [ 0.157720] pci 0000:00:03.2: PCI bridge to [bus 0b] [ 0.157725] pci 0000:00:03.2: bridge window [io 0xb000-0xbfff] [ 0.158128] pci 0000:00:03.2: bridge window [mem 0xfd400000-0xfd5fffff] [ 0.158396] pci 0000:00:03.2: bridge window [mem 0xfb600000-0xfb7fffff 64bit pref] [ 0.158938] pci 0000:00:03.3: PCI bridge to [bus 0c] [ 0.158943] pci 0000:00:03.3: bridge window [io 0xd000-0xdfff] [ 0.159345] pci 0000:00:03.3: bridge window [mem 0xfd200000-0xfd3fffff] [ 0.159614] pci 0000:00:03.3: bridge window [mem 0xfb400000-0xfb5fffff 64bit pref] [ 0.160153] pci 0000:00:03.4: PCI bridge to [bus 0d] [ 0.160158] pci 0000:00:03.4: bridge window [io 0xe000-0xefff] [ 0.160606] pci 0000:00:03.4: bridge window [mem 0xfd000000-0xfd1fffff] [ 0.160902] pci 0000:00:03.4: bridge window [mem 0xfb200000-0xfb3fffff 64bit pref] [ 0.161654] pci 0000:00:03.5: PCI bridge to [bus 0e] [ 0.161659] pci 0000:00:03.5: bridge window [io 0xf000-0xffff] [ 0.162457] pci 0000:00:03.5: bridge window [mem 0xfce00000-0xfcffffff] [ 0.163009] pci 0000:00:03.5: bridge window [mem 0xfb000000-0xfb1fffff 64bit pref] [ 0.164067] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] [ 0.164068] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] [ 0.164069] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] [ 0.164069] pci_bus 0000:00: resource 7 [mem 0x80000000-0xafffffff window] [ 0.164070] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xfebfffff window] [ 0.164070] pci_bus 0000:00: resource 9 [mem 0x180000000-0x97fffffff window] [ 0.164071] pci_bus 0000:01: resource 0 [io 0x1000-0x1fff] [ 0.164071] pci_bus 0000:01: resource 1 [mem 0xfe800000-0xfe9fffff] [ 0.164072] pci_bus 0000:01: resource 2 [mem 0xfca00000-0xfcbfffff 64bit pref] [ 0.164072] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff] [ 0.164073] pci_bus 0000:02: resource 1 [mem 0xfe600000-0xfe7fffff] [ 0.164073] pci_bus 0000:02: resource 2 [mem 0xfc800000-0xfc9fffff 64bit pref] [ 0.164074] pci_bus 0000:03: resource 0 [io 0x3000-0x3fff] [ 0.164074] pci_bus 0000:03: resource 1 [mem 0xfe400000-0xfe5fffff] [ 0.164074] pci_bus 0000:03: resource 2 [mem 0xfc600000-0xfc7fffff 64bit pref] [ 0.164075] pci_bus 0000:04: resource 0 [io 0x4000-0x4fff] [ 0.164075] pci_bus 0000:04: resource 1 [mem 0xfe200000-0xfe3fffff] [ 0.164076] pci_bus 0000:04: resource 2 [mem 0xfc400000-0xfc5fffff 64bit pref] [ 0.164076] pci_bus 0000:05: resource 0 [io 0x5000-0x5fff] [ 0.164077] pci_bus 0000:05: resource 1 [mem 0xfe000000-0xfe1fffff] [ 0.164079] pci_bus 0000:05: resource 2 [mem 0xfc200000-0xfc3fffff 64bit pref] [ 0.164080] pci_bus 0000:06: resource 0 [io 0x6000-0x6fff] [ 0.164080] pci_bus 0000:06: resource 1 [mem 0xfde00000-0xfdffffff] [ 0.164081] pci_bus 0000:06: resource 2 [mem 0xfc000000-0xfc1fffff 64bit pref] [ 0.164081] pci_bus 0000:07: resource 0 [io 0x7000-0x7fff] [ 0.164082] pci_bus 0000:07: resource 1 [mem 0xfdc00000-0xfddfffff] [ 0.164082] pci_bus 0000:07: resource 2 [mem 0xfbe00000-0xfbffffff 64bit pref] [ 0.164083] pci_bus 0000:08: resource 0 [io 0x8000-0x8fff] [ 0.164083] pci_bus 0000:08: resource 1 [mem 0xfda00000-0xfdbfffff] [ 0.164083] pci_bus 0000:08: resource 2 [mem 0xfbc00000-0xfbdfffff 64bit pref] [ 0.164084] pci_bus 0000:09: resource 0 [io 0x9000-0x9fff] [ 0.164084] pci_bus 0000:09: resource 1 [mem 0xfd800000-0xfd9fffff] [ 0.164084] pci_bus 0000:09: resource 2 [mem 0xfba00000-0xfbbfffff 64bit pref] [ 0.164085] pci_bus 0000:0a: resource 0 [io 0xa000-0xafff] [ 0.164085] pci_bus 0000:0a: resource 1 [mem 0xfd600000-0xfd7fffff] [ 0.164086] pci_bus 0000:0a: resource 2 [mem 0xfb800000-0xfb9fffff 64bit pref] [ 0.164086] pci_bus 0000:0b: resource 0 [io 0xb000-0xbfff] [ 0.164086] pci_bus 0000:0b: resource 1 [mem 0xfd400000-0xfd5fffff] [ 0.164087] pci_bus 0000:0b: resource 2 [mem 0xfb600000-0xfb7fffff 64bit pref] [ 0.164087] pci_bus 0000:0c: resource 0 [io 0xd000-0xdfff] [ 0.164087] pci_bus 0000:0c: resource 1 [mem 0xfd200000-0xfd3fffff] [ 0.164088] pci_bus 0000:0c: resource 2 [mem 0xfb400000-0xfb5fffff 64bit pref] [ 0.164088] pci_bus 0000:0d: resource 0 [io 0xe000-0xefff] [ 0.164089] pci_bus 0000:0d: resource 1 [mem 0xfd000000-0xfd1fffff] [ 0.164089] pci_bus 0000:0d: resource 2 [mem 0xfb200000-0xfb3fffff 64bit pref] [ 0.164089] pci_bus 0000:0e: resource 0 [io 0xf000-0xffff] [ 0.164090] pci_bus 0000:0e: resource 1 [mem 0xfce00000-0xfcffffff] [ 0.164090] pci_bus 0000:0e: resource 2 [mem 0xfb000000-0xfb1fffff 64bit pref] [ 0.164138] NET: Registered protocol family 2 [ 0.164446] IP idents hash table entries: 65536 (order: 7, 524288 bytes) [ 0.164710] TCP established hash table entries: 32768 (order: 6, 262144 bytes) [ 0.164785] TCP bind hash table entries: 32768 (order: 7, 524288 bytes) [ 0.165183] TCP: Hash tables configured (established 32768 bind 32768) [ 0.165274] UDP hash table entries: 2048 (order: 4, 65536 bytes) [ 0.165322] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes) [ 0.165385] NET: Registered protocol family 1 [ 0.165561] pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] [ 0.167037] ACPI: PCI Interrupt Link [GSIG] enabled at IRQ 22 [ 0.167828] PCI: CLS 0 bytes, default 64 [ 0.167857] Unpacking initramfs... [ 0.665054] Freeing initrd memory: 61644K [ 0.665075] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 0.665076] software IO TLB: mapped [mem 0x7bfdc000-0x7ffdc000] (64MB) [ 0.665102] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e71785e5dd, max_idle_ns: 440795244814 ns [ 0.665135] Scanning for low memory corruption every 60 seconds [ 0.665789] Initialise system trusted keyrings [ 0.665795] Key type blacklist registered [ 0.665903] workingset: timestamp_bits=36 max_order=20 bucket_order=0 [ 0.666321] zbud: loaded [ 0.666622] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.666713] fuse init (API version 7.26) [ 0.667498] Key type asymmetric registered [ 0.667501] Asymmetric key parser 'x509' registered [ 0.667515] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246) [ 0.667528] io scheduler noop registered [ 0.667529] io scheduler deadline registered [ 0.667539] io scheduler cfq registered (default) [ 0.676166] ACPI: PCI Interrupt Link [GSIH] enabled at IRQ 23 [ 0.684466] pcieport 0000:00:02.0: AER enabled with IRQ 24 [ 0.684525] pcieport 0000:00:02.1: AER enabled with IRQ 25 [ 0.684582] pcieport 0000:00:02.2: AER enabled with IRQ 26 [ 0.684640] pcieport 0000:00:02.3: AER enabled with IRQ 27 [ 0.684709] pcieport 0000:00:02.4: AER enabled with IRQ 28 [ 0.684767] pcieport 0000:00:02.5: AER enabled with IRQ 29 [ 0.684824] pcieport 0000:00:02.6: AER enabled with IRQ 30 [ 0.684881] pcieport 0000:00:02.7: AER enabled with IRQ 31 [ 0.684937] pcieport 0000:00:03.0: AER enabled with IRQ 32 [ 0.684993] pcieport 0000:00:03.1: AER enabled with IRQ 33 [ 0.685050] pcieport 0000:00:03.2: AER enabled with IRQ 34 [ 0.685107] pcieport 0000:00:03.3: AER enabled with IRQ 35 [ 0.685164] pcieport 0000:00:03.4: AER enabled with IRQ 36 [ 0.685220] pcieport 0000:00:03.5: AER enabled with IRQ 37 [ 0.685237] pcieport 0000:00:02.0: Signaling PME with IRQ 24 [ 0.685263] pcieport 0000:00:02.1: Signaling PME with IRQ 25 [ 0.685288] pcieport 0000:00:02.2: Signaling PME with IRQ 26 [ 0.685313] pcieport 0000:00:02.3: Signaling PME with IRQ 27 [ 0.685338] pcieport 0000:00:02.4: Signaling PME with IRQ 28 [ 0.685363] pcieport 0000:00:02.5: Signaling PME with IRQ 29 [ 0.685388] pcieport 0000:00:02.6: Signaling PME with IRQ 30 [ 0.685411] pcieport 0000:00:02.7: Signaling PME with IRQ 31 [ 0.685434] pcieport 0000:00:03.0: Signaling PME with IRQ 32 [ 0.685456] pcieport 0000:00:03.1: Signaling PME with IRQ 33 [ 0.685479] pcieport 0000:00:03.2: Signaling PME with IRQ 34 [ 0.685503] pcieport 0000:00:03.3: Signaling PME with IRQ 35 [ 0.685525] pcieport 0000:00:03.4: Signaling PME with IRQ 36 [ 0.685549] pcieport 0000:00:03.5: Signaling PME with IRQ 37 [ 0.685593] vesafb: mode is 640x480x32, linelength=2560, pages=0 [ 0.685594] vesafb: scrolling: redraw [ 0.685594] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0 [ 0.685601] vesafb: framebuffer at 0xfa800000, mapped to 0x00000000f0365d93, using 1216k, total 1216k [ 0.686081] Console: switching to colour frame buffer device 80x30 [ 0.686262] fb0: VESA VGA frame buffer device [ 0.686276] intel_idle: does not run on family 6 model 151 [ 0.686315] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 [ 0.686332] ACPI: Power Button [PWRF] [ 0.686643] ACPI: PCI Interrupt Link [GSIF] enabled at IRQ 21 [ 0.691826] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled [ 0.713687] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A [ 0.718076] Linux agpgart interface v0.103 [ 0.719009] loop: module loaded [ 0.719417] tun: Universal TUN/TAP device driver, 1.6 [ 0.719539] PPP generic driver version 2.4.2 [ 0.719646] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 0.719750] ehci-pci: EHCI PCI platform driver [ 0.719862] ehci-platform: EHCI generic platform driver [ 0.719975] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 0.720142] ohci-pci: OHCI PCI platform driver [ 0.720264] ohci-platform: OHCI generic platform driver [ 0.720381] uhci_hcd: USB Universal Host Controller Interface driver [ 0.720866] xhci_hcd 0000:02:00.0: xHCI Host Controller [ 0.720996] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 1 [ 0.721501] xhci_hcd 0000:02:00.0: hcc params 0x00087001 hci version 0x100 quirks 0x0000000000000010 [ 0.722077] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 [ 0.722221] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.722503] usb usb1: Product: xHCI Host Controller [ 0.722678] usb usb1: Manufacturer: Linux 4.15.0-210-generic xhci-hcd [ 0.722831] usb usb1: SerialNumber: 0000:02:00.0 [ 0.723036] hub 1-0:1.0: USB hub found [ 0.723217] hub 1-0:1.0: 15 ports detected [ 0.723583] xhci_hcd 0000:02:00.0: xHCI Host Controller [ 0.723712] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2 [ 0.723990] xhci_hcd 0000:02:00.0: Host supports USB 3.0 SuperSpeed [ 0.724215] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 0.724494] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003 [ 0.724636] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.724906] usb usb2: Product: xHCI Host Controller [ 0.725051] usb usb2: Manufacturer: Linux 4.15.0-210-generic xhci-hcd [ 0.725197] usb usb2: SerialNumber: 0000:02:00.0 [ 0.725370] hub 2-0:1.0: USB hub found [ 0.725547] hub 2-0:1.0: 15 ports detected [ 0.725974] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 [ 0.726677] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 0.726828] serio: i8042 AUX port at 0x60,0x64 irq 12 [ 0.727000] mousedev: PS/2 mouse device common for all mice [ 0.727199] rtc_cmos 00:03: RTC can wake from S4 [ 0.727532] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 [ 0.727777] rtc_cmos 00:03: alarms up to one day, y3k, 242 bytes nvram [ 0.727979] i2c /dev entries driver [ 0.728208] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 [ 0.728619] device-mapper: uevent: version 1.0.3 [ 0.728780] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com [ 0.729094] ledtrig-cpu: registered to indicate activity on CPUs [ 0.729457] NET: Registered protocol family 10 [ 0.731405] Segment Routing with IPv6 [ 0.731562] NET: Registered protocol family 17 [ 0.731721] Key type dns_resolver registered [ 0.731941] mce: Using 10 MCE banks [ 0.732131] RAS: Correctable Errors collector initialized. [ 0.732279] sched_clock: Marking stable (732120504, 0)->(835278881, -103158377) [ 0.732690] registered taskstats version 1 [ 0.732828] Loading compiled-in X.509 certificates [ 0.733885] Loaded X.509 cert 'Build time autogenerated kernel key: 53bf99db7da04c05fe17f7beec9ce15c83db2223' [ 0.734421] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969' [ 0.734962] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19' [ 0.735255] blacklist: Loading compiled-in revocation X.509 certificates [ 0.735408] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0' [ 0.735717] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03' [ 0.736057] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b' [ 0.736389] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8' [ 0.736723] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d' [ 0.737064] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c' [ 0.737408] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af' [ 0.737765] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9' [ 0.738137] zswap: loaded using pool lzo/zbud [ 0.739627] Key type big_key registered [ 0.739810] Key type trusted registered [ 0.740595] Key type encrypted registered [ 0.740774] AppArmor: AppArmor sha1 policy hashing enabled [ 0.740952] ima: No TPM chip found, activating TPM-bypass! (rc=-19) [ 0.741121] ima: Allocated hash algorithm: sha1 [ 0.741319] evm: HMAC attrs: 0x1 [ 0.742211] Magic number: 7:891:830 [ 0.742501] rtc_cmos 00:03: setting system clock to 2023-05-14 10:49:56 UTC (1684061396) [ 0.742863] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found [ 0.743025] EDD information not available. [ 0.747427] Freeing unused kernel image memory: 2480K [ 0.756101] Write protecting the kernel read-only data: 20480k [ 0.756763] Freeing unused kernel image memory: 2008K [ 0.757436] Freeing unused kernel image memory: 1820K [ 0.760323] x86/mm: Checked W+X mappings: passed, no W+X pages found. [ 0.795186] [drm] pci: virtio-vga detected at 0000:00:01.0 [ 0.795568] checking generic (fa800000 130000) vs hw (fa800000 800000) [ 0.795568] fb: switching to virtiodrmfb from VESA VGA [ 0.795725] Console: switching to colour dummy device 80x25 [ 0.797277] [drm] virgl 3d acceleration not supported by host [ 0.799387] ahci 0000:00:1f.2: version 3.0 [ 0.799570] ACPI: PCI Interrupt Link [GSIA] enabled at IRQ 16 [ 0.799859] ahci 0000:00:1f.2: AHCI 0001.0000 32 slots 6 ports 1.5 Gbps 0x3f impl SATA mode [ 0.799862] ahci 0000:00:1f.2: flags: 64bit ncq only [ 0.801228] [TTM] Zone kernel: Available graphics memory: 2019526 kiB [ 0.801229] [TTM] Initializing pool allocator [ 0.801236] [TTM] Initializing DMA pool allocator [ 0.801255] [drm] number of scanouts: 1 [ 0.801259] [drm] number of cap sets: 0 [ 0.804975] scsi host0: ahci [ 0.805939] AVX2 version of gcm_enc/dec engaged. [ 0.805941] AES CTR mode by8 optimization enabled [ 0.807138] Console: switching to colour frame buffer device 128x48 [ 0.810191] vda: vda1 vda2 vda3 [ 0.810217] scsi host1: ahci [ 0.810936] virtio_gpu virtio0: fb0: virtiodrmfb frame buffer device [ 0.813790] scsi host2: ahci [ 0.815772] scsi host3: ahci [ 0.816297] scsi host4: ahci [ 0.816582] scsi host5: ahci [ 0.816610] ata1: SATA max UDMA/133 abar m4096@0xfea23000 port 0xfea23100 irq 52 [ 0.816627] ata2: SATA max UDMA/133 abar m4096@0xfea23000 port 0xfea23180 irq 52 [ 0.816638] ata3: SATA max UDMA/133 abar m4096@0xfea23000 port 0xfea23200 irq 52 [ 0.816649] ata4: SATA max UDMA/133 abar m4096@0xfea23000 port 0xfea23280 irq 52 [ 0.816659] ata5: SATA max UDMA/133 abar m4096@0xfea23000 port 0xfea23300 irq 52 [ 0.816669] ata6: SATA max UDMA/133 abar m4096@0xfea23000 port 0xfea23380 irq 52 [ 0.817247] virtio_net virtio1 enp1s0: renamed from eth0 [ 0.820122] [drm] Initialized virtio_gpu 0.0.1 0 for virtio0 on minor 0 [ 0.980170] usb 1-1: new high-speed USB device number 2 using xhci_hcd [ 1.128219] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) [ 1.128308] ata5: SATA link down (SStatus 0 SControl 300) [ 1.128483] ata6: SATA link down (SStatus 0 SControl 300) [ 1.128552] ata3: SATA link down (SStatus 0 SControl 300) [ 1.128631] ata4: SATA link down (SStatus 0 SControl 300) [ 1.128655] ata1.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100 [ 1.128662] ata1.00: applying bridge limits [ 1.129000] ata1.00: configured for UDMA/100 [ 1.129398] usb 1-1: New USB device found, idVendor=0627, idProduct=0001 [ 1.129429] ata2: SATA link down (SStatus 0 SControl 300) [ 1.129651] usb 1-1: New USB device strings: Mfr=1, Product=3, SerialNumber=10 [ 1.130106] usb 1-1: Product: QEMU USB Tablet [ 1.130286] usb 1-1: Manufacturer: QEMU [ 1.130459] usb 1-1: SerialNumber: 28754-0000:00:02.1:00.0-1 [ 1.130677] scsi 0:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5 [ 1.132272] hidraw: raw HID events driver (C) Jiri Kosina [ 1.160396] sr 0:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray [ 1.160588] cdrom: Uniform CD-ROM driver Revision: 3.20 [ 1.160846] sr 0:0:0:0: Attached scsi CD-ROM sr0 [ 1.160913] sr 0:0:0:0: Attached scsi generic sg0 type 5 [ 1.162057] usbcore: registered new interface driver usbhid [ 1.162245] usbhid: USB HID core driver [ 1.163197] input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:02.1/0000:02:00.0/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input4 [ 1.163767] hid-generic 0003:0627:0001.0001: input,hidraw0: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:02:00.0-1/input0 [ 1.452003] raid6: sse2x1 gen() 24084 MB/s [ 1.500004] raid6: sse2x1 xor() 15626 MB/s [ 1.548002] raid6: sse2x2 gen() 29747 MB/s [ 1.596003] raid6: sse2x2 xor() 18128 MB/s [ 1.644002] raid6: sse2x4 gen() 32062 MB/s [ 1.692002] raid6: sse2x4 xor() 15410 MB/s [ 1.740002] raid6: avx2x1 gen() 47482 MB/s [ 1.788002] raid6: avx2x1 xor() 30490 MB/s [ 1.836002] raid6: avx2x2 gen() 49287 MB/s [ 1.884002] raid6: avx2x2 xor() 34497 MB/s [ 1.932002] raid6: avx2x4 gen() 49726 MB/s [ 1.980001] raid6: avx2x4 xor() 18282 MB/s [ 1.980210] raid6: using algorithm avx2x4 gen() 49726 MB/s [ 1.980399] raid6: .... xor() 18282 MB/s, rmw enabled [ 1.980584] raid6: using avx2x2 recovery algorithm [ 1.981542] xor: automatically using best checksumming function avx [ 1.982262] async_tx: api initialized (async) [ 2.003665] Btrfs loaded, crc32c=crc32c-intel [ 2.109372] EXT4-fs (vda3): mounted filesystem with ordered data mode. Opts: (null) [ 2.159883] ip_tables: (C) 2000-2006 Netfilter Core Team [ 2.163178] systemd[1]: systemd 237 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) [ 2.163703] systemd[1]: Detected virtualization kvm. [ 2.163966] systemd[1]: Detected architecture x86-64. [ 2.168545] systemd[1]: Set hostname to . [ 2.295678] systemd[1]: Created slice System Slice. [ 2.297060] systemd[1]: Listening on LVM2 metadata daemon socket. [ 2.298360] systemd[1]: Created slice User and Session Slice. [ 2.299594] systemd[1]: Listening on Journal Socket (/dev/log). [ 2.300797] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 2.301895] systemd[1]: Reached target User and Group Name Lookups. [ 2.325840] EXT4-fs (vda3): re-mounted. Opts: (null) [ 2.329134] Loading iSCSI transport class v2.0-870. [ 2.361433] iscsi: registered transport (tcp) [ 2.387380] iscsi: registered transport (iser) [ 2.401464] systemd-journald[447]: Received request to flush runtime journal from PID 1 [ 2.429265] Adding 4038652k swap on /swap.img. Priority:-2 extents:6 across:4456444k FS [ 2.429363] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input3 [ 2.447997] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 2.469759] lpc_ich 0000:00:1f.0: I/O space for GPIO uninitialized [ 2.515336] snd_hda_codec_generic hdaudioC0D0: autoconfig for Generic: line_outs=1 (0x3/0x0/0x0/0x0/0x0) type:line [ 2.515337] snd_hda_codec_generic hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0) [ 2.515338] snd_hda_codec_generic hdaudioC0D0: hp_outs=0 (0x0/0x0/0x0/0x0/0x0) [ 2.515338] snd_hda_codec_generic hdaudioC0D0: mono: mono_out=0x0 [ 2.515338] snd_hda_codec_generic hdaudioC0D0: inputs: [ 2.515339] snd_hda_codec_generic hdaudioC0D0: Line=0x5 [ 2.623923] EXT4-fs (vda2): mounted filesystem with ordered data mode. Opts: (null) [ 2.662138] audit: type=1400 audit(1684061398.416:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default" pid=662 comm="apparmor_parser" [ 2.662139] audit: type=1400 audit(1684061398.416:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-cgns" pid=662 comm="apparmor_parser" [ 2.662140] audit: type=1400 audit(1684061398.416:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-mounting" pid=662 comm="apparmor_parser" [ 2.662141] audit: type=1400 audit(1684061398.416:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-nesting" pid=662 comm="apparmor_parser" [ 2.663515] audit: type=1400 audit(1684061398.416:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=663 comm="apparmor_parser" [ 2.663516] audit: type=1400 audit(1684061398.416:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=663 comm="apparmor_parser" [ 2.663521] audit: type=1400 audit(1684061398.416:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=663 comm="apparmor_parser" [ 2.663522] audit: type=1400 audit(1684061398.416:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=663 comm="apparmor_parser" [ 2.664264] audit: type=1400 audit(1684061398.420:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-start" pid=676 comm="apparmor_parser" [ 4.982931] new mount options do not match the existing superblock, will be ignored [ 367.419024] lf_kernel: loading out-of-tree module taints kernel. [ 367.419059] lf_kernel: module verification failed: signature and/or required key missing - tainting kernel [ 367.419217] liteflow init... [ 367.419217] Starting liteflow netlink subsystem... [ 373.747314] Registering app with appid: 1... [ 373.747318] Successfully register liteflow tcp kernel with liteflow kernel, kernel CC and netlink... [ 385.643128] Free flow handled by liteflow tcp kernel... [ 386.908438] Free flow handled by liteflow tcp kernel... [ 408.265778] Current flow is not managed by liteflow tcp kernel! [ 408.265811] Current flow is not managed by liteflow tcp kernel! [ 408.265828] New flow handled by liteflow tcp kernel inits... [ 408.425071] No model for app with appid: 1. [ 408.425102] Query NN model failed! [ 408.587382] No model for app with appid: 1. [ 408.587412] Query NN model failed! [ 408.747389] No model for app with appid: 1. [ 408.747416] Query NN model failed! [ 409.057248] Current flow is not managed by liteflow tcp kernel! [ 409.057285] Current flow is not managed by liteflow tcp kernel! [ 409.057304] New flow handled by liteflow tcp kernel inits... [ 409.066331] No model for app with appid: 1. [ 409.066348] Query NN model failed! [ 409.066357] Free flow handled by liteflow tcp kernel... [ 409.203763] No model for app with appid: 1. [ 409.203798] Query NN model failed! [ 409.352153] No model for app with appid: 1. [ 409.352509] Query NN model failed! [ 409.500075] No model for app with appid: 1. [ 409.500478] Query NN model failed! [ 409.795124] No model for app with appid: 1. [ 409.795493] Query NN model failed! [ 409.795829] Free flow handled by liteflow tcp kernel... [ 409.804074] Current flow is not managed by liteflow tcp kernel! [ 409.804431] Current flow is not managed by liteflow tcp kernel! [ 409.804753] New flow handled by liteflow tcp kernel inits... [ 409.957626] No model for app with appid: 1. [ 409.957988] Query NN model failed! [ 410.113703] No model for app with appid: 1. [ 410.114073] Query NN model failed! [ 410.268035] No model for app with appid: 1. [ 410.268410] Query NN model failed! ```
snowzjx commented 1 year ago

It seems that your user does not have the right permission, could you modify the script to include 'sudo' or use a root user? BTW, you can use sudo lsmod to see if these kernel modules are properly installed.

y-koj commented 1 year ago

Thank you for the quick response! I switched to root and the scripts worked correctly!